Page Menu
Home
GnuPG
Search
Configure Global Search
Log In
Files
F34102338
navigatabletreewidget.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Size
1 KB
Subscribers
None
navigatabletreewidget.cpp
View Options
/*
ui/navigatabletreewidget.cpp
This file is part of libkleopatra
SPDX-FileCopyrightText: 2022 g10 Code GmbH
SPDX-FileContributor: Ingo Klöcker <dev@ingo-kloecker.de>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include
<config-libkleo.h>
#include
"navigatabletreewidget.h"
using
namespace
Kleo
;
QModelIndex
NavigatableTreeWidget
::
moveCursor
(
QAbstractItemView
::
CursorAction
cursorAction
,
Qt
::
KeyboardModifiers
modifiers
)
{
// make column by column keyboard navigation with Left/Right possible by switching
// the selection behavior to SelectItems before calling the parent class's moveCursor,
// because it ignores MoveLeft/MoveRight if the selection behavior is SelectRows;
// moreover, temporarily disable exanding of items to prevent expanding/collapsing
// on MoveLeft/MoveRight
if
((
cursorAction
!=
MoveLeft
)
&&
(
cursorAction
!=
MoveRight
))
{
return
QTreeWidget
::
moveCursor
(
cursorAction
,
modifiers
);
}
const
auto
savedSelectionBehavior
=
selectionBehavior
();
setSelectionBehavior
(
SelectItems
);
const
auto
savedItemsExpandable
=
itemsExpandable
();
setItemsExpandable
(
false
);
const
auto
result
=
QTreeWidget
::
moveCursor
(
cursorAction
,
modifiers
);
setItemsExpandable
(
savedItemsExpandable
);
setSelectionBehavior
(
savedSelectionBehavior
);
return
result
;
}
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Thu, Dec 4, 1:01 PM (1 d, 14 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
be/43/312a46aa8f82ebe4ec5ac7939be7
Attached To
rLIBKLEO Libkleo
Event Timeline
Log In to Comment