X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Ftreeviewtouch.h;h=f089c9624bab04faa2accce9e3f97043b2a5ae74;hp=d7f9f1bc0332c4f25b3e6a9dd51d19aca0e4807c;hb=8f2ee00f4edef1693628d3af0bdee84d725eb754;hpb=d57c91811b8f989bcaa4d5a238c65e9ffcc3b1d4 diff --git a/src/uisupport/treeviewtouch.h b/src/uisupport/treeviewtouch.h index d7f9f1bc..f089c962 100644 --- a/src/uisupport/treeviewtouch.h +++ b/src/uisupport/treeviewtouch.h @@ -1,37 +1,38 @@ /*************************************************************************** -* 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 +class UISUPPORT_EXPORT TreeViewTouch : public QTreeView { Q_OBJECT public: - explicit TreeViewTouch(QWidget *parent = 0); + explicit TreeViewTouch(QWidget *parent = nullptr); protected: @@ -41,7 +42,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 +51,7 @@ protected: * * @param[in,out] An Event */ - virtual void mouseMoveEvent(QMouseEvent *event); + void mouseMoveEvent(QMouseEvent *event) override; /** * Handles Mouse Press Events @@ -59,11 +60,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