Audacity 3.2.0
Public Member Functions | Private Member Functions | Friends | List of all members
ListNavigationEnabled< WindowBase > Class Template Reference

Changes default arrow navigation to behave more list- or table-like. Instead of searching focusable items among children first, list navigation searches for siblings when arrow key is pressed. Tab behaviour stays same. Requires wxWANT_CHARS style flag to be set. More...

#include <ListNavigationEnabled.h>

Inheritance diagram for ListNavigationEnabled< WindowBase >:
[legend]
Collaboration diagram for ListNavigationEnabled< WindowBase >:
[legend]

Public Member Functions

 ListNavigationEnabled ()
 

Private Member Functions

void SetFocus () override
 
void OnCharHook (wxKeyEvent &evt)
 
void OnKeyDown (wxKeyEvent &evt)
 
void OnNavigationKeyEvent (wxNavigationKeyEvent &evt)
 
bool Destroy () override
 

Friends

void ListNavigationEnabled_HandleCharHook (wxWindow *self, wxKeyEvent &evt)
 
void ListNavigationEnabled_HandleKeyDown (wxWindow *self, wxKeyEvent &evt)
 
void ListNavigationEnabled_HandleNavigationKeyEvent (wxWindow *self, wxNavigationKeyEvent &evt)
 
void ListNavigationEnabled_HandleDestroy (wxWindow *self)
 

Detailed Description

template<class WindowBase>
class ListNavigationEnabled< WindowBase >

Changes default arrow navigation to behave more list- or table-like. Instead of searching focusable items among children first, list navigation searches for siblings when arrow key is pressed. Tab behaviour stays same. Requires wxWANT_CHARS style flag to be set.

Definition at line 24 of file ListNavigationEnabled.h.

Constructor & Destructor Documentation

◆ ListNavigationEnabled()

template<class WindowBase >
ListNavigationEnabled< WindowBase >::ListNavigationEnabled ( )
inline

Definition at line 32 of file ListNavigationEnabled.h.

33 {
34 WindowBase::Bind(wxEVT_NAVIGATION_KEY, &ListNavigationEnabled::OnNavigationKeyEvent, this);
35 WindowBase::Bind(wxEVT_KEY_DOWN, &ListNavigationEnabled::OnKeyDown, this);
36 WindowBase::Bind(wxEVT_CHAR_HOOK, &ListNavigationEnabled::OnCharHook, this);
37 }
void OnCharHook(wxKeyEvent &evt)
void OnKeyDown(wxKeyEvent &evt)
void OnNavigationKeyEvent(wxNavigationKeyEvent &evt)

References ListNavigationEnabled< WindowBase >::OnCharHook(), ListNavigationEnabled< WindowBase >::OnKeyDown(), and ListNavigationEnabled< WindowBase >::OnNavigationKeyEvent().

Here is the call graph for this function:

Member Function Documentation

◆ Destroy()

template<class WindowBase >
bool ListNavigationEnabled< WindowBase >::Destroy ( )
inlineoverrideprivate

Definition at line 61 of file ListNavigationEnabled.h.

62 {
64 return wxNavigationEnabled<WindowBase>::Destroy();
65 }
friend void ListNavigationEnabled_HandleDestroy(wxWindow *self)

References ListNavigationEnabled< WindowBase >::ListNavigationEnabled_HandleDestroy.

◆ OnCharHook()

template<class WindowBase >
void ListNavigationEnabled< WindowBase >::OnCharHook ( wxKeyEvent &  evt)
inlineprivate

Definition at line 46 of file ListNavigationEnabled.h.

47 {
49 }
friend void ListNavigationEnabled_HandleCharHook(wxWindow *self, wxKeyEvent &evt)

References ListNavigationEnabled< WindowBase >::ListNavigationEnabled_HandleCharHook.

Referenced by ListNavigationEnabled< WindowBase >::ListNavigationEnabled().

Here is the caller graph for this function:

◆ OnKeyDown()

template<class WindowBase >
void ListNavigationEnabled< WindowBase >::OnKeyDown ( wxKeyEvent &  evt)
inlineprivate

Definition at line 51 of file ListNavigationEnabled.h.

52 {
54 }
friend void ListNavigationEnabled_HandleKeyDown(wxWindow *self, wxKeyEvent &evt)

References ListNavigationEnabled< WindowBase >::ListNavigationEnabled_HandleKeyDown.

Referenced by ListNavigationEnabled< WindowBase >::ListNavigationEnabled().

Here is the caller graph for this function:

◆ OnNavigationKeyEvent()

template<class WindowBase >
void ListNavigationEnabled< WindowBase >::OnNavigationKeyEvent ( wxNavigationKeyEvent &  evt)
inlineprivate

Definition at line 56 of file ListNavigationEnabled.h.

57 {
59 }
friend void ListNavigationEnabled_HandleNavigationKeyEvent(wxWindow *self, wxNavigationKeyEvent &evt)

References ListNavigationEnabled< WindowBase >::ListNavigationEnabled_HandleNavigationKeyEvent.

Referenced by ListNavigationEnabled< WindowBase >::ListNavigationEnabled().

Here is the caller graph for this function:

◆ SetFocus()

template<class WindowBase >
void ListNavigationEnabled< WindowBase >::SetFocus ( )
inlineoverrideprivate

Definition at line 40 of file ListNavigationEnabled.h.

41 {
42 //Prevent attempt to search for a focusable child
44 }
void SetFocus(const WindowPlacement &focus)
Set the window that accepts keyboard input.
Definition: BasicUI.h:384

References BasicUI::SetFocus().

Here is the call graph for this function:

Friends And Related Function Documentation

◆ ListNavigationEnabled_HandleCharHook

template<class WindowBase >
void ListNavigationEnabled_HandleCharHook ( wxWindow *  self,
wxKeyEvent &  evt 
)
friend

Definition at line 13 of file ListNavigationEnabled.cpp.

14{
15 //We want to restore focus to list item once arrow navigation is used
16 //on the child item, for this we need a char hook since key/navigation
17 //events are sent directly to the focused item
18 const auto keyCode = evt.GetKeyCode();
19 if((keyCode == WXK_DOWN || keyCode == WXK_UP) &&
20 !self->HasFocus() &&
21 self->IsDescendant(wxWindow::FindFocus()))
22 {
23 self->SetFocusFromKbd();
24 }
25 else
26 evt.Skip();
27}
std::unique_ptr< WindowPlacement > FindFocus()
Find the window that is accepting keyboard input, if any.
Definition: BasicUI.h:375

Referenced by ListNavigationEnabled< WindowBase >::OnCharHook().

◆ ListNavigationEnabled_HandleDestroy

template<class WindowBase >
void ListNavigationEnabled_HandleDestroy ( wxWindow *  self)
friend

Definition at line 72 of file ListNavigationEnabled.cpp.

73{
74 if(self->IsDescendant(wxWindow::FindFocus()))
75 {
76 auto next = self->GetNextSibling();
77 if(next != nullptr && next->AcceptsFocus())
78 next->SetFocus();
79 else
80 {
81 auto prev = self->GetPrevSibling();
82 if(prev != nullptr && prev->AcceptsFocus())
83 prev->SetFocus();
84 }
85 }
86}

Referenced by ListNavigationEnabled< WindowBase >::Destroy().

◆ ListNavigationEnabled_HandleKeyDown

template<class WindowBase >
void ListNavigationEnabled_HandleKeyDown ( wxWindow *  self,
wxKeyEvent &  evt 
)
friend

Definition at line 29 of file ListNavigationEnabled.cpp.

30{
31 const auto keyCode = evt.GetKeyCode();
32 if(keyCode == WXK_TAB)
33 self->NavigateIn(wxNavigationKeyEvent::FromTab | (evt.ShiftDown() ? wxNavigationKeyEvent::IsBackward : wxNavigationKeyEvent::IsForward));
34 else if(keyCode == WXK_DOWN)
35 self->Navigate(wxNavigationKeyEvent::IsForward);
36 else if(keyCode == WXK_UP)
37 self->Navigate(wxNavigationKeyEvent::IsBackward);
38 else
39 evt.Skip();
40}

Referenced by ListNavigationEnabled< WindowBase >::OnKeyDown().

◆ ListNavigationEnabled_HandleNavigationKeyEvent

template<class WindowBase >
void ListNavigationEnabled_HandleNavigationKeyEvent ( wxWindow *  self,
wxNavigationKeyEvent &  evt 
)
friend

Definition at line 42 of file ListNavigationEnabled.cpp.

43{
44 if(evt.GetEventObject() == self->GetParent() && !evt.IsFromTab())
45 self->SetFocusFromKbd();
46 else if(evt.GetEventObject() == self && evt.GetCurrentFocus() == self && evt.IsFromTab())
47 {
48 //NavigateIn
49 wxPropagationDisabler disableProp(evt);
50 const auto isForward = evt.GetDirection();
51 const auto& children = self->GetChildren();
52 auto node = isForward ? children.GetFirst() : children.GetLast();
53 while(node)
54 {
55 auto child = node->GetData();
56 if(child->CanAcceptFocusFromKeyboard())
57 {
58 if(!child->GetEventHandler()->ProcessEvent(evt))
59 {
60 child->SetFocusFromKbd();
61 }
62 evt.Skip(false);
63 return;
64 }
65 node = isForward ? node->GetNext() : node->GetPrevious();
66 }
67 }
68 else
69 evt.Skip();
70}

Referenced by ListNavigationEnabled< WindowBase >::OnNavigationKeyEvent().


The documentation for this class was generated from the following file: