X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Ftreeviewtouch.h;h=e2373be7badf0eb28fe4bff42aae54f4a3721f7d;hp=d7f9f1bc0332c4f25b3e6a9dd51d19aca0e4807c;hb=03ee70025a98912c163155955fe3cc3045f629b9;hpb=d57c91811b8f989bcaa4d5a238c65e9ffcc3b1d4 diff --git a/src/uisupport/treeviewtouch.h b/src/uisupport/treeviewtouch.h index d7f9f1bc..e2373be7 100644 --- a/src/uisupport/treeviewtouch.h +++ b/src/uisupport/treeviewtouch.h @@ -1,69 +1,67 @@ /*************************************************************************** -* Copyright (C) 2005-2015 by the Quassel Project * -* devel@quassel-irc.org * -* * -* 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) version 3. * -* * -* 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, write to the * -* Free Software Foundation, Inc., * -* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * -***************************************************************************/ + * Copyright (C) 2005-2018 by the Quassel Project * + * devel@quassel-irc.org * + * * + * 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) version 3. * + * * + * 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, write to the * + * Free Software Foundation, Inc., * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + ***************************************************************************/ -#ifndef TREEVIEWTOUCH_H_ -#define TREEVIEWTOUCH_H_ +#pragma once + +#include "uisupport-export.h" #include + /** -* This class handles Touch Events for TreeViews -*/ -class TreeViewTouch : - public QTreeView + * This class handles Touch Events for TreeViews + */ +class UISUPPORT_EXPORT TreeViewTouch : public QTreeView { Q_OBJECT public: - explicit TreeViewTouch(QWidget *parent = 0); + explicit TreeViewTouch(QWidget* parent = nullptr); protected: - /** - * Handles Events - * - * @param[in,out] an event - * @returns true if event got handled, false if event got ignored - */ - virtual bool event(QEvent *event); + * Handles Events + * + * @param[in,out] an event + * @returns true if event got handled, false if event got ignored + */ + bool event(QEvent* event) override; /** - * Handles Mouse Move Events - * - * Suppresses Events during Touch-Scroll - * - * @param[in,out] An Event - */ - virtual void mouseMoveEvent(QMouseEvent *event); + * Handles Mouse Move Events + * + * Suppresses Events during Touch-Scroll + * + * @param[in,out] An Event + */ + void mouseMoveEvent(QMouseEvent* event) override; /** - * Handles Mouse Press Events - * - * Suppresses Events during Touch-Scroll - * - * @param[in,out] An Event - */ - virtual void mousePressEvent(QMouseEvent *event); + * Handles Mouse Press Events + * + * Suppresses Events during Touch-Scroll + * + * @param[in,out] An Event + */ + void mousePressEvent(QMouseEvent* event) override; private: bool _touchScrollInProgress = false; bool _firstTouchUpdateHappened = false; }; - -#endif \ No newline at end of file