X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Ftreeviewtouch.h;h=c9c0c5afc42a0730158e5b9e86ca9da50ea72f2b;hp=d7f9f1bc0332c4f25b3e6a9dd51d19aca0e4807c;hb=c27d5bfbe80bfeb583a25404f4ccee4b70b010e0;hpb=d57c91811b8f989bcaa4d5a238c65e9ffcc3b1d4 diff --git a/src/uisupport/treeviewtouch.h b/src/uisupport/treeviewtouch.h index d7f9f1bc..c9c0c5af 100644 --- a/src/uisupport/treeviewtouch.h +++ b/src/uisupport/treeviewtouch.h @@ -1,32 +1,31 @@ /*************************************************************************** -* 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 + /** * This class handles Touch Events for TreeViews */ -class TreeViewTouch : - public QTreeView +class TreeViewTouch : public QTreeView { Q_OBJECT @@ -41,7 +40,7 @@ protected: * @param[in,out] an event * @returns true if event got handled, false if event got ignored */ - virtual bool event(QEvent *event); + bool event(QEvent *event) override; /** * Handles Mouse Move Events @@ -50,7 +49,7 @@ protected: * * @param[in,out] An Event */ - virtual void mouseMoveEvent(QMouseEvent *event); + void mouseMoveEvent(QMouseEvent *event) override; /** * Handles Mouse Press Events @@ -59,11 +58,9 @@ protected: * * @param[in,out] An Event */ - virtual void mousePressEvent(QMouseEvent *event); + void mousePressEvent(QMouseEvent *event) override; private: bool _touchScrollInProgress = false; bool _firstTouchUpdateHappened = false; }; - -#endif \ No newline at end of file