Add NullAction support
This commit is contained in:
parent
4117d71c9d
commit
21b7455919
|
@ -21,6 +21,7 @@ add_executable(logid
|
||||||
features/HiresScroll.cpp
|
features/HiresScroll.cpp
|
||||||
features/RemapButton.cpp
|
features/RemapButton.cpp
|
||||||
actions/Action.cpp
|
actions/Action.cpp
|
||||||
|
actions/NullAction.cpp
|
||||||
actions/KeypressAction.cpp
|
actions/KeypressAction.cpp
|
||||||
actions/ToggleHiresScroll.cpp
|
actions/ToggleHiresScroll.cpp
|
||||||
actions/ToggleSmartShift.cpp
|
actions/ToggleSmartShift.cpp
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
#include "ToggleSmartShift.h"
|
#include "ToggleSmartShift.h"
|
||||||
#include "ToggleHiresScroll.h"
|
#include "ToggleHiresScroll.h"
|
||||||
#include "GestureAction.h"
|
#include "GestureAction.h"
|
||||||
|
#include "NullAction.h"
|
||||||
|
|
||||||
using namespace logid;
|
using namespace logid;
|
||||||
using namespace logid::actions;
|
using namespace logid::actions;
|
||||||
|
@ -56,6 +57,8 @@ std::shared_ptr<Action> Action::makeAction(Device *device, libconfig::Setting
|
||||||
return std::make_shared<ToggleHiresScroll>(device);
|
return std::make_shared<ToggleHiresScroll>(device);
|
||||||
else if(type == "gestures")
|
else if(type == "gestures")
|
||||||
return std::make_shared<GestureAction>(device, setting);
|
return std::make_shared<GestureAction>(device, setting);
|
||||||
|
else if(type == "none")
|
||||||
|
return std::make_shared<NullAction>(device);
|
||||||
else
|
else
|
||||||
throw InvalidAction(type);
|
throw InvalidAction(type);
|
||||||
|
|
||||||
|
|
41
src/logid/actions/NullAction.cpp
Normal file
41
src/logid/actions/NullAction.cpp
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2019-2020 PixlOne
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
#include "NullAction.h"
|
||||||
|
#include "../Device.h"
|
||||||
|
#include "../backend/hidpp20/features/ReprogControls.h"
|
||||||
|
|
||||||
|
using namespace logid::actions;
|
||||||
|
|
||||||
|
NullAction::NullAction(Device* device) : Action(device)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void NullAction::press()
|
||||||
|
{
|
||||||
|
_pressed = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void NullAction::release()
|
||||||
|
{
|
||||||
|
_pressed = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint8_t NullAction::reprogFlags() const
|
||||||
|
{
|
||||||
|
return backend::hidpp20::ReprogControls::TemporaryDiverted;
|
||||||
|
}
|
39
src/logid/actions/NullAction.h
Normal file
39
src/logid/actions/NullAction.h
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2019-2020 PixlOne
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
#ifndef LOGID_ACTION_NULL_H
|
||||||
|
#define LOGID_ACTION_NULL_H
|
||||||
|
|
||||||
|
#include "Action.h"
|
||||||
|
|
||||||
|
namespace logid {
|
||||||
|
namespace actions
|
||||||
|
{
|
||||||
|
class NullAction : public Action
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
explicit NullAction(Device* device);
|
||||||
|
|
||||||
|
virtual void press();
|
||||||
|
virtual void release();
|
||||||
|
|
||||||
|
virtual uint8_t reprogFlags() const;
|
||||||
|
};
|
||||||
|
}}
|
||||||
|
|
||||||
|
|
||||||
|
#endif //LOGID_ACTION_NULL_H
|
Loading…
Reference in New Issue
Block a user