65 lines
1.8 KiB
C++
65 lines
1.8 KiB
C++
// Filename: keyboardButton.h
|
|
// Created by: drose (01Mar00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef KEYBOARDBUTTON_H
|
|
#define KEYBOARDBUTTON_H
|
|
|
|
#include <pandabase.h>
|
|
|
|
#include "buttonHandle.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : KeyboardButton
|
|
// Description : This class is just used as a convenient namespace for
|
|
// grouping all of these handy functions that return
|
|
// buttons which map to standard keyboard keys.
|
|
////////////////////////////////////////////////////////////////////
|
|
class EXPCL_PANDA KeyboardButton {
|
|
PUBLISHED:
|
|
static ButtonHandle ascii_key(char ascii_equivalent);
|
|
|
|
static ButtonHandle space();
|
|
static ButtonHandle backspace();
|
|
static ButtonHandle tab();
|
|
static ButtonHandle enter();
|
|
static ButtonHandle escape();
|
|
|
|
static ButtonHandle f1();
|
|
static ButtonHandle f2();
|
|
static ButtonHandle f3();
|
|
static ButtonHandle f4();
|
|
static ButtonHandle f5();
|
|
static ButtonHandle f6();
|
|
static ButtonHandle f7();
|
|
static ButtonHandle f8();
|
|
static ButtonHandle f9();
|
|
static ButtonHandle f10();
|
|
static ButtonHandle f11();
|
|
static ButtonHandle f12();
|
|
|
|
static ButtonHandle left();
|
|
static ButtonHandle right();
|
|
static ButtonHandle up();
|
|
static ButtonHandle down();
|
|
static ButtonHandle page_up();
|
|
static ButtonHandle page_down();
|
|
static ButtonHandle home();
|
|
static ButtonHandle end();
|
|
static ButtonHandle insert();
|
|
static ButtonHandle del(); // delete is a C++ keyword.
|
|
|
|
static ButtonHandle shift();
|
|
static ButtonHandle control();
|
|
static ButtonHandle alt();
|
|
static ButtonHandle meta();
|
|
static ButtonHandle caps_lock();
|
|
static ButtonHandle shift_lock();
|
|
|
|
public:
|
|
static void init_keyboard_buttons();
|
|
};
|
|
|
|
#endif
|