Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jami-libclient
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
savoirfairelinux
jami-libclient
Commits
125f8484
Commit
125f8484
authored
10 years ago
by
Emmanuel Lepage Vallee
Browse files
Options
Downloads
Patches
Plain Diff
API: Rename Video::SourcesModel to Video::SourceModel
for consistency Refs #68848
parent
a123a9fc
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CMakeLists.txt
+2
-2
2 additions, 2 deletions
CMakeLists.txt
src/video/sourcemodel.cpp
+27
-27
27 additions, 27 deletions
src/video/sourcemodel.cpp
src/video/sourcemodel.h
+7
-7
7 additions, 7 deletions
src/video/sourcemodel.h
with
36 additions
and
36 deletions
CMakeLists.txt
+
2
−
2
View file @
125f8484
...
...
@@ -209,7 +209,7 @@ SET( libringclient_LIB_SRCS
src/accountstatusmodel.cpp
src/codecmodel.cpp
src/video/devicemodel.cpp
src/video/source
s
model.cpp
src/video/sourcemodel.cpp
src/video/channel.cpp
src/video/resolution.cpp
src/audio/alsapluginmodel.cpp
...
...
@@ -327,7 +327,7 @@ SET( libringclient_LIB_HDRS
SET
(
libringclient_video_LIB_HDRS
src/video/device.h
src/video/devicemodel.h
src/video/source
s
model.h
src/video/sourcemodel.h
src/video/renderer.h
src/video/resolution.h
src/video/channel.h
...
...
This diff is collapsed.
Click to expand it.
src/video/source
s
model.cpp
→
src/video/sourcemodel.cpp
+
27
−
27
View file @
125f8484
...
...
@@ -15,17 +15,17 @@
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
***************************************************************************/
#include
"source
s
model.h"
#include
"sourcemodel.h"
#include
<QtCore/QUrl>
#include
<QtCore/QCoreApplication>
#include
"../dbus/videomanager.h"
#include
"devicemodel.h"
namespace
Video
{
class
Source
s
ModelPrivate
class
SourceModelPrivate
{
public:
Source
s
ModelPrivate
();
SourceModelPrivate
();
//Constants
class
ProtocolPrefix
{
...
...
@@ -48,32 +48,32 @@ public:
};
}
Video
::
Source
s
ModelPrivate
::
Source
s
ModelPrivate
()
:
m_CurrentSelection
(
-
1
)
Video
::
SourceModelPrivate
::
SourceModelPrivate
()
:
m_CurrentSelection
(
-
1
)
{
}
Video
::
Source
s
Model
*
Video
::
Source
s
Model
::
m_spInstance
=
nullptr
;
Video
::
SourceModel
*
Video
::
SourceModel
::
m_spInstance
=
nullptr
;
Video
::
Source
s
Model
::
Source
s
Model
()
:
QAbstractListModel
(
QCoreApplication
::
instance
()),
d_ptr
(
new
Video
::
Source
s
ModelPrivate
())
Video
::
SourceModel
::
SourceModel
()
:
QAbstractListModel
(
QCoreApplication
::
instance
()),
d_ptr
(
new
Video
::
SourceModelPrivate
())
{
d_ptr
->
m_Display
.
rect
=
QRect
(
0
,
0
,
0
,
0
);
}
Video
::
Source
s
Model
::~
Source
s
Model
()
Video
::
SourceModel
::~
SourceModel
()
{
delete
d_ptr
;
}
Video
::
Source
s
Model
*
Video
::
Source
s
Model
::
instance
()
Video
::
SourceModel
*
Video
::
SourceModel
::
instance
()
{
if
(
!
m_spInstance
)
m_spInstance
=
new
Video
::
Source
s
Model
();
m_spInstance
=
new
Video
::
SourceModel
();
return
m_spInstance
;
}
QHash
<
int
,
QByteArray
>
Video
::
Source
s
Model
::
roleNames
()
const
QHash
<
int
,
QByteArray
>
Video
::
SourceModel
::
roleNames
()
const
{
static
QHash
<
int
,
QByteArray
>
roles
=
QAbstractItemModel
::
roleNames
();
static
bool
initRoles
=
false
;
...
...
@@ -84,7 +84,7 @@ QHash<int,QByteArray> Video::SourcesModel::roleNames() const
return
roles
;
}
QVariant
Video
::
Source
s
Model
::
data
(
const
QModelIndex
&
index
,
int
role
)
const
QVariant
Video
::
SourceModel
::
data
(
const
QModelIndex
&
index
,
int
role
)
const
{
switch
(
index
.
row
())
{
case
ExtendedDeviceList
::
NONE
:
...
...
@@ -111,13 +111,13 @@ QVariant Video::SourcesModel::data( const QModelIndex& index, int role ) const
return
QVariant
();
}
int
Video
::
Source
s
Model
::
rowCount
(
const
QModelIndex
&
parent
)
const
int
Video
::
SourceModel
::
rowCount
(
const
QModelIndex
&
parent
)
const
{
Q_UNUSED
(
parent
)
return
Video
::
DeviceModel
::
instance
()
->
rowCount
()
+
ExtendedDeviceList
::
COUNT__
;
}
Qt
::
ItemFlags
Video
::
Source
s
Model
::
flags
(
const
QModelIndex
&
idx
)
const
Qt
::
ItemFlags
Video
::
SourceModel
::
flags
(
const
QModelIndex
&
idx
)
const
{
switch
(
idx
.
row
())
{
case
ExtendedDeviceList
::
NONE
:
...
...
@@ -130,7 +130,7 @@ Qt::ItemFlags Video::SourcesModel::flags( const QModelIndex& idx ) const
};
}
bool
Video
::
Source
s
Model
::
setData
(
const
QModelIndex
&
index
,
const
QVariant
&
value
,
int
role
)
bool
Video
::
SourceModel
::
setData
(
const
QModelIndex
&
index
,
const
QVariant
&
value
,
int
role
)
{
Q_UNUSED
(
index
)
Q_UNUSED
(
value
)
...
...
@@ -138,20 +138,20 @@ bool Video::SourcesModel::setData( const QModelIndex& index, const QVariant &val
return
false
;
}
void
Video
::
Source
s
Model
::
switchTo
(
const
QModelIndex
&
idx
)
void
Video
::
SourceModel
::
switchTo
(
const
QModelIndex
&
idx
)
{
switchTo
(
idx
.
row
());
}
///This model is designed for "live" switching rather than configuration
void
Video
::
Source
s
Model
::
switchTo
(
const
int
idx
)
void
Video
::
SourceModel
::
switchTo
(
const
int
idx
)
{
switch
(
idx
)
{
case
ExtendedDeviceList
::
NONE
:
DBus
::
VideoManager
::
instance
().
switchInput
(
Video
::
Source
s
ModelPrivate
::
ProtocolPrefix
::
NONE
);
DBus
::
VideoManager
::
instance
().
switchInput
(
Video
::
SourceModelPrivate
::
ProtocolPrefix
::
NONE
);
break
;
case
ExtendedDeviceList
::
SCREEN
:
DBus
::
VideoManager
::
instance
().
switchInput
(
QString
(
Video
::
Source
s
ModelPrivate
::
ProtocolPrefix
::
DISPLAY
)
+
QString
(
":%1+%2,%3 %4x%5"
)
DBus
::
VideoManager
::
instance
().
switchInput
(
QString
(
Video
::
SourceModelPrivate
::
ProtocolPrefix
::
DISPLAY
)
+
QString
(
":%1+%2,%3 %4x%5"
)
.
arg
(
d_ptr
->
m_Display
.
index
)
.
arg
(
d_ptr
->
m_Display
.
rect
.
x
())
.
arg
(
d_ptr
->
m_Display
.
rect
.
y
())
...
...
@@ -160,23 +160,23 @@ void Video::SourcesModel::switchTo(const int idx)
break
;
case
ExtendedDeviceList
::
FILE
:
DBus
::
VideoManager
::
instance
().
switchInput
(
!
d_ptr
->
m_CurrentFile
.
isEmpty
()
?+
Video
::
Source
s
ModelPrivate
::
ProtocolPrefix
::
FILE
+
d_ptr
->
m_CurrentFile
.
path
()
:
Video
::
Source
s
ModelPrivate
::
ProtocolPrefix
::
NONE
!
d_ptr
->
m_CurrentFile
.
isEmpty
()
?+
Video
::
SourceModelPrivate
::
ProtocolPrefix
::
FILE
+
d_ptr
->
m_CurrentFile
.
path
()
:
Video
::
SourceModelPrivate
::
ProtocolPrefix
::
NONE
);
break
;
default:
DBus
::
VideoManager
::
instance
().
switchInput
(
Video
::
Source
s
ModelPrivate
::
ProtocolPrefix
::
V4L2
+
DBus
::
VideoManager
::
instance
().
switchInput
(
Video
::
SourceModelPrivate
::
ProtocolPrefix
::
V4L2
+
Video
::
DeviceModel
::
instance
()
->
index
(
idx
-
ExtendedDeviceList
::
COUNT__
,
0
).
data
(
Qt
::
DisplayRole
).
toString
());
break
;
};
d_ptr
->
m_CurrentSelection
=
(
ExtendedDeviceList
)
idx
;
}
void
Video
::
Source
s
Model
::
switchTo
(
Video
::
Device
*
device
)
void
Video
::
SourceModel
::
switchTo
(
Video
::
Device
*
device
)
{
DBus
::
VideoManager
::
instance
().
switchInput
(
Video
::
Source
s
ModelPrivate
::
ProtocolPrefix
::
V4L2
+
device
->
id
());
DBus
::
VideoManager
::
instance
().
switchInput
(
Video
::
SourceModelPrivate
::
ProtocolPrefix
::
V4L2
+
device
->
id
());
}
Video
::
Device
*
Video
::
Source
s
Model
::
deviceAt
(
const
QModelIndex
&
idx
)
const
Video
::
Device
*
Video
::
SourceModel
::
deviceAt
(
const
QModelIndex
&
idx
)
const
{
if
(
!
idx
.
isValid
())
return
nullptr
;
switch
(
idx
.
row
())
{
...
...
@@ -189,7 +189,7 @@ Video::Device* Video::SourcesModel::deviceAt(const QModelIndex& idx) const
};
}
int
Video
::
Source
s
Model
::
activeIndex
()
const
int
Video
::
SourceModel
::
activeIndex
()
const
{
if
(
d_ptr
->
m_CurrentSelection
==
-
1
)
{
return
ExtendedDeviceList
::
COUNT__
+
Video
::
DeviceModel
::
instance
()
->
activeIndex
();
...
...
@@ -197,13 +197,13 @@ int Video::SourcesModel::activeIndex() const
return
d_ptr
->
m_CurrentSelection
;
}
void
Video
::
Source
s
Model
::
setFile
(
const
QUrl
&
url
)
void
Video
::
SourceModel
::
setFile
(
const
QUrl
&
url
)
{
d_ptr
->
m_CurrentFile
=
url
;
switchTo
(
ExtendedDeviceList
::
FILE
);
}
void
Video
::
Source
s
Model
::
setDisplay
(
int
index
,
QRect
rect
)
void
Video
::
SourceModel
::
setDisplay
(
int
index
,
QRect
rect
)
{
d_ptr
->
m_Display
.
index
=
index
;
d_ptr
->
m_Display
.
rect
=
rect
;
...
...
This diff is collapsed.
Click to expand it.
src/video/source
s
model.h
→
src/video/sourcemodel.h
+
7
−
7
View file @
125f8484
...
...
@@ -26,10 +26,10 @@
namespace
Video
{
class
Device
;
class
Source
s
ModelPrivate
;
class
SourceModelPrivate
;
//TODO qt5, use QIdentityProxyModel
class
LIB_EXPORT
Source
s
Model
:
public
QAbstractListModel
{
class
LIB_EXPORT
SourceModel
:
public
QAbstractListModel
{
Q_OBJECT
public:
enum
ExtendedDeviceList
{
...
...
@@ -49,13 +49,13 @@ public:
int
activeIndex
()
const
;
//Singleton
static
Video
::
Source
s
Model
*
instance
();
static
Video
::
SourceModel
*
instance
();
private
:
explicit
Source
s
Model
();
virtual
~
Source
s
Model
();
explicit
SourceModel
();
virtual
~
SourceModel
();
Video
::
Source
s
ModelPrivate
*
d_ptr
;
static
Video
::
Source
s
Model
*
m_spInstance
;
Video
::
SourceModelPrivate
*
d_ptr
;
static
Video
::
SourceModel
*
m_spInstance
;
public
Q_SLOTS
:
void
switchTo
(
const
QModelIndex
&
idx
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment