2017-05-19 03:28:15 +03: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 <QSplitter>
|
|
|
|
|
|
|
|
class Splitter : public QSplitter
|
|
|
|
{
|
2017-09-10 12:59:21 +03:00
|
|
|
Q_OBJECT
|
2017-05-19 03:28:15 +03:00
|
|
|
public:
|
2017-09-10 12:59:21 +03:00
|
|
|
explicit Splitter(QWidget *parent = nullptr);
|
2018-06-29 14:28:48 +03:00
|
|
|
~Splitter();
|
|
|
|
|
|
|
|
void restoreSizes(int fallback);
|
2017-05-19 03:28:15 +03:00
|
|
|
|
2018-07-01 22:57:14 +03:00
|
|
|
public slots:
|
|
|
|
void hideSidebar();
|
2018-07-04 00:05:05 +03:00
|
|
|
void showFullRoomList();
|
2018-07-01 22:57:14 +03:00
|
|
|
void showChatView();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void hiddenSidebar();
|
|
|
|
|
2017-05-19 03:28:15 +03:00
|
|
|
private:
|
2017-09-10 12:59:21 +03:00
|
|
|
void onSplitterMoved(int pos, int index);
|
2017-05-19 03:28:15 +03:00
|
|
|
|
2017-09-10 12:59:21 +03:00
|
|
|
int moveEventLimit_ = 50;
|
2017-05-19 03:28:15 +03:00
|
|
|
|
2017-09-10 12:59:21 +03:00
|
|
|
int leftMoveCount_ = 0;
|
|
|
|
int rightMoveCount_ = 0;
|
2017-05-19 03:28:15 +03:00
|
|
|
};
|