1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- /******************************************************************************
- Copyright (C) 2014-2015 by Ruwen Hahn <[email protected]>
- 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 2 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/>.
- ******************************************************************************/
- #pragma once
- #include "OBSHotkeyEdit.hpp"
- #include <QPointer>
- #include <QPushButton>
- #include <QVBoxLayout>
- #include <QWidget>
- class OBSBasicSettings;
- class OBSHotkeyLabel;
- class OBSHotkeyWidget : public QWidget {
- Q_OBJECT;
- public:
- OBSHotkeyWidget(QWidget *parent, obs_hotkey_id id, std::string name, OBSBasicSettings *settings,
- const std::vector<obs_key_combination_t> &combos = {})
- : QWidget(parent),
- id(id),
- name(name),
- bindingsChanged(obs_get_signal_handler(), "hotkey_bindings_changed",
- &OBSHotkeyWidget::BindingsChanged, this),
- settings(settings)
- {
- auto layout = new QVBoxLayout;
- layout->setSpacing(0);
- layout->setContentsMargins(0, 0, 0, 0);
- setLayout(layout);
- SetKeyCombinations(combos);
- }
- void SetKeyCombinations(const std::vector<obs_key_combination_t> &);
- obs_hotkey_id id;
- std::string name;
- bool changed = false;
- bool Changed() const;
- QPointer<OBSHotkeyLabel> label;
- std::vector<QPointer<OBSHotkeyEdit>> edits;
- QString toolTip;
- void setToolTip(const QString &toolTip_)
- {
- toolTip = toolTip_;
- for (auto &edit : edits)
- edit->setToolTip(toolTip_);
- }
- void Apply();
- void GetCombinations(std::vector<obs_key_combination_t> &) const;
- void Save();
- void Save(std::vector<obs_key_combination_t> &combinations);
- void enterEvent(QEnterEvent *event) override;
- void leaveEvent(QEvent *event) override;
- private:
- void AddEdit(obs_key_combination combo, int idx = -1);
- void RemoveEdit(size_t idx, bool signal = true);
- static void BindingsChanged(void *data, calldata_t *param);
- std::vector<QPointer<QPushButton>> removeButtons;
- std::vector<QPointer<QPushButton>> revertButtons;
- OBSSignal bindingsChanged;
- bool ignoreChangedBindings = false;
- OBSBasicSettings *settings;
- QVBoxLayout *layout() const { return dynamic_cast<QVBoxLayout *>(QWidget::layout()); }
- private slots:
- void HandleChangedBindings(obs_hotkey_id id_);
- signals:
- void KeyChanged();
- void SearchKey(obs_key_combination_t);
- };
|