diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-12-08 22:20:27 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-12-08 22:20:27 +0300 |
commit | f019a9e52d0a3f5ca23681d5eb36bb2e56d37064 (patch) | |
tree | 33c4f14a56d1327b361dcc681712cfc105a7701e /src/gui/widgets/browserbox.h | |
parent | 13b08d35c2d96ae734da14ab58d6263287e342c9 (diff) | |
download | mv-f019a9e52d0a3f5ca23681d5eb36bb2e56d37064.tar.gz mv-f019a9e52d0a3f5ca23681d5eb36bb2e56d37064.tar.bz2 mv-f019a9e52d0a3f5ca23681d5eb36bb2e56d37064.tar.xz mv-f019a9e52d0a3f5ca23681d5eb36bb2e56d37064.zip |
Allow control popup menu by up/down keys.
Diffstat (limited to 'src/gui/widgets/browserbox.h')
-rw-r--r-- | src/gui/widgets/browserbox.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gui/widgets/browserbox.h b/src/gui/widgets/browserbox.h index 85bb758f9..4fdb45189 100644 --- a/src/gui/widgets/browserbox.h +++ b/src/gui/widgets/browserbox.h @@ -196,6 +196,12 @@ class BrowserBox final : public Widget, int getDataWidth() const { return mDataWidth; } + void moveSelectionUp(); + + void moveSelectionDown(); + + void selectSelection(); + private: int calcHeight() A_WARN_UNUSED; |