docs/develop/input: Delete useless cruft.
The only thing of any real use in this directory was the Be Newsletter article, and the objdump from BeOS R5 (at least I guess that's what it is...) so I kept those.
This commit is contained in:
@@ -1,16 +0,0 @@
|
|||||||
BInputServerDevice::_ReservedInputServerDevice4(void)
|
|
||||||
BInputServerDevice::_ReservedInputServerDevice3(void)
|
|
||||||
BInputServerDevice::_ReservedInputServerDevice2(void)
|
|
||||||
BInputServerDevice::_ReservedInputServerDevice1(void)
|
|
||||||
BInputServerDevice::StopMonitoringDevice(char
|
|
||||||
BInputServerDevice::StartMonitoringDevice(char
|
|
||||||
BInputServerDevice::EnqueueMessage(BMessage
|
|
||||||
BInputServerDevice::UnregisterDevices(input_device_ref
|
|
||||||
BInputServerDevice::RegisterDevices(input_device_ref
|
|
||||||
BInputServerDevice::Control(char
|
|
||||||
BInputServerDevice::Stop(char
|
|
||||||
BInputServerDevice::Start(char
|
|
||||||
BInputServerDevice::SystemShuttingDown(void)
|
|
||||||
BInputServerDevice::InitCheck(void)
|
|
||||||
BInputServerDevice::~BInputServerDevice(void)
|
|
||||||
BInputServerDevice::BInputServerDevice(void)
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
BInputServerFilter::_ReservedInputServerFilter4(void)
|
|
||||||
BInputServerFilter::_ReservedInputServerFilter3(void)
|
|
||||||
BInputServerFilter::_ReservedInputServerFilter2(void)
|
|
||||||
BInputServerFilter::_ReservedInputServerFilter1(void)
|
|
||||||
BInputServerFilter::GetScreenRegion(BRegion
|
|
||||||
BInputServerFilter::Filter(BMessage
|
|
||||||
BInputServerFilter::InitCheck(void)
|
|
||||||
BInputServerFilter::~BInputServerFilter(void)
|
|
||||||
BInputServerFilter::BInputServerFilter(void)
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
BInputServerMethod::_ReservedInputServerMethod4(void)
|
|
||||||
BInputServerMethod::_ReservedInputServerMethod3(void)
|
|
||||||
BInputServerMethod::_ReservedInputServerMethod2(void)
|
|
||||||
BInputServerMethod::_ReservedInputServerMethod1(void)
|
|
||||||
BInputServerMethod::SetMenu(BMenu
|
|
||||||
BInputServerMethod::SetIcon(unsigned
|
|
||||||
BInputServerMethod::SetName(char
|
|
||||||
BInputServerMethod::EnqueueMessage(BMessage
|
|
||||||
BInputServerMethod::MethodActivated(bool)
|
|
||||||
BInputServerMethod::~BInputServerMethod(void)
|
|
||||||
BInputServerMethod::BInputServerMethod(char
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
**************** BInputServerDevice Section ***************
|
|
||||||
|
|
||||||
BInputServerDevice();
|
|
||||||
virtual ~BInputServerDevice();
|
|
||||||
virtual status_t InitCheck();
|
|
||||||
virtual status_t SystemShuttingDown();
|
|
||||||
virtual status_t Start(const char *device, void *cookie);
|
|
||||||
virtual status_t Stop(const char *device, void *cookie);
|
|
||||||
virtual status_t Control(const char *device, void *cookie, int32 code, BMessage *message);
|
|
||||||
status_t RegisterDevices(input_device_ref **devices);
|
|
||||||
status_t UnregisterDevices(input_device_ref **devices);
|
|
||||||
status_t EnqueueMessage(BMessage *message);
|
|
||||||
status_t StartMonitoringDevice(const char *device);
|
|
||||||
status_t StopMonitoringDevice(const char *device);
|
|
||||||
|
|
||||||
**************** BInputServerFilter Section *****************
|
|
||||||
|
|
||||||
BInputServerFilter();
|
|
||||||
virtual ~BInputServerFilter();
|
|
||||||
virtual status_t InitCheck();
|
|
||||||
virtual filter_result Filter(BMessage *message, BList *outList);
|
|
||||||
status_t GetScreenRegion(BRegion *region) const;
|
|
||||||
|
|
||||||
***************** BInputServerMethod Section *****************
|
|
||||||
|
|
||||||
BInputServerMethod(const char *name, const uchar *icon);
|
|
||||||
virtual ~BInputServerMethod();
|
|
||||||
virtual status_t MethodActivated(bool active);
|
|
||||||
status_t EnqueueMessage(BMessage *message);
|
|
||||||
status_t SetName(const char *name);
|
|
||||||
status_t SetIcon(const uchar *icon);
|
|
||||||
status_t SetMenu(const BMenu *menu, const BMessenger target);
|
|
||||||
@@ -1,51 +0,0 @@
|
|||||||
Function Specifications
|
|
||||||
|
|
||||||
|
|
||||||
Public BInputServerDevice class interface:
|
|
||||||
|
|
||||||
BInputServerDevice();
|
|
||||||
virtual ~BInputServerDevice();
|
|
||||||
|
|
||||||
virtual status_t InitCheck();
|
|
||||||
virtual status_t SystemShuttingDown();
|
|
||||||
|
|
||||||
virtual status_t Start(const char *device, void *cookie);
|
|
||||||
virtual status_t Stop(const char *device, void *cookie);
|
|
||||||
virtual status_t Control(const char *device, void *cookie, uint32 code, BMessage *message);
|
|
||||||
|
|
||||||
status_t RegisterDevices(input_device_ref **devices);
|
|
||||||
status_t UnregisterDevices(input_device_ref **devices);
|
|
||||||
|
|
||||||
status_t EnqueueMessage(BMessage *message);
|
|
||||||
|
|
||||||
status_t StartMonitoringDevice(const char *device);
|
|
||||||
status_t StopMonitoringDevice(const char *device);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
Public BInputServerFilter class interface:
|
|
||||||
|
|
||||||
BInputServerFilter();
|
|
||||||
virtual ~BInputServerFilter();
|
|
||||||
|
|
||||||
virtual status_t InitCheck();
|
|
||||||
|
|
||||||
virtual filter_result Filter(BMessage *message, BList *outList);
|
|
||||||
|
|
||||||
status_t GetScreenRegion(BRegion *region) const;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
Public BInputServerMethod class interface:
|
|
||||||
|
|
||||||
BInputServerMethod(const char *name, const uchar *icon);
|
|
||||||
virtual ~BInputServerMethod();
|
|
||||||
|
|
||||||
virtual status_t MethodActivated(bool active);
|
|
||||||
|
|
||||||
status_t EnqueueMessage(BMessage *message);
|
|
||||||
|
|
||||||
status_t SetName(const char *name);
|
|
||||||
status_t SetIcon(const uchar *icon);
|
|
||||||
status_t SetMenu(const BMenu *menu, const BMessenger target);
|
|
||||||
}
|
|
||||||
@@ -1,66 +0,0 @@
|
|||||||
class InputServer
|
|
||||||
{
|
|
||||||
InputServer(void);
|
|
||||||
~InputServer(void);
|
|
||||||
|
|
||||||
ArgvReceived(long, char**);
|
|
||||||
|
|
||||||
InitKeyboardMouseStates(void)
|
|
||||||
InitFilters(void)
|
|
||||||
InitMethods(void)
|
|
||||||
|
|
||||||
QuitRequested(void)
|
|
||||||
ReadyToRun(void)
|
|
||||||
MessageReceived(BMessage*);
|
|
||||||
|
|
||||||
HandleSetMethod(BMessage*);
|
|
||||||
HandleGetSetMouseType(BMessage*, BMessage*);
|
|
||||||
HandleGetSetMouseAcceleration(BMessage*, BMessage*);
|
|
||||||
HandleGetSetKeyRepeatDelay(BMessage*, BMessage*);
|
|
||||||
HandleGetKeyInfo(BMessage*, BMessage*);
|
|
||||||
HandleGetModifiers(BMessage*, BMessage*);
|
|
||||||
HandleSetModifierKey(BMessage*, BMessage*);
|
|
||||||
HandleSetKeyboardLocks(BMessage*, BMessage*);
|
|
||||||
HandleGetSetMouseSpeed(BMessage*, BMessage*);
|
|
||||||
HandleSetMousePosition(BMessage*, BMessage*);
|
|
||||||
HandleGetSetMouseMap(BMessage*, BMessage*);
|
|
||||||
HandleGetKeyboardID(BMessage*, BMessage*);
|
|
||||||
HandleGetSetClickSpeed(BMessage*, BMessage*);
|
|
||||||
HandleGetSetKeyRepeatRate(BMessage*, BMessage*);
|
|
||||||
HandleGetSetKeyMap(BMessage*, BMessage*);
|
|
||||||
HandleFocusUnfocusIMAwareView(BMessage*, BMessage*);
|
|
||||||
|
|
||||||
EnqueueDeviceMessage(BMessage*);
|
|
||||||
EnqueueMethodMessage(BMessage*);
|
|
||||||
UnlockMethodQueue(void);
|
|
||||||
LockMethodQueue(void);
|
|
||||||
SetNextMethod(bool);
|
|
||||||
SetActiveMethod(_BMethodAddOn_*);
|
|
||||||
MethodReplicant(void);
|
|
||||||
|
|
||||||
EventLoop(void*);
|
|
||||||
EventLoopRunning(void);
|
|
||||||
|
|
||||||
DispatchEvents(BList*);
|
|
||||||
CacheEvents(BList*);
|
|
||||||
GetNextEvents(BList*);
|
|
||||||
FilterEvents(BList*);
|
|
||||||
SanitizeEvents(BList*);
|
|
||||||
MethodizeEvents(BList*, bool);
|
|
||||||
|
|
||||||
StartStopDevices(char const*, input_device_type, bool); // device's name, type, 0 or 1 for start or stop)
|
|
||||||
ControlDevices(char const*, input_device_type, unsigned long, BMessage*);
|
|
||||||
|
|
||||||
DoMouseAcceleration(long*, long*);
|
|
||||||
SetMousePos(long*, long*, long, long);
|
|
||||||
SetMousePos(long*, long*, BPoint);
|
|
||||||
SetMousePos(long*, long*, float, float);
|
|
||||||
|
|
||||||
SafeMode(void)
|
|
||||||
|
|
||||||
private:
|
|
||||||
sEventLoopRunning
|
|
||||||
sSafeMode
|
|
||||||
fMouseState
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,100 +0,0 @@
|
|||||||
000124f0 T InputServer::InputServer(void)
|
|
||||||
0001277c T InputServer::MessageReceived(BMessage *)
|
|
||||||
00012e64 T InputServer::QuitRequested(void)
|
|
||||||
0001306c T InputServer::InitKeyboardMouseStates(void)
|
|
||||||
00013360 T InputServer::InitMethods(void)
|
|
||||||
00013460 T InputServer::GetNextEvents(BList *)
|
|
||||||
000135e8 T InputServer::DoMouseAcceleration(long *, long *)
|
|
||||||
00013794 T InputServer::SanitizeEvents(BList *)
|
|
||||||
00013ce0 T InputServer::MethodizeEvents(BList *, bool)
|
|
||||||
00013ecc T InputServer::FilterEvents(BList *)
|
|
||||||
000140dc T InputServer::CacheEvents(BList *)
|
|
||||||
000144d0 T InputServer::DispatchEvents(BList *)
|
|
||||||
00014800 T InputServer::HandleSetKeyboardLocks(BMessage *, BMessage *)
|
|
||||||
000148e0 T InputServer::HandleSetModifierKey(BMessage *, BMessage *)
|
|
||||||
00014ad0 T InputServer::HandleGetSetKeyMap(BMessage *, BMessage *)
|
|
||||||
00014c3c T InputServer::HandleGetSetKeyRepeatDelay(BMessage *, BMessage *)
|
|
||||||
00014d4c T InputServer::HandleGetSetKeyRepeatRate(BMessage *, BMessage *)
|
|
||||||
00014e5c T InputServer::HandleGetSetMouseMap(BMessage *, BMessage *)
|
|
||||||
00014f9c T InputServer::HandleGetSetMouseType(BMessage *, BMessage *)
|
|
||||||
000150ac T InputServer::HandleGetSetMouseSpeed(BMessage *, BMessage *)
|
|
||||||
000151bc T InputServer::HandleGetSetMouseAcceleration(BMessage *, BMessage *)
|
|
||||||
000152cc T InputServer::HandleGetSetClickSpeed(BMessage *, BMessage *)
|
|
||||||
000153dc T InputServer::HandleSetMousePosition(BMessage *, BMessage *)
|
|
||||||
00015534 T InputServer::HandleFocusUnfocusIMAwareView(BMessage *, BMessage *)
|
|
||||||
00015690 T InputServer::HandleSetMethod(BMessage *)
|
|
||||||
000157f8 T InputServer::EventLoop(void *)
|
|
||||||
00015b1c T InputServer::UnlockMethodQueue(void)
|
|
||||||
00015b5c T InputServer::LockMethodQueue(void)
|
|
||||||
00015ba4 T InputServer::HandleGetModifiers(BMessage *, BMessage *)
|
|
||||||
00015bec T InputServer::HandleGetKeyInfo(BMessage *, BMessage *)
|
|
||||||
00015c40 T InputServer::HandleGetKeyboardID(BMessage *, BMessage *)
|
|
||||||
00015c88 T InputServer::SetActiveMethod(_BMethodAddOn_ *)
|
|
||||||
00015d8c T InputServer::SetNextMethod(bool)
|
|
||||||
00015e04 T InputServer::SetMousePos(long *, long *, float, float)
|
|
||||||
00015ec4 T InputServer::SetMousePos(long *, long *, long, long)
|
|
||||||
00015f14 T InputServer::SetMousePos(long *, long *, BPoint)
|
|
||||||
00015fc8 T InputServer::InitFilters(void)
|
|
||||||
00016008 T InputServer::EventLoopRunning(void)
|
|
||||||
00016028 T InputServer::SafeMode(void)
|
|
||||||
00016048 T InputServer::ControlDevices(char const *, input_device_type, unsigned long, BMessage *)
|
|
||||||
0001612c T InputServer::StartStopDevices(char const *, input_device_type, bool)
|
|
||||||
000161fc T InputServer::MethodReplicant(void) const
|
|
||||||
0001620c T InputServer::EnqueueMethodMessage(BMessage *)
|
|
||||||
000162ec T InputServer::EnqueueDeviceMessage(BMessage *)
|
|
||||||
0001631c T InputServer::ReadyToRun(void)
|
|
||||||
00016344 T InputServer::ArgvReceived(long, char **)
|
|
||||||
0001647c T BInputServerDevice::_ReservedInputServerDevice4(void)
|
|
||||||
00016484 T BInputServerDevice::_ReservedInputServerDevice3(void)
|
|
||||||
0001648c T BInputServerDevice::_ReservedInputServerDevice2(void)
|
|
||||||
00016494 T BInputServerDevice::_ReservedInputServerDevice1(void)
|
|
||||||
0001649c T BInputServerDevice::StopMonitoringDevice(char const *)
|
|
||||||
000164cc T BInputServerDevice::StartMonitoringDevice(char const *)
|
|
||||||
000164fc T BInputServerDevice::EnqueueMessage(BMessage *)
|
|
||||||
00016528 T BInputServerDevice::UnregisterDevices(input_device_ref **)
|
|
||||||
00016550 T BInputServerDevice::RegisterDevices(input_device_ref **)
|
|
||||||
00016578 T BInputServerDevice::Control(char const *, void *, unsigned long, BMessage *)
|
|
||||||
00016584 T BInputServerDevice::Stop(char const *, void *)
|
|
||||||
00016590 T BInputServerDevice::Start(char const *, void *)
|
|
||||||
0001659c T BInputServerDevice::SystemShuttingDown(void)
|
|
||||||
000165a8 T BInputServerDevice::InitCheck(void)
|
|
||||||
000165b4 T BInputServerDevice::~BInputServerDevice(void)
|
|
||||||
000165e4 T BInputServerDevice::BInputServerDevice(void)
|
|
||||||
00016614 T BInputServerFilter::_ReservedInputServerFilter4(void)
|
|
||||||
0001661c T BInputServerFilter::_ReservedInputServerFilter3(void)
|
|
||||||
00016624 T BInputServerFilter::_ReservedInputServerFilter2(void)
|
|
||||||
0001662c T BInputServerFilter::_ReservedInputServerFilter1(void)
|
|
||||||
00016634 T BInputServerFilter::GetScreenRegion(BRegion *) const
|
|
||||||
00016698 T BInputServerFilter::Filter(BMessage *, BList *)
|
|
||||||
000166a4 T BInputServerFilter::InitCheck(void)
|
|
||||||
000166b0 T BInputServerFilter::~BInputServerFilter(void)
|
|
||||||
000166e0 T BInputServerFilter::BInputServerFilter(void)
|
|
||||||
00016710 T BInputServerMethod::_ReservedInputServerMethod4(void)
|
|
||||||
00016718 T BInputServerMethod::_ReservedInputServerMethod3(void)
|
|
||||||
00016720 T BInputServerMethod::_ReservedInputServerMethod2(void)
|
|
||||||
00016728 T BInputServerMethod::_ReservedInputServerMethod1(void)
|
|
||||||
00016730 T BInputServerMethod::SetMenu(BMenu const *, BMessenger)
|
|
||||||
000167ac T BInputServerMethod::SetIcon(unsigned char const *)
|
|
||||||
000167d4 T BInputServerMethod::SetName(char const *)
|
|
||||||
000167fc T BInputServerMethod::EnqueueMessage(BMessage *)
|
|
||||||
00016828 T BInputServerMethod::MethodActivated(bool)
|
|
||||||
00016834 T BInputServerMethod::~BInputServerMethod(void)
|
|
||||||
00016864 T BInputServerMethod::BInputServerMethod(char const *, unsigned char const *)
|
|
||||||
00018834 T MethodReplicant::SendToInputServer(BMessage *)
|
|
||||||
00019d98 W InputServer type_info function
|
|
||||||
00019ddc W InputServer::~InputServer(void)
|
|
||||||
00019e68 W BInputServerDevice type_info function
|
|
||||||
00019ea0 W BInputServerFilter type_info function
|
|
||||||
00019ed8 W BInputServerMethod type_info function
|
|
||||||
0001b000 R kInputServerSignature
|
|
||||||
0001cd34 D InputServer::sSafeMode
|
|
||||||
0001cd35 D InputServer::sEventLoopRunning
|
|
||||||
0001fb60 W InputServer virtual table
|
|
||||||
0001fce0 W BInputServerDevice virtual table
|
|
||||||
0001fd40 W BInputServerFilter virtual table
|
|
||||||
0001fd80 W BInputServerMethod virtual table
|
|
||||||
00024580 B InputServer::fMouseState
|
|
||||||
000245c0 B InputServer type_info node
|
|
||||||
000245ec B BInputServerMethod type_info node
|
|
||||||
00024620 B BInputServerFilter type_info node
|
|
||||||
00024728 B BInputServerDevice type_info node
|
|
||||||
@@ -1,100 +0,0 @@
|
|||||||
InputServer::InputServer(void)
|
|
||||||
InputServer::MessageReceived(BMessage
|
|
||||||
InputServer::QuitRequested(void)
|
|
||||||
InputServer::InitKeyboardMouseStates(void)
|
|
||||||
InputServer::InitMethods(void)
|
|
||||||
InputServer::GetNextEvents(BList
|
|
||||||
InputServer::DoMouseAcceleration(long
|
|
||||||
InputServer::SanitizeEvents(BList
|
|
||||||
InputServer::MethodizeEvents(BList
|
|
||||||
InputServer::FilterEvents(BList
|
|
||||||
InputServer::CacheEvents(BList
|
|
||||||
InputServer::DispatchEvents(BList
|
|
||||||
InputServer::HandleSetKeyboardLocks(BMessage
|
|
||||||
InputServer::HandleSetModifierKey(BMessage
|
|
||||||
InputServer::HandleGetSetKeyMap(BMessage
|
|
||||||
InputServer::HandleGetSetKeyRepeatDelay(BMessage
|
|
||||||
InputServer::HandleGetSetKeyRepeatRate(BMessage
|
|
||||||
InputServer::HandleGetSetMouseMap(BMessage
|
|
||||||
InputServer::HandleGetSetMouseType(BMessage
|
|
||||||
InputServer::HandleGetSetMouseSpeed(BMessage
|
|
||||||
InputServer::HandleGetSetMouseAcceleration(BMessage
|
|
||||||
InputServer::HandleGetSetClickSpeed(BMessage
|
|
||||||
InputServer::HandleSetMousePosition(BMessage
|
|
||||||
InputServer::HandleFocusUnfocusIMAwareView(BMessage
|
|
||||||
InputServer::HandleSetMethod(BMessage
|
|
||||||
InputServer::EventLoop(void
|
|
||||||
InputServer::UnlockMethodQueue(void)
|
|
||||||
InputServer::LockMethodQueue(void)
|
|
||||||
InputServer::HandleGetModifiers(BMessage
|
|
||||||
InputServer::HandleGetKeyInfo(BMessage
|
|
||||||
InputServer::HandleGetKeyboardID(BMessage
|
|
||||||
InputServer::SetActiveMethod(_BMethodAddOn_
|
|
||||||
InputServer::SetNextMethod(bool)
|
|
||||||
InputServer::SetMousePos(long
|
|
||||||
InputServer::SetMousePos(long
|
|
||||||
InputServer::SetMousePos(long
|
|
||||||
InputServer::InitFilters(void)
|
|
||||||
InputServer::EventLoopRunning(void)
|
|
||||||
InputServer::SafeMode(void)
|
|
||||||
InputServer::ControlDevices(char
|
|
||||||
InputServer::StartStopDevices(char
|
|
||||||
InputServer::MethodReplicant(void)
|
|
||||||
InputServer::EnqueueMethodMessage(BMessage
|
|
||||||
InputServer::EnqueueDeviceMessage(BMessage
|
|
||||||
InputServer::ReadyToRun(void)
|
|
||||||
InputServer::ArgvReceived(long,
|
|
||||||
BInputServerDevice::_ReservedInputServerDevice4(void)
|
|
||||||
BInputServerDevice::_ReservedInputServerDevice3(void)
|
|
||||||
BInputServerDevice::_ReservedInputServerDevice2(void)
|
|
||||||
BInputServerDevice::_ReservedInputServerDevice1(void)
|
|
||||||
BInputServerDevice::StopMonitoringDevice(char
|
|
||||||
BInputServerDevice::StartMonitoringDevice(char
|
|
||||||
BInputServerDevice::EnqueueMessage(BMessage
|
|
||||||
BInputServerDevice::UnregisterDevices(input_device_ref
|
|
||||||
BInputServerDevice::RegisterDevices(input_device_ref
|
|
||||||
BInputServerDevice::Control(char
|
|
||||||
BInputServerDevice::Stop(char
|
|
||||||
BInputServerDevice::Start(char
|
|
||||||
BInputServerDevice::SystemShuttingDown(void)
|
|
||||||
BInputServerDevice::InitCheck(void)
|
|
||||||
BInputServerDevice::~BInputServerDevice(void)
|
|
||||||
BInputServerDevice::BInputServerDevice(void)
|
|
||||||
BInputServerFilter::_ReservedInputServerFilter4(void)
|
|
||||||
BInputServerFilter::_ReservedInputServerFilter3(void)
|
|
||||||
BInputServerFilter::_ReservedInputServerFilter2(void)
|
|
||||||
BInputServerFilter::_ReservedInputServerFilter1(void)
|
|
||||||
BInputServerFilter::GetScreenRegion(BRegion
|
|
||||||
BInputServerFilter::Filter(BMessage
|
|
||||||
BInputServerFilter::InitCheck(void)
|
|
||||||
BInputServerFilter::~BInputServerFilter(void)
|
|
||||||
BInputServerFilter::BInputServerFilter(void)
|
|
||||||
BInputServerMethod::_ReservedInputServerMethod4(void)
|
|
||||||
BInputServerMethod::_ReservedInputServerMethod3(void)
|
|
||||||
BInputServerMethod::_ReservedInputServerMethod2(void)
|
|
||||||
BInputServerMethod::_ReservedInputServerMethod1(void)
|
|
||||||
BInputServerMethod::SetMenu(BMenu
|
|
||||||
BInputServerMethod::SetIcon(unsigned
|
|
||||||
BInputServerMethod::SetName(char
|
|
||||||
BInputServerMethod::EnqueueMessage(BMessage
|
|
||||||
BInputServerMethod::MethodActivated(bool)
|
|
||||||
BInputServerMethod::~BInputServerMethod(void)
|
|
||||||
BInputServerMethod::BInputServerMethod(char
|
|
||||||
MethodReplicant::SendToInputServer(BMessage
|
|
||||||
InputServer
|
|
||||||
InputServer::~InputServer(void)
|
|
||||||
BInputServerDevice
|
|
||||||
BInputServerFilter
|
|
||||||
BInputServerMethod
|
|
||||||
kInputServerSignature
|
|
||||||
InputServer::sSafeMode
|
|
||||||
InputServer::sEventLoopRunning
|
|
||||||
InputServer
|
|
||||||
BInputServerDevice
|
|
||||||
BInputServerFilter
|
|
||||||
BInputServerMethod
|
|
||||||
InputServer::fMouseState
|
|
||||||
InputServer
|
|
||||||
BInputServerMethod
|
|
||||||
BInputServerFilter
|
|
||||||
BInputServerDevice
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
MethodReplicant::SendToInputServer(BMessage
|
|
||||||
InputServer
|
|
||||||
InputServer::~InputServer(void)
|
|
||||||
BInputServerDevice
|
|
||||||
BInputServerFilter
|
|
||||||
BInputServerMethod
|
|
||||||
kInputServerSignature
|
|
||||||
InputServer::sSafeMode
|
|
||||||
InputServer::sEventLoopRunning
|
|
||||||
InputServer
|
|
||||||
BInputServerDevice
|
|
||||||
BInputServerFilter
|
|
||||||
BInputServerMethod
|
|
||||||
InputServer::fMouseState
|
|
||||||
InputServer
|
|
||||||
BInputServerMethod
|
|
||||||
BInputServerFilter
|
|
||||||
BInputServerDevice
|
|
||||||
Reference in New Issue
Block a user