Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Unmaintained
KDE Base Apps
Commits
914b8d88
Commit
914b8d88
authored
Mar 16, 2013
by
Xuetian Weng
Browse files
use plain text for information panel
REVIEW: 109129 BUG: 315693 CCBUG: 262464
parent
ae044f0e
Changes
1
Hide whitespace changes
Inline
Side-by-side
dolphin/src/panels/information/informationpanelcontent.cpp
View file @
914b8d88
...
...
@@ -105,6 +105,7 @@ InformationPanelContent::InformationPanelContent(QWidget* parent) :
QFont
font
=
m_nameLabel
->
font
();
font
.
setBold
(
true
);
m_nameLabel
->
setFont
(
font
);
m_nameLabel
->
setTextFormat
(
Qt
::
PlainText
);
m_nameLabel
->
setAlignment
(
Qt
::
AlignHCenter
);
m_nameLabel
->
setSizePolicy
(
QSizePolicy
::
Expanding
,
QSizePolicy
::
Fixed
);
...
...
@@ -163,7 +164,7 @@ void InformationPanelContent::showItem(const KFileItem& item)
const
KUrl
itemUrl
=
item
.
url
();
const
bool
isSearchUrl
=
itemUrl
.
protocol
().
contains
(
"search"
)
&&
item
.
nepomukUri
().
isEmpty
();
if
(
!
applyPlace
(
itemUrl
))
{
setNameLabelText
(
Qt
::
escape
(
item
.
text
())
)
;
setNameLabelText
(
item
.
text
());
if
(
isSearchUrl
)
{
// in the case of a search-URL the URL is not readable for humans
// (at least not useful to show in the Information Panel)
...
...
@@ -233,7 +234,7 @@ void InformationPanelContent::showItems(const KFileItemList& items)
KIconLoader
::
NoGroup
,
KIconLoader
::
SizeEnormous
);
m_preview
->
setPixmap
(
icon
);
setNameLabelText
(
i18ncp
(
"@
info
"
,
"%1 item selected"
,
"%1 items selected"
,
items
.
count
()));
setNameLabelText
(
i18ncp
(
"@
label
"
,
"%1 item selected"
,
"%1 items selected"
,
items
.
count
()));
if
(
m_metaDataWidget
)
{
m_metaDataWidget
->
setItems
(
items
);
...
...
@@ -361,7 +362,7 @@ bool InformationPanelContent::applyPlace(const KUrl& url)
for
(
int
i
=
0
;
i
<
count
;
++
i
)
{
const
PlacesItem
*
item
=
m_placesItemModel
->
placesItem
(
i
);
if
(
item
->
url
().
equals
(
url
,
KUrl
::
CompareWithoutTrailingSlash
))
{
setNameLabelText
(
Qt
::
escape
(
item
->
text
())
)
;
setNameLabelText
(
item
->
text
());
m_preview
->
setPixmap
(
KIcon
(
item
->
icon
()).
pixmap
(
128
,
128
));
return
true
;
}
...
...
Write
Preview
Supports
Markdown
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