Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
df4889d9
Commit
df4889d9
authored
Jan 30, 2010
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: reindent
parent
3834b98e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
33 deletions
+33
-33
modules/gui/qt4/components/playlist/standardpanel.cpp
modules/gui/qt4/components/playlist/standardpanel.cpp
+33
-33
No files found.
modules/gui/qt4/components/playlist/standardpanel.cpp
View file @
df4889d9
...
...
@@ -454,45 +454,45 @@ void StandardPLPanel::browseInto( input_item_t *p_input )
LocationBar
::
LocationBar
(
PLModel
*
m
)
{
model
=
m
;
mapper
=
new
QSignalMapper
(
this
);
CONNECT
(
mapper
,
mapped
(
int
),
this
,
invoke
(
int
)
);
model
=
m
;
mapper
=
new
QSignalMapper
(
this
);
CONNECT
(
mapper
,
mapped
(
int
),
this
,
invoke
(
int
)
);
}
void
LocationBar
::
setIndex
(
const
QModelIndex
&
index
)
{
clear
();
QAction
*
prev
=
NULL
;
QModelIndex
i
=
index
;
QFont
font
;
QFontMetrics
metrics
(
font
);
font
.
setBold
(
true
);
while
(
true
)
{
PLItem
*
item
=
model
->
getItem
(
i
);
QToolButton
*
btn
=
new
QToolButton
;
char
*
fb_name
=
input_item_GetTitleFbName
(
item
->
inputItem
()
);
QString
text
=
qfu
(
fb_name
);
free
(
fb_name
);
text
=
QString
(
"/ "
)
+
metrics
.
elidedText
(
text
,
Qt
::
ElideRight
,
150
);
btn
->
setText
(
text
);
btn
->
setFont
(
font
);
prev
=
insertWidget
(
prev
,
btn
);
mapper
->
setMapping
(
btn
,
item
->
id
()
);
CONNECT
(
btn
,
clicked
(
),
mapper
,
map
(
)
);
font
=
QFont
();
if
(
i
.
isValid
()
)
i
=
i
.
parent
();
else
break
;
}
clear
();
QAction
*
prev
=
NULL
;
QModelIndex
i
=
index
;
QFont
font
;
QFontMetrics
metrics
(
font
);
font
.
setBold
(
true
);
while
(
true
)
{
PLItem
*
item
=
model
->
getItem
(
i
);
QToolButton
*
btn
=
new
QToolButton
;
char
*
fb_name
=
input_item_GetTitleFbName
(
item
->
inputItem
()
);
QString
text
=
qfu
(
fb_name
);
free
(
fb_name
);
text
=
QString
(
"/ "
)
+
metrics
.
elidedText
(
text
,
Qt
::
ElideRight
,
150
);
btn
->
setText
(
text
);
btn
->
setFont
(
font
);
prev
=
insertWidget
(
prev
,
btn
);
mapper
->
setMapping
(
btn
,
item
->
id
()
);
CONNECT
(
btn
,
clicked
(
),
mapper
,
map
(
)
);
font
=
QFont
();
if
(
i
.
isValid
()
)
i
=
i
.
parent
();
else
break
;
}
}
void
LocationBar
::
invoke
(
int
i_id
)
{
QModelIndex
index
=
model
->
index
(
i_id
,
0
);
setIndex
(
index
);
emit
invoked
(
index
);
QModelIndex
index
=
model
->
index
(
i_id
,
0
);
setIndex
(
index
);
emit
invoked
(
index
);
}
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