Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Network
Konqueror
Commits
b6773876
Commit
b6773876
authored
May 04, 2006
by
Stephan Kulow
Browse files
deprecated--
svn path=/trunk/KDE/kdebase/konqueror/; revision=537462
parent
4bad0e03
Changes
2
Hide whitespace changes
Inline
Side-by-side
konqueror/iconview/konq_iconview.cc
View file @
b6773876
...
...
@@ -303,13 +303,16 @@ KonqKfmIconView::KonqKfmIconView( QWidget *parentWidget, QObject *parent, const
m_pamSort->insert( aSortDescending );
*/
m_paSelect
=
new
KAction
(
i18n
(
"Se&lect..."
),
Qt
::
CTRL
+
Qt
::
Key_Plus
,
this
,
SLOT
(
slotSelect
()
),
actionCollection
(),
"select"
);
m_paUnselect
=
new
KAction
(
i18n
(
"Unselect..."
),
Qt
::
CTRL
+
Qt
::
Key_Minus
,
this
,
SLOT
(
slotUnselect
()
),
actionCollection
(),
"unselect"
);
m_paSelect
=
new
KAction
(
i18n
(
"Se&lect..."
),
actionCollection
(),
"select"
);
connect
(
m_paSelect
,
SIGNAL
(
triggered
(
bool
)
),
SLOT
(
slotSelect
()
));
m_paSelect
->
setShortcut
(
Qt
::
CTRL
+
Qt
::
Key_Plus
);
m_paUnselect
=
new
KAction
(
i18n
(
"Unselect..."
),
actionCollection
(),
"unselect"
);
connect
(
m_paUnselect
,
SIGNAL
(
triggered
(
bool
)
),
SLOT
(
slotUnselect
()
));
m_paUnselect
->
setShortcut
(
Qt
::
CTRL
+
Qt
::
Key_Minus
);
m_paSelectAll
=
KStdAction
::
selectAll
(
this
,
SLOT
(
slotSelectAll
()
),
actionCollection
(),
"selectall"
);
m_paUnselectAll
=
new
KAction
(
i18n
(
"Unselect All"
),
Qt
::
CTRL
+
Qt
::
Key_U
,
this
,
SLOT
(
slotUnselectAll
()
),
actionCollection
(),
"unselectall"
);
m_paUnselectAll
=
new
KAction
(
i18n
(
"Unselect All"
),
actionCollection
(),
"unselectall"
);
connect
(
m_paUnselectAll
,
SIGNAL
(
triggered
(
bool
)
),
SLOT
(
slotUnselectAll
()
));
m_paUnselectAll
->
setShortcut
(
Qt
::
CTRL
+
Qt
::
Key_U
);
m_paInvertSelection
=
new
KAction
(
i18n
(
"&Invert Selection"
),
Qt
::
CTRL
+
Qt
::
Key_Asterisk
,
this
,
SLOT
(
slotInvertSelection
()
),
actionCollection
(),
"invertselection"
);
...
...
konqueror/listview/konq_listview.cc
View file @
b6773876
...
...
@@ -674,11 +674,19 @@ void KonqListView::setupActions()
m_paShowPermissions
->
setCheckedState
(
i18n
(
"Hide Permissions"
));
m_paShowURL
=
new
KToggleAction
(
i18n
(
"Show URL"
),
0
,
this
,
SLOT
(
slotColumnToggled
()),
actionCollection
(),
"show_url"
);
m_paSelect
=
new
KAction
(
i18n
(
"Se&lect..."
),
Qt
::
CTRL
+
Qt
::
Key_Plus
,
this
,
SLOT
(
slotSelect
()
),
actionCollection
(),
"select"
);
m_paUnselect
=
new
KAction
(
i18n
(
"Unselect..."
),
Qt
::
CTRL
+
Qt
::
Key_Minus
,
this
,
SLOT
(
slotUnselect
()
),
actionCollection
(),
"unselect"
);
m_paSelect
=
new
KAction
(
i18n
(
"Se&lect..."
),
actionCollection
(),
"select"
);
connect
(
m_paSelect
,
SIGNAL
(
triggered
(
bool
)
),
SLOT
(
slotSelect
()
));
m_paSelect
->
setShortcut
(
Qt
::
CTRL
+
Qt
::
Key_Plus
);
m_paUnselect
=
new
KAction
(
i18n
(
"Unselect..."
),
actionCollection
(),
"unselect"
);
connect
(
m_paUnselect
,
SIGNAL
(
triggered
(
bool
)
),
SLOT
(
slotUnselect
()
));
m_paUnselect
->
setShortcut
(
Qt
::
CTRL
+
Qt
::
Key_Minus
);
m_paSelectAll
=
KStdAction
::
selectAll
(
this
,
SLOT
(
slotSelectAll
()
),
actionCollection
(),
"selectall"
);
m_paUnselectAll
=
new
KAction
(
i18n
(
"Unselect All"
),
Qt
::
CTRL
+
Qt
::
Key_U
,
this
,
SLOT
(
slotUnselectAll
()
),
actionCollection
(),
"unselectall"
);
m_paInvertSelection
=
new
KAction
(
i18n
(
"&Invert Selection"
),
Qt
::
CTRL
+
Qt
::
Key_Asterisk
,
this
,
SLOT
(
slotInvertSelection
()
),
actionCollection
(),
"invertselection"
);
m_paUnselectAll
=
new
KAction
(
i18n
(
"Unselect All"
),
actionCollection
(),
"unselectall"
);
connect
(
m_paUnselectAll
,
SIGNAL
(
triggered
(
bool
)
),
SLOT
(
slotUnselectAll
()
));
m_paUnselectAll
->
setShortcut
(
Qt
::
CTRL
+
Qt
::
Key_U
);
m_paInvertSelection
=
new
KAction
(
i18n
(
"&Invert Selection"
),
actionCollection
(),
"invertselection"
);
connect
(
m_paInvertSelection
,
SIGNAL
(
triggered
(
bool
)
),
SLOT
(
slotInvertSelection
()
));
m_paInvertSelection
->
setShortcut
(
Qt
::
CTRL
+
Qt
::
Key_Asterisk
);
m_paShowDot
=
new
KToggleAction
(
i18n
(
"Show &Hidden Files"
),
0
,
this
,
SLOT
(
slotShowDot
()
),
actionCollection
(),
"show_dot"
);
// m_paShowDot->setCheckedState(i18n("Hide &Hidden Files"));
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment