Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
juk
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
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
David Planella
juk
Commits
827240bf
Commit
827240bf
authored
Sep 15, 2006
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Compile++
svn path=/trunk/KDE/kdemultimedia/juk/; revision=584700
parent
b7aab533
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
10 deletions
+10
-10
juk.cpp
juk.cpp
+2
-2
k3bexporter.cpp
k3bexporter.cpp
+2
-2
playlist.cpp
playlist.cpp
+2
-2
playlistbox.cpp
playlistbox.cpp
+1
-1
playlistcollection.cpp
playlistcollection.cpp
+2
-2
playlistsplitter.cpp
playlistsplitter.cpp
+1
-1
No files found.
juk.cpp
View file @
827240bf
...
...
@@ -177,7 +177,7 @@ void JuK::setupActions()
KToggleAction
*
resizeColumnAction
=
new
KToggleAction
(
i18n
(
"&Resize Playlist Columns Manually"
),
collection
,
"resizeColumnsManually"
);
resizeColumnAction
->
setCheckedState
(
i18n
(
"&Resize Column Headers Automatically"
));
resizeColumnAction
->
setCheckedState
(
KGuiItem
(
i18n
(
"&Resize Column Headers Automatically"
)
));
// the following are not visible by default
...
...
@@ -209,7 +209,7 @@ void JuK::setupActions()
m_toggleSplashAction
=
new
KToggleAction
(
i18n
(
"Show Splash Screen on Startup"
),
collection
,
"showSplashScreen"
);
m_toggleSplashAction
->
setCheckedState
(
i18n
(
"Hide Splash Screen on Startup"
));
m_toggleSplashAction
->
setCheckedState
(
KGuiItem
(
i18n
(
"Hide Splash Screen on Startup"
)
));
m_toggleSystemTrayAction
=
new
KToggleAction
(
i18n
(
"&Dock in System Tray"
),
collection
,
"toggleSystemTray"
);
...
...
k3bexporter.cpp
View file @
827240bf
...
...
@@ -250,8 +250,8 @@ K3bExporter::K3bOpenMode K3bExporter::openMode()
"mode CD suitable for computers and other digital music "
"players?"
),
i18n
(
"Create K3b Project"
),
i18n
(
"Audio Mode"
),
i18n
(
"Data Mode"
)
KGuiItem
(
i18n
(
"Audio Mode"
)
),
KGuiItem
(
i18n
(
"Data Mode"
)
)
);
switch
(
reply
)
{
...
...
playlist.cpp
View file @
827240bf
...
...
@@ -815,7 +815,7 @@ void Playlist::slotRemoveCover()
int
button
=
KMessageBox
::
warningContinueCancel
(
this
,
i18n
(
"Are you sure you want to delete these covers?"
),
QString
::
null
,
i18n
(
"&Delete Covers"
));
KGuiItem
(
i18n
(
"&Delete Covers"
)
));
if
(
button
==
KMessageBox
::
Continue
)
refreshAlbums
(
items
);
}
...
...
@@ -2245,7 +2245,7 @@ void Playlist::slotInlineEditDone(Q3ListViewItem *, const QString &, int column)
0
,
i18n
(
"This will edit multiple files. Are you sure?"
),
QString
::
null
,
i18n
(
"Edit"
),
KGuiItem
(
i18n
(
"Edit"
)
),
"DontWarnMultipleTags"
)
==
KMessageBox
::
Cancel
))
{
return
;
...
...
playlistbox.cpp
View file @
827240bf
...
...
@@ -304,7 +304,7 @@ void PlaylistBox::remove()
if
(
!
files
.
isEmpty
())
{
int
remove
=
KMessageBox
::
warningYesNoCancelList
(
this
,
i18n
(
"Do you want to delete these files from the disk as well?"
),
files
,
QString
::
null
,
KStdGuiItem
::
del
(),
i18n
(
"Keep"
));
this
,
i18n
(
"Do you want to delete these files from the disk as well?"
),
files
,
QString
::
null
,
KStdGuiItem
::
del
(),
KGuiItem
(
i18n
(
"Keep"
)
));
if
(
remove
==
KMessageBox
::
Yes
)
{
QStringList
couldNotDelete
;
...
...
playlistcollection.cpp
View file @
827240bf
...
...
@@ -903,11 +903,11 @@ PlaylistCollection::ActionHandler::ActionHandler(PlaylistCollection *collection)
KToggleAction
*
historyAction
=
new
KToggleAction
(
KIcon
(
"history"
),
i18n
(
"Show &History"
),
actions
(),
"showHistory"
);
historyAction
->
setCheckedState
(
i18n
(
"Hide &History"
));
historyAction
->
setCheckedState
(
KGuiItem
(
i18n
(
"Hide &History"
)
));
KToggleAction
*
upcomingAction
=
new
KToggleAction
(
KIcon
(
"today"
),
i18n
(
"Show &Play Queue"
),
actions
(),
"showUpcoming"
);
upcomingAction
->
setCheckedState
(
i18n
(
"Hide &Play Queue"
));
upcomingAction
->
setCheckedState
(
KGuiItem
(
i18n
(
"Hide &Play Queue"
)
));
connect
(
action
<
KToggleAction
>
(
"showHistory"
),
SIGNAL
(
toggled
(
bool
)),
this
,
SLOT
(
slotSetHistoryPlaylistEnabled
(
bool
)));
...
...
playlistsplitter.cpp
View file @
827240bf
...
...
@@ -122,7 +122,7 @@ void PlaylistSplitter::setupActions()
{
KToggleAction
*
showSearch
=
new
KToggleAction
(
KIcon
(
"filefind"
),
i18n
(
"Show &Search Bar"
),
ActionCollection
::
actions
(),
"showSearch"
);
showSearch
->
setCheckedState
(
i18n
(
"Hide &Search Bar"
));
showSearch
->
setCheckedState
(
KGuiItem
(
i18n
(
"Hide &Search Bar"
)
));
KAction
*
act
=
new
KAction
(
KIcon
(
"edit_clear"
),
i18n
(
"Edit Track Search"
),
ActionCollection
::
actions
(),
"editTrackSearch"
);
act
->
setShortcut
(
Qt
::
Key_F6
);
...
...
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