vnote/src/vnavigationmode.h
Le Tan 6ac33d2bd0 support snippets
Shortcuts are not supported yet.
2017-11-11 08:09:22 +08:00

65 lines
1.5 KiB
C++

#ifndef VNAVIGATIONMODE_H
#define VNAVIGATIONMODE_H
#include <QChar>
#include <QVector>
#include <QMap>
#include <QList>
class QLabel;
class QListWidget;
class QListWidgetItem;
class QTreeWidget;
class QTreeWidgetItem;
// Interface class for Navigation Mode in Captain Mode.
class VNavigationMode
{
public:
VNavigationMode();
virtual ~VNavigationMode();
virtual void registerNavigation(QChar p_majorKey);
virtual void showNavigation() = 0;
virtual void hideNavigation();
// Return true if this object could consume p_key.
// p_succeed indicates whether the keys hit a target successfully.
virtual bool handleKeyNavigation(int p_key, bool &p_succeed) = 0;
protected:
void clearNavigation();
void showNavigation(QListWidget *p_widget);
void showNavigation(QTreeWidget *p_widget);
bool handleKeyNavigation(QListWidget *p_widget,
bool &p_secondKey,
int p_key,
bool &p_succeed);
bool handleKeyNavigation(QTreeWidget *p_widget,
bool &p_secondKey,
int p_key,
bool &p_succeed);
QChar m_majorKey;
// Map second key to item.
QMap<QChar, void *> m_keyMap;
QVector<QLabel *> m_naviLabels;
private:
QList<QListWidgetItem *> getVisibleItems(const QListWidget *p_widget) const;
QList<QTreeWidgetItem *> getVisibleItems(const QTreeWidget *p_widget) const;
};
#endif // VNAVIGATIONMODE_H