Fix numerous syntax and semantic errors

This commit is contained in:
Ben Anderson
2005-03-13 20:32:13 +00:00
parent 16b6515e1c
commit 9486490cbb
2 changed files with 10 additions and 11 deletions
@@ -1,10 +1,9 @@
#include "InputHandler_X11.h"
#include "global.h"
#include "InputHandler_Xlib.h"
#include "InputHandler_X11.h"
#include "RageUtil.h"
#include "RageLog.h"
#include "RageDisplay.h"
#include "archutils/Unix/X11Helper.h"
#include <X11/Xlib.h>
#include <X11/keysym.h>
@@ -110,13 +109,13 @@ static RageKeySym XSymToKeySym( int key )
return KEY_INVALID;
}
InputHandler_X11::InputHandler_Xlib()
InputHandler_X11::InputHandler_X11()
{
X11Helper::Go();
X11Helper::OpenMask(KeyPressMask); X11Helper::OpenMask(KeyReleaseMask);
}
InputHandler_X11::~InputHandler_Xlib()
InputHandler_X11::~InputHandler_X11()
{
X11Helper::CloseMask(KeyPressMask); X11Helper::CloseMask(KeyReleaseMask);
X11Helper::Stop();
@@ -129,12 +128,12 @@ void InputHandler_X11::Update(float fDeltaTime)
|| XCheckTypedEvent(X11Helper::Dpy(), KeyRelease, &event) )
{
LOG->Trace("key: sym %i, key %i, state %i",
event.xkey.keycode, XSymToKeySym(event.key.keycode),
event.key.state );
event.xkey.keycode, XSymToKeySym(event.xkey.keycode),
event.xkey.state );
DeviceInput di( DEVICE_KEYBOARD,
XSymToKeySym(event.key.keycode) );
ButtonPressed(di, event.key.state);
XSymToKeySym(event.xkey.keycode) );
ButtonPressed(di, event.xkey.state);
}
InputHandler::UpdateTimer();
@@ -171,4 +170,4 @@ void InputHandler_X11::GetDevicesAndDescriptions(
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/
*/
@@ -12,7 +12,7 @@ public:
~InputHandler_X11();
void Update(float fDeltaTime);
void GetDevicesAndDescriptions(vector<InputDevice>& vDevicesOut, vector<CString>& vDescriptionsOut);
}
};
#endif