Home
last modified time | relevance | path

Searched refs:pIntf (Results 1 – 25 of 213) sorted by relevance

123456789

/dports/multimedia/vlc/vlc-3.0.16/modules/gui/skins2/src/
H A Dos_factory.cpp35 OSFactory *OSFactory::instance( intf_thread_t *pIntf ) in instance() argument
37 if( ! pIntf->p_sys->p_osFactory ) in instance()
41 pOsFactory = new X11Factory( pIntf ); in instance()
43 pOsFactory = new Win32Factory( pIntf ); in instance()
45 pOsFactory = new OS2Factory( pIntf ); in instance()
53 pIntf->p_sys->p_osFactory = pOsFactory; in instance()
61 return pIntf->p_sys->p_osFactory; in instance()
65 void OSFactory::destroy( intf_thread_t *pIntf ) in destroy() argument
67 delete pIntf->p_sys->p_osFactory; in destroy()
68 pIntf->p_sys->p_osFactory = NULL; in destroy()
H A Dlogger.cpp28 Logger::Logger( intf_thread_t *pIntf ): SkinObject( pIntf ) in Logger() argument
38 Logger *Logger::instance( intf_thread_t *pIntf ) in instance() argument
40 if( ! pIntf->p_sys->p_logger ) in instance()
42 Logger *pLogger = new Logger( pIntf ); in instance()
46 pIntf->p_sys->p_logger = pLogger; in instance()
49 return pIntf->p_sys->p_logger; in instance()
53 void Logger::destroy( intf_thread_t *pIntf ) in destroy() argument
55 delete pIntf->p_sys->p_logger; in destroy()
56 pIntf->p_sys->p_logger = NULL; in destroy()
H A Dtheme_repository.cpp36 if( pIntf->p_sys->p_repository == NULL ) in instance()
38 pIntf->p_sys->p_repository = new ThemeRepository( pIntf ); in instance()
41 return pIntf->p_sys->p_repository; in instance()
45 void ThemeRepository::destroy( intf_thread_t *pIntf ) in destroy() argument
47 delete pIntf->p_sys->p_repository; in destroy()
48 pIntf->p_sys->p_repository = NULL; in destroy()
52 ThemeRepository::ThemeRepository( intf_thread_t *pIntf ): SkinObject( pIntf ) in ThemeRepository() argument
62 OSFactory *pOsFactory = OSFactory::instance( pIntf ); in ThemeRepository()
111 var_AddCallback( pIntf, "intf-skins", changeSkin, this ); in ThemeRepository()
114 var_Create( pIntf, "intf-skins-interactive", VLC_VAR_VOID | in ThemeRepository()
[all …]
H A Ddialogs.cpp59 else if( !pIntf->p_sys->p_theme ) in showChangeSkinCB()
62 CmdQuit *pCmd = new CmdQuit( pIntf ); in showChangeSkinCB()
115 Dialogs::Dialogs( intf_thread_t *pIntf ): in Dialogs() argument
136 Dialogs *Dialogs::instance( intf_thread_t *pIntf ) in instance() argument
138 if( ! pIntf->p_sys->p_dialogs ) in instance()
140 Dialogs *pDialogs = new Dialogs( pIntf ); in instance()
144 pIntf->p_sys->p_dialogs = pDialogs; in instance()
152 return pIntf->p_sys->p_dialogs; in instance()
156 void Dialogs::destroy( intf_thread_t *pIntf ) in destroy() argument
158 delete pIntf->p_sys->p_dialogs; in destroy()
[all …]
H A Dvar_manager.cpp28 VarManager::VarManager( intf_thread_t *pIntf ): SkinObject( pIntf ), in VarManager() argument
31 m_pTooltipText = new VarText( pIntf ); in VarManager()
32 m_pHelpText = new VarText( pIntf, false ); in VarManager()
60 VarManager *VarManager::instance( intf_thread_t *pIntf ) in instance() argument
62 if( ! pIntf->p_sys->p_varManager ) in instance()
65 pVarManager = new (std::nothrow) VarManager( pIntf ); in instance()
68 pIntf->p_sys->p_varManager = pVarManager; in instance()
71 return pIntf->p_sys->p_varManager; in instance()
75 void VarManager::destroy( intf_thread_t *pIntf ) in destroy() argument
77 delete pIntf->p_sys->p_varManager; in destroy()
[all …]
H A Dart_manager.cpp36 ArtManager *ArtManager::instance( intf_thread_t *pIntf ) in instance() argument
38 if( pIntf->p_sys->p_artManager == NULL ) in instance()
40 pIntf->p_sys->p_artManager = new ArtManager( pIntf ); in instance()
43 return pIntf->p_sys->p_artManager; in instance()
47 void ArtManager::destroy( intf_thread_t *pIntf ) in destroy() argument
49 delete pIntf->p_sys->p_artManager; in destroy()
50 pIntf->p_sys->p_artManager = NULL; in destroy()
54 ArtManager::ArtManager( intf_thread_t* pIntf ) : SkinObject( pIntf ) in ArtManager() argument
57 m_pImageHandler = image_HandlerCreate( pIntf ); in ArtManager()
H A Dskin_main.cpp327 intf_thread_t* pIntf; member
361 if( pIntf ) in WindowOpen()
362 vlc_object_hold( pIntf ); in WindowOpen()
365 if( pIntf == NULL ) in WindowOpen()
371 vlc_object_release( pIntf ); in WindowOpen()
378 vlc_object_release( pIntf ); in WindowOpen()
384 pWnd->sys->pIntf = pIntf; in WindowOpen()
406 vlc_object_release( pIntf ); in WindowOpen()
417 intf_thread_t *pIntf = sys->pIntf; in WindowClose() local
424 vlc_object_release( sys->pIntf ); in WindowClose()
[all …]
H A Dart_manager.hpp40 ArtBitmap( intf_thread_t *pIntf, image_handler_t *pImageHandler, in ArtBitmap() argument
42 FileBitmap( pIntf, pImageHandler, uriName, -1 ), in ArtBitmap()
58 static ArtManager *instance( intf_thread_t *pIntf );
61 static void destroy( intf_thread_t *pIntf );
68 ArtManager( intf_thread_t *pIntf );
H A Dvout_manager.cpp34 VoutManager *VoutManager::instance( intf_thread_t *pIntf ) in instance() argument
36 if( pIntf->p_sys->p_voutManager == NULL ) in instance()
38 pIntf->p_sys->p_voutManager = new VoutManager( pIntf ); in instance()
41 return pIntf->p_sys->p_voutManager; in instance()
45 void VoutManager::destroy( intf_thread_t *pIntf ) in destroy() argument
47 delete pIntf->p_sys->p_voutManager; in destroy()
48 pIntf->p_sys->p_voutManager = NULL; in destroy()
52 VoutManager::VoutManager( intf_thread_t *pIntf ): SkinObject( pIntf ), in VoutManager() argument
/dports/multimedia/vlc/vlc-3.0.16/modules/gui/skins2/commands/
H A Dcmd_playlist.hpp36 CmdPlaylistDel( intf_thread_t *pIntf, VarList &rList ) in CmdPlaylistDel() argument
37 : CmdGeneric( pIntf ), m_rList( rList ) { } in CmdPlaylistDel()
65 CmdPlaylistRandom( intf_thread_t *pIntf, bool value ) in CmdPlaylistRandom() argument
66 : CmdGeneric( pIntf ), m_value( value ) { } in CmdPlaylistRandom()
81 CmdPlaylistLoop( intf_thread_t *pIntf, bool value ) in CmdPlaylistLoop() argument
82 : CmdGeneric( pIntf ), m_value( value ) { } in CmdPlaylistLoop()
97 CmdPlaylistRepeat( intf_thread_t *pIntf, bool value ) in CmdPlaylistRepeat() argument
98 : CmdGeneric( pIntf ), m_value( value ) { } in CmdPlaylistRepeat()
113 CmdPlaylistLoad( intf_thread_t *pIntf, const std::string& rFile ) in CmdPlaylistLoad() argument
114 : CmdGeneric( pIntf ), m_file( rFile ) { } in CmdPlaylistLoad()
[all …]
H A Dasync_queue.cpp31 AsyncQueue::AsyncQueue( intf_thread_t *pIntf ): SkinObject( pIntf ), in AsyncQueue() argument
38 OSFactory *pOsFactory = OSFactory::instance( pIntf ); in AsyncQueue()
53 AsyncQueue *AsyncQueue::instance( intf_thread_t *pIntf ) in instance() argument
55 if( ! pIntf->p_sys->p_queue ) in instance()
58 pQueue = new (std::nothrow) AsyncQueue( pIntf ); in instance()
62 pIntf->p_sys->p_queue = pQueue; in instance()
65 return pIntf->p_sys->p_queue; in instance()
69 void AsyncQueue::destroy( intf_thread_t *pIntf ) in destroy() argument
71 delete pIntf->p_sys->p_queue; in destroy()
72 pIntf->p_sys->p_queue = NULL; in destroy()
H A Dcmd_resize.cpp33 CmdResize::CmdResize( intf_thread_t *pIntf, const WindowManager &rWindowManager, in CmdResize() argument
35 : CmdGeneric( pIntf ), m_rWindowManager( rWindowManager ), in CmdResize()
47 CmdResizeVout::CmdResizeVout( intf_thread_t *pIntf, vout_window_t* pWnd, in CmdResizeVout() argument
49 : CmdGeneric( pIntf ), m_pWnd( pWnd ), m_width( width ), in CmdResizeVout()
58 CmdSetFullscreen::CmdSetFullscreen( intf_thread_t *pIntf, in CmdSetFullscreen() argument
60 : CmdGeneric( pIntf ), m_pWnd( pWnd ), m_bFullscreen( fullscreen ) { } in CmdSetFullscreen()
69 CmdHideMouse::CmdHideMouse( intf_thread_t *pIntf, in CmdHideMouse() argument
71 : CmdGeneric( pIntf ), m_pWnd( pWnd ), m_bHide( hide ) { } in CmdHideMouse()
H A Dcmd_show_window.hpp39 CmdShowWindow( intf_thread_t *pIntf, WindowManager &rWinManager, in CmdShowWindow() argument
41 CmdGeneric( pIntf ), m_rWinManager( rWinManager ), m_rWin( rWin ) { } in CmdShowWindow()
58 CmdHideWindow( intf_thread_t *pIntf, WindowManager &rWinManager, in CmdHideWindow() argument
60 CmdGeneric( pIntf ), m_rWinManager( rWinManager ), m_rWin( rWin ) { } in CmdHideWindow()
77 CmdRaiseAll( intf_thread_t *pIntf, WindowManager &rWinManager ): in CmdRaiseAll() argument
78 CmdGeneric( pIntf ), m_rWinManager( rWinManager ) { } in CmdRaiseAll()
93 CmdShowPopup( intf_thread_t *pIntf, Popup &rPopup ): in CmdShowPopup() argument
94 CmdGeneric( pIntf ), m_rPopup( rPopup ) { } in CmdShowPopup()
H A Dcmd_vars.hpp46 CmdItemUpdate( intf_thread_t *pIntf, input_item_t* pItem ): in CmdItemUpdate() argument
47 CmdGeneric( pIntf ), m_pItem( pItem ) in CmdItemUpdate()
72 CmdPlaytreeAppend( intf_thread_t *pIntf, int i_id ): in CmdPlaytreeAppend() argument
73 CmdGeneric( pIntf ), m_id( i_id ) in CmdPlaytreeAppend()
87 CmdPlaytreeDelete( intf_thread_t *pIntf, int i_id ): in CmdPlaytreeDelete() argument
88 CmdGeneric( pIntf ), m_id( i_id ) { } in CmdPlaytreeDelete()
102 CmdSetText( intf_thread_t *pIntf, VarText &rText, const UString &rValue ): in CmdSetText() argument
103 CmdGeneric( pIntf ), m_rText( rText ), m_value( rValue ) { } in CmdSetText()
H A Dcmd_generic.hpp38 Cmd##name( intf_thread_t *pIntf ): CmdGeneric( pIntf ) { } \
78 CmdGeneric( intf_thread_t *pIntf ): SkinObject( pIntf ) { } in CmdGeneric() argument
H A Dcmd_minimize.cpp42 CmdMaximize::CmdMaximize( intf_thread_t *pIntf, WindowManager &rWindowManager, in CmdMaximize() argument
44 : CmdGeneric( pIntf ), m_rWindowManager( rWindowManager ), in CmdMaximize()
55 CmdUnmaximize::CmdUnmaximize( intf_thread_t *pIntf, in CmdUnmaximize() argument
58 : CmdGeneric( pIntf ), m_rWindowManager( rWindowManager ), in CmdUnmaximize()
/dports/multimedia/vlc/vlc-3.0.16/modules/gui/skins2/events/
H A Devt_dragndrop.hpp35 EvtDrag( intf_thread_t *pIntf ): EvtGeneric( pIntf ) { } in EvtDrag() argument
44 EvtDragEnter( intf_thread_t *pIntf ): EvtDrag( pIntf ) { } in EvtDragEnter() argument
53 EvtDragLeave( intf_thread_t *pIntf ): EvtDrag( pIntf ) { } in EvtDragLeave() argument
62 EvtDragOver( intf_thread_t *pIntf, int x, int y ) in EvtDragOver() argument
63 : EvtDrag( pIntf ), m_xPos( x ), m_yPos( y ) { } in EvtDragOver()
77 EvtDragDrop( intf_thread_t *pIntf, int x, int y, const std::list<std::string>& files ) in EvtDragDrop() argument
78 : EvtDrag( pIntf ), m_files( files ), m_xPos( x ), m_yPos( y ) { } in EvtDragDrop()
/dports/multimedia/vlc/vlc-3.0.16/modules/gui/skins2/utils/
H A Dvar_bool.hpp43 VarBool( intf_thread_t *pIntf ): Variable( pIntf ) { } in VarBool() argument
56 VarBoolTrue( intf_thread_t *pIntf ): VarBool( pIntf ) { } in VarBoolTrue() argument
66 VarBoolFalse( intf_thread_t *pIntf ): VarBool( pIntf ) { } in VarBoolFalse() argument
76 VarBoolImpl( intf_thread_t *pIntf );
95 VarBoolAndBool( intf_thread_t *pIntf, VarBool &rVar1, VarBool &rVar2 );
113 VarBoolOrBool( intf_thread_t *pIntf, VarBool &rVar1, VarBool &rVar2 );
131 VarNotBool( intf_thread_t *pIntf, VarBool &rVar );
H A Dvar_bool.cpp31 VarBoolImpl::VarBoolImpl( intf_thread_t *pIntf ): in VarBoolImpl() argument
32 VarBool( pIntf ), m_value( false ) in VarBoolImpl()
47 VarBoolAndBool::VarBoolAndBool( intf_thread_t *pIntf, VarBool &rVar1, in VarBoolAndBool() argument
49 VarBool( pIntf ), m_rVar1( rVar1 ), m_rVar2( rVar2 ), in VarBoolAndBool()
75 VarBoolOrBool::VarBoolOrBool( intf_thread_t *pIntf, VarBool &rVar1, in VarBoolOrBool() argument
77 VarBool( pIntf ), m_rVar1( rVar1 ), m_rVar2( rVar2 ), in VarBoolOrBool()
103 VarNotBool::VarNotBool( intf_thread_t *pIntf, VarBool &rVar ): in VarNotBool() argument
104 VarBool( pIntf ), m_rVar( rVar ) in VarNotBool()
/dports/multimedia/vlc/vlc-3.0.16/modules/gui/skins2/controls/
H A Dctrl_checkbox.cpp34 CtrlCheckbox::CtrlCheckbox( intf_thread_t *pIntf, in CtrlCheckbox() argument
46 CtrlGeneric( pIntf, rHelp, pVisible ), m_fsm( pIntf ), in CtrlCheckbox()
50 m_imgUp1( pIntf, rBmpUp1 ), m_imgOver1( pIntf, rBmpOver1 ), in CtrlCheckbox()
51 m_imgDown1( pIntf, rBmpDown1 ), m_imgUp2( pIntf, rBmpUp2 ), in CtrlCheckbox()
52 m_imgOver2( pIntf, rBmpOver2 ), m_imgDown2( pIntf, rBmpDown2 ), in CtrlCheckbox()
/dports/multimedia/vlc/vlc-3.0.16/modules/gui/skins2/os2/
H A Dos2_loop.cpp47 OS2Loop::OS2Loop( intf_thread_t *pIntf ): OSLoop( pIntf ) in OS2Loop() argument
84 OSLoop *OS2Loop::instance( intf_thread_t *pIntf ) in instance() argument
86 if( pIntf->p_sys->p_osLoop == NULL ) in instance()
88 OSLoop *pOsLoop = new OS2Loop( pIntf ); in instance()
89 pIntf->p_sys->p_osLoop = pOsLoop; in instance()
91 return pIntf->p_sys->p_osLoop; in instance()
95 void OS2Loop::destroy( intf_thread_t *pIntf ) in destroy() argument
97 delete pIntf->p_sys->p_osLoop; in destroy()
98 pIntf->p_sys->p_osLoop = NULL; in destroy()
/dports/multimedia/vlc/vlc-3.0.16/modules/gui/skins2/x11/
H A Dx11_loop.cpp53 X11Loop::X11Loop( intf_thread_t *pIntf, X11Display &rDisplay ): in X11Loop() argument
54 OSLoop( pIntf ), m_rDisplay( rDisplay ), m_exit( false ), in X11Loop()
92 OSLoop *X11Loop::instance( intf_thread_t *pIntf, X11Display &rDisplay ) in instance() argument
94 if( pIntf->p_sys->p_osLoop == NULL ) in instance()
96 OSLoop *pOsLoop = new X11Loop( pIntf, rDisplay ); in instance()
97 pIntf->p_sys->p_osLoop = pOsLoop; in instance()
99 return pIntf->p_sys->p_osLoop; in instance()
103 void X11Loop::destroy( intf_thread_t *pIntf ) in destroy() argument
105 delete pIntf->p_sys->p_osLoop; in destroy()
106 pIntf->p_sys->p_osLoop = NULL; in destroy()
H A Dx11_timer.cpp35 X11Timer::X11Timer( intf_thread_t *pIntf, CmdGeneric &rCmd ): in X11Timer() argument
36 OSTimer( pIntf ), m_rCommand( rCmd ) in X11Timer()
39 X11Factory *m_pOsFactory = (X11Factory*)(OSFactory::instance( pIntf ) ); in X11Timer()
81 X11TimerLoop::X11TimerLoop( intf_thread_t *pIntf, int connectionNumber ): in X11TimerLoop() argument
82 SkinObject( pIntf ), m_connectionNumber( connectionNumber ) in X11TimerLoop()
/dports/multimedia/vlc/vlc-3.0.16/modules/gui/skins2/win32/
H A Dwin32_loop.cpp47 Win32Loop::Win32Loop( intf_thread_t *pIntf ): OSLoop( pIntf ) in Win32Loop() argument
97 OSLoop *Win32Loop::instance( intf_thread_t *pIntf ) in instance() argument
99 if( pIntf->p_sys->p_osLoop == NULL ) in instance()
101 OSLoop *pOsLoop = new Win32Loop( pIntf ); in instance()
102 pIntf->p_sys->p_osLoop = pOsLoop; in instance()
104 return pIntf->p_sys->p_osLoop; in instance()
108 void Win32Loop::destroy( intf_thread_t *pIntf ) in destroy() argument
110 delete pIntf->p_sys->p_osLoop; in destroy()
111 pIntf->p_sys->p_osLoop = NULL; in destroy()
/dports/multimedia/vlc/vlc-3.0.16/modules/gui/skins2/vars/
H A Dequalizer.cpp38 EqualizerBands::EqualizerBands( intf_thread_t *pIntf ): SkinObject( pIntf ), in EqualizerBands() argument
44 VarPercent *pVar = new VarPercent( pIntf ); in EqualizerBands()
121 EqualizerPreamp::EqualizerPreamp( intf_thread_t *pIntf ): VarPercent( pIntf ) in EqualizerPreamp() argument

123456789