finalcut/src/include/final/fkeyboard.h

264 lines
9.0 KiB
C
Raw Normal View History

/***********************************************************************
* fkeyboard.h - Read keyboard events *
* *
* This file is part of the Final Cut widget toolkit *
* *
* Copyright 2018-2020 Markus Gans *
* *
* The Final Cut is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public License *
* as published by the Free Software Foundation; either version 3 of *
* the License, or (at your option) any later version. *
* *
* The Final Cut is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this program. If not, see *
* <http://www.gnu.org/licenses/>. *
***********************************************************************/
/* Standalone class
*
*
*
* FKeyboard
*
*/
#ifndef FKEYBOARD_H
#define FKEYBOARD_H
#if !defined (USE_FINAL_H) && !defined (COMPILE_FINAL_CUT)
#error "Only <final/final.h> can be included directly."
#endif
2019-08-06 23:45:28 +02:00
#include <sys/time.h>
2019-10-05 23:20:07 +02:00
#include <functional>
#include "final/fstring.h"
#include "final/ftypes.h"
namespace finalcut
{
// class forward declaration
class FApplication;
class FString;
class FTermLinux;
//----------------------------------------------------------------------
// class FKeyboardCommand
//----------------------------------------------------------------------
2019-01-04 02:18:54 +01:00
class FKeyboardCommand final
{
public:
2019-10-05 23:20:07 +02:00
// Constructors
FKeyboardCommand () = default;
2019-10-14 01:44:24 +02:00
explicit FKeyboardCommand (const std::function<void()>& fn)
2019-10-05 23:20:07 +02:00
: handler(fn)
{ }
// Method
2019-10-05 23:20:07 +02:00
void execute()
{
handler();
}
private:
// Data members
2019-10-05 23:20:07 +02:00
std::function<void()> handler{};
};
//----------------------------------------------------------------------
// class FKeyboard
//----------------------------------------------------------------------
2019-01-04 02:18:54 +01:00
class FKeyboard final
{
public:
// Constants
2018-12-26 23:41:49 +01:00
static constexpr std::size_t FIFO_BUF_SIZE{512};
// Typedef
typedef char keybuffer[FIFO_BUF_SIZE];
// Constructor
FKeyboard();
// Disable copy constructor
FKeyboard (const FKeyboard&) = delete;
// Destructor
~FKeyboard();
// Disable copy assignment operator (=)
FKeyboard& operator = (const FKeyboard&) = delete;
// Accessors
const FString getClassName() const;
2019-10-05 23:20:07 +02:00
FKey getKey();
const FString getKeyName (const FKey);
2019-10-05 23:20:07 +02:00
keybuffer& getKeyBuffer();
timeval* getKeyPressedTime();
static uInt64 getKeypressTimeout();
static uInt64 getReadBlockingTime();
// Mutators
2019-10-08 04:37:19 +02:00
void setTermcapMap (fc::FKeyMap*);
static void setKeypressTimeout (const uInt64);
static void setReadBlockingTime (const uInt64);
2019-10-05 23:20:07 +02:00
void enableUTF8();
void disableUTF8();
void enableMouseSequences();
void disableMouseSequences();
2020-04-19 20:38:52 +02:00
void setPressCommand (const FKeyboardCommand&);
void setReleaseCommand (const FKeyboardCommand&);
void setEscPressedCommand (const FKeyboardCommand&);
// Inquiry
bool isInputDataPending() const;
// Methods
2019-10-05 23:20:07 +02:00
static void init();
bool& unprocessedInput();
bool isKeyPressed() const;
2019-10-05 23:20:07 +02:00
void clearKeyBuffer();
void clearKeyBufferOnTimeout();
void fetchKeyCode();
void escapeKeyHandling();
private:
// Constants
2018-12-26 23:41:49 +01:00
static constexpr FKey NOT_SET = static_cast<FKey>(-1);
// Accessors
2019-10-05 23:20:07 +02:00
FKey getMouseProtocolKey();
FKey getTermcapKey();
FKey getMetaKey();
FKey getSingleKey();
// Mutators
2019-10-05 23:20:07 +02:00
bool setNonBlockingInput (bool);
bool setNonBlockingInput();
bool unsetNonBlockingInput();
// Inquiry
2019-10-05 23:20:07 +02:00
static bool isKeypressTimeout();
// Methods
2019-10-05 23:20:07 +02:00
FKey UTF8decode (const char[]);
ssize_t readKey();
void parseKeyBuffer();
FKey parseKeyString();
FKey keyCorrection (const FKey&);
void substringKeyHandling();
void keyPressed();
void keyReleased();
void escapeKeyPressed();
// Data members
2019-10-05 23:20:07 +02:00
FKeyboardCommand keypressed_cmd{};
FKeyboardCommand keyreleased_cmd{};
FKeyboardCommand escape_key_cmd{};
2019-09-08 02:04:24 +02:00
#if defined(__linux__)
#undef linux
2019-10-05 23:20:07 +02:00
static FTermLinux* linux;
2019-09-08 02:04:24 +02:00
#endif
2019-10-05 23:20:07 +02:00
static timeval time_keypressed;
static uInt64 read_blocking_time;
2019-10-05 23:20:07 +02:00
static uInt64 key_timeout;
2019-10-08 04:37:19 +02:00
fc::FKeyMap* key_map{nullptr};
2019-10-05 23:20:07 +02:00
FKey key{0};
uChar read_character{};
2019-10-05 23:20:07 +02:00
char fifo_buf[FIFO_BUF_SIZE]{'\0'};
int fifo_offset{0};
int stdin_status_flags{0};
bool fifo_in_use{false};
bool input_data_pending{false};
bool utf8_input{false};
bool mouse_support{true};
bool non_blocking_stdin{false};
};
// FKeyboard inline functions
2018-07-22 23:07:49 +02:00
//----------------------------------------------------------------------
2019-10-05 23:20:07 +02:00
inline const FString FKeyboard::getClassName() const
2018-07-22 23:07:49 +02:00
{ return "FKeyboard"; }
//----------------------------------------------------------------------
2018-11-21 20:07:08 +01:00
inline FKey FKeyboard::getKey()
{ return key; }
//----------------------------------------------------------------------
inline FKeyboard::keybuffer& FKeyboard::getKeyBuffer()
{ return fifo_buf; }
//----------------------------------------------------------------------
2018-07-22 23:07:49 +02:00
inline timeval* FKeyboard::getKeyPressedTime()
{ return &time_keypressed; }
//----------------------------------------------------------------------
inline uInt64 FKeyboard::getKeypressTimeout()
{ return key_timeout; }
//----------------------------------------------------------------------
inline uInt64 FKeyboard::getReadBlockingTime()
{ return read_blocking_time; }
//----------------------------------------------------------------------
2018-12-28 22:57:43 +01:00
inline void FKeyboard::setKeypressTimeout (const uInt64 timeout)
{ key_timeout = timeout; }
//----------------------------------------------------------------------
inline void FKeyboard::setReadBlockingTime (const uInt64 blocking_time)
{ read_blocking_time = blocking_time; }
//----------------------------------------------------------------------
inline void FKeyboard::enableUTF8()
{ utf8_input = true; }
//----------------------------------------------------------------------
inline void FKeyboard::disableUTF8()
{ utf8_input = false; }
//----------------------------------------------------------------------
inline void FKeyboard::enableMouseSequences()
{ mouse_support = true; }
//----------------------------------------------------------------------
inline void FKeyboard::disableMouseSequences()
{ mouse_support = false; }
//----------------------------------------------------------------------
2020-04-19 20:38:52 +02:00
inline void FKeyboard::setPressCommand (const FKeyboardCommand& cmd)
{ keypressed_cmd = cmd; }
//----------------------------------------------------------------------
2020-04-19 20:38:52 +02:00
inline void FKeyboard::setReleaseCommand (const FKeyboardCommand& cmd)
{ keyreleased_cmd = cmd; }
//----------------------------------------------------------------------
2020-04-19 20:38:52 +02:00
inline void FKeyboard::setEscPressedCommand (const FKeyboardCommand& cmd)
{ escape_key_cmd = cmd; }
//----------------------------------------------------------------------
inline bool FKeyboard::isInputDataPending() const
{ return input_data_pending; }
//----------------------------------------------------------------------
inline bool FKeyboard::setNonBlockingInput()
{ return setNonBlockingInput(true); }
//----------------------------------------------------------------------
inline bool FKeyboard::unsetNonBlockingInput()
{ return setNonBlockingInput(false); }
} // namespace finalcut
#endif // FKEYBOARD_H