Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
42bfc70b
Commit
42bfc70b
authored
Nov 10, 2009
by
Jean-Philippe André
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extensions/Qt: Qt extensions manager
parent
83f1c944
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
314 additions
and
0 deletions
+314
-0
modules/gui/qt4/extensions_manager.cpp
modules/gui/qt4/extensions_manager.cpp
+231
-0
modules/gui/qt4/extensions_manager.hpp
modules/gui/qt4/extensions_manager.hpp
+83
-0
No files found.
modules/gui/qt4/extensions_manager.cpp
0 → 100644
View file @
42bfc70b
/*****************************************************************************
* extensions_manager.cpp: Extensions manager for Qt
****************************************************************************
* Copyright (C) 2009-2010 VideoLAN and authors
* $Id$
*
* Authors: Jean-Philippe André < jpeg # videolan.org >
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#include "extensions_manager.hpp"
#include "dialogs/extensions.hpp"
#include "assert.h"
#include <QMenu>
#include <QAction>
#include <QSignalMapper>
#include <QIcon>
#define MENU_MAP(a,e) ((uint32_t)( (((uint16_t)a) << 16) | ((uint16_t)e) ))
#define MENU_GET_ACTION(a) ( (uint16_t)( ((uint32_t)a) >> 16 ) )
#define MENU_GET_EXTENSION(a) ( (uint16_t)( ((uint32_t)a) & 0xFFFF ) )
ExtensionsManager
*
ExtensionsManager
::
instance
=
NULL
;
ExtensionsManager
::
ExtensionsManager
(
intf_thread_t
*
_p_intf
,
QObject
*
parent
)
:
QObject
(
parent
),
p_intf
(
_p_intf
),
p_extensions_manager
(
NULL
)
,
p_edp
(
NULL
)
{
assert
(
ExtensionsManager
::
instance
==
NULL
);
instance
=
this
;
menuMapper
=
new
QSignalMapper
(
this
);
CONNECT
(
menuMapper
,
mapped
(
int
),
this
,
triggerMenu
(
int
)
);
b_unloading
=
false
;
}
ExtensionsManager
::~
ExtensionsManager
()
{
if
(
p_extensions_manager
)
{
module_unneed
(
p_extensions_manager
,
p_extensions_manager
->
p_module
);
vlc_object_release
(
p_extensions_manager
);
}
}
void
ExtensionsManager
::
loadExtensions
()
{
if
(
!
p_extensions_manager
)
{
p_extensions_manager
=
(
extensions_manager_t
*
)
vlc_object_create
(
p_intf
,
sizeof
(
extensions_manager_t
)
);
if
(
!
p_extensions_manager
)
return
;
vlc_object_attach
(
p_extensions_manager
,
p_intf
);
p_extensions_manager
->
p_module
=
module_need
(
p_extensions_manager
,
"extension"
,
NULL
,
false
);
if
(
!
p_extensions_manager
->
p_module
)
{
msg_Err
(
p_intf
,
"Unable to load extensions module"
);
return
;
}
/* Initialize dialog provider */
p_edp
=
ExtensionsDialogProvider
::
getInstance
(
p_intf
,
p_extensions_manager
);
if
(
!
p_edp
)
{
msg_Err
(
p_intf
,
"Unable to create dialogs provider for extensions"
);
return
;
}
b_unloading
=
false
;
}
}
void
ExtensionsManager
::
unloadExtensions
()
{
if
(
!
p_extensions_manager
)
return
;
b_unloading
=
true
;
module_unneed
(
p_extensions_manager
,
p_extensions_manager
->
p_module
);
vlc_object_release
(
p_extensions_manager
);
p_extensions_manager
=
NULL
;
ExtensionsDialogProvider
::
killInstance
();
}
void
ExtensionsManager
::
menu
(
QMenu
*
current
)
{
QAction
*
action
;
assert
(
current
!=
NULL
);
if
(
!
isLoaded
()
)
{
// This case should not happen
action
=
current
->
addAction
(
qtr
(
"Extensions not loaded"
)
);
action
->
setEnabled
(
false
);
return
;
}
/* Some useless message */
action
=
current
->
addAction
(
p_extensions_manager
->
extensions
.
i_size
?
qtr
(
"Extensions found:"
)
:
qtr
(
"No extensions found"
)
);
action
->
setEnabled
(
false
);
current
->
addSeparator
();
extension_t
*
p_ext
=
NULL
;
int
i_ext
=
0
;
FOREACH_ARRAY
(
p_ext
,
p_extensions_manager
->
extensions
)
{
bool
b_Active
=
extension_IsActivated
(
p_extensions_manager
,
p_ext
);
if
(
b_Active
&&
extension_HasMenu
(
p_extensions_manager
,
p_ext
)
)
{
QMenu
*
submenu
=
new
QMenu
(
qfu
(
p_ext
->
psz_title
)
);
char
**
ppsz_titles
=
NULL
;
uint16_t
*
pi_ids
=
NULL
;
size_t
i_num
=
0
;
action
=
current
->
addMenu
(
submenu
);
action
->
setCheckable
(
true
);
action
->
setChecked
(
true
);
if
(
extension_GetMenu
(
p_extensions_manager
,
p_ext
,
&
ppsz_titles
,
&
pi_ids
)
==
VLC_SUCCESS
)
{
for
(
int
i
=
0
;
ppsz_titles
[
i
]
!=
NULL
;
++
i
)
{
++
i_num
;
action
=
submenu
->
addAction
(
qfu
(
ppsz_titles
[
i
]
)
);
menuMapper
->
setMapping
(
action
,
MENU_MAP
(
pi_ids
[
i
],
i_ext
)
);
CONNECT
(
action
,
triggered
(),
menuMapper
,
map
()
);
}
if
(
!
i_num
)
{
action
=
submenu
->
addAction
(
qtr
(
"Empty"
)
);
action
->
setEnabled
(
false
);
}
}
else
{
msg_Warn
(
p_intf
,
"Could not get menu for extension '%s'"
,
p_ext
->
psz_title
);
action
=
submenu
->
addAction
(
qtr
(
"Empty"
)
);
action
->
setEnabled
(
false
);
}
submenu
->
addSeparator
();
action
=
submenu
->
addAction
(
QIcon
(
":/menu/quit"
),
qtr
(
"Deactivate"
)
);
menuMapper
->
setMapping
(
action
,
MENU_MAP
(
0
,
i_ext
)
);
CONNECT
(
action
,
triggered
(),
menuMapper
,
map
()
);
}
else
{
action
=
current
->
addAction
(
qfu
(
p_ext
->
psz_title
)
);
menuMapper
->
setMapping
(
action
,
MENU_MAP
(
0
,
i_ext
)
);
CONNECT
(
action
,
triggered
(),
menuMapper
,
map
()
);
if
(
!
extension_TriggerOnly
(
p_extensions_manager
,
p_ext
)
)
{
action
->
setCheckable
(
true
);
action
->
setChecked
(
b_Active
);
}
}
i_ext
++
;
}
FOREACH_END
()
/* Possibility to unload the module */
current
->
addSeparator
();
current
->
addAction
(
QIcon
(
":/menu/quit"
),
qtr
(
"Unload extensions"
),
this
,
SLOT
(
unloadExtensions
()
)
);
}
void
ExtensionsManager
::
triggerMenu
(
int
id
)
{
uint16_t
i_ext
=
MENU_GET_EXTENSION
(
id
);
uint16_t
i_action
=
MENU_GET_ACTION
(
id
);
if
(
(
int
)
i_ext
>
p_extensions_manager
->
extensions
.
i_size
)
{
msg_Dbg
(
p_intf
,
"can't trigger extension with wrong id %d"
,
(
int
)
i_ext
);
return
;
}
extension_t
*
p_ext
=
ARRAY_VAL
(
p_extensions_manager
->
extensions
,
i_ext
);
assert
(
p_ext
!=
NULL
);
if
(
i_action
==
0
)
{
msg_Dbg
(
p_intf
,
"activating or triggering extension '%s'"
,
p_ext
->
psz_title
);
if
(
extension_TriggerOnly
(
p_extensions_manager
,
p_ext
)
)
{
extension_Trigger
(
p_extensions_manager
,
p_ext
);
}
else
{
if
(
!
extension_IsActivated
(
p_extensions_manager
,
p_ext
)
)
extension_Activate
(
p_extensions_manager
,
p_ext
);
else
extension_Deactivate
(
p_extensions_manager
,
p_ext
);
}
}
else
{
msg_Dbg
(
p_intf
,
"triggering extension '%s', on menu with id = 0x%x"
,
p_ext
->
psz_title
,
i_action
);
extension_TriggerMenu
(
p_extensions_manager
,
p_ext
,
i_action
);
}
}
modules/gui/qt4/extensions_manager.hpp
0 → 100644
View file @
42bfc70b
/*****************************************************************************
* extensions_manager.hpp: Extensions manager for Qt
****************************************************************************
* Copyright (C) 2009-2010 VideoLAN and authors
* $Id$
*
* Authors: Jean-Philippe André < jpeg # videolan.org >
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef EXTENSIONS_MANAGER_HPP
#define EXTENSIONS_MANAGER_HPP
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc_extensions.h>
#include "qt4.hpp"
#include <QObject>
#include <QMenu>
#include <QSignalMapper>
class
ExtensionsDialogProvider
;
class
ExtensionsManager
:
public
QObject
{
Q_OBJECT
private:
static
ExtensionsManager
*
instance
;
intf_thread_t
*
p_intf
;
extensions_manager_t
*
p_extensions_manager
;
ExtensionsDialogProvider
*
p_edp
;
QSignalMapper
*
menuMapper
;
bool
b_unloading
;
///< Work around threads + emit issues, see isUnloading
public:
static
ExtensionsManager
*
getInstance
(
intf_thread_t
*
_p_intf
,
QObject
*
_parent
=
0
)
{
if
(
!
instance
)
instance
=
new
ExtensionsManager
(
_p_intf
,
_parent
);
return
instance
;
}
static
void
killInstance
()
{
delete
instance
;
instance
=
NULL
;
}
ExtensionsManager
(
intf_thread_t
*
p_intf
,
QObject
*
parent
);
virtual
~
ExtensionsManager
();
inline
bool
isLoaded
()
{
return
p_extensions_manager
!=
NULL
;
}
inline
bool
isUnloading
()
{
return
b_unloading
;
}
void
menu
(
QMenu
*
current
);
public
slots
:
void
loadExtensions
();
void
unloadExtensions
();
private
slots
:
void
triggerMenu
(
int
id
);
};
#endif // EXTENSIONS_MANAGER_HPP
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment