nheko/include/QuickSwitcher.h

80 lines
2.2 KiB
C
Raw Normal View History

2017-08-15 20:06:27 +02:00
/*
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr>
*
* 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/>.
*/
#pragma once
#include <QAbstractItemView>
2017-08-15 20:06:27 +02:00
#include <QKeyEvent>
#include <QVBoxLayout>
#include <QWidget>
2017-08-15 20:06:27 +02:00
2018-04-27 00:57:46 +02:00
#include "SuggestionsPopup.hpp"
2017-08-15 20:06:27 +02:00
#include "TextField.h"
2018-04-27 00:57:46 +02:00
Q_DECLARE_METATYPE(std::vector<RoomSearchResult>)
2017-08-15 20:06:27 +02:00
class RoomSearchInput : public TextField
{
2017-09-10 11:59:21 +02:00
Q_OBJECT
2017-08-15 20:06:27 +02:00
public:
2017-09-10 11:59:21 +02:00
explicit RoomSearchInput(QWidget *parent = nullptr);
2017-08-15 20:06:27 +02:00
signals:
2017-09-10 11:59:21 +02:00
void selectNextCompletion();
void selectPreviousCompletion();
void hiding();
2017-08-15 20:06:27 +02:00
protected:
2017-09-10 11:59:21 +02:00
void keyPressEvent(QKeyEvent *event) override;
void hideEvent(QHideEvent *event) override;
2018-04-27 00:57:46 +02:00
bool focusNextPrevChild(bool) override { return false; };
2017-08-15 20:06:27 +02:00
};
class QuickSwitcher : public QWidget
2017-08-15 20:06:27 +02:00
{
2017-09-10 11:59:21 +02:00
Q_OBJECT
2017-08-15 20:06:27 +02:00
2018-04-27 00:57:46 +02:00
public:
2018-05-08 19:30:09 +02:00
QuickSwitcher(QWidget *parent = nullptr);
2017-08-15 20:06:27 +02:00
signals:
2017-09-10 11:59:21 +02:00
void closing();
void roomSelected(const QString &roomid);
2018-04-27 00:57:46 +02:00
void queryResults(const std::vector<RoomSearchResult> &rooms);
2017-08-15 20:06:27 +02:00
protected:
2017-09-10 11:59:21 +02:00
void keyPressEvent(QKeyEvent *event) override;
void showEvent(QShowEvent *) override { roomSearch_->setFocus(); }
void paintEvent(QPaintEvent *event) override;
2017-08-15 20:06:27 +02:00
private:
2018-04-27 13:04:13 +02:00
void reset()
{
emit closing();
roomSearch_->clear();
}
2017-09-10 11:59:21 +02:00
// Current highlighted selection from the completer.
int selection_ = -1;
2017-09-10 11:59:21 +02:00
QVBoxLayout *topLayout_;
RoomSearchInput *roomSearch_;
2017-08-15 20:06:27 +02:00
2018-04-27 00:57:46 +02:00
//! Autocomplete popup box with the room suggestions.
SuggestionsPopup popup_;
2017-08-15 20:06:27 +02:00
};