]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/dolphintabbar.h
Add a SetFolderIcon ItemAction plugin
[dolphin.git] / src / dolphintabbar.h
index 02270d0fce9ff4061f005ca0ced4d058d3f162d2..1210b974e3be5ecbffb8b56814b31b12316cf876 100644 (file)
@@ -1,21 +1,8 @@
-/***************************************************************************
- * Copyright (C) 2014 by Emmanuel Pescosta <emmanuelpescosta099@gmail.com> *
- *                                                                         *
- *   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) 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, write to the                         *
- *   Free Software Foundation, Inc.,                                       *
- *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA            *
- ***************************************************************************/
+/*
+ * SPDX-FileCopyrightText: 2014 Emmanuel Pescosta <emmanuelpescosta099@gmail.com>
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
 
 #ifndef DOLPHIN_TAB_BAR_H
 #define DOLPHIN_TAB_BAR_H
@@ -27,28 +14,30 @@ class DolphinTabBar : public QTabBar
     Q_OBJECT
 
 public:
-    explicit DolphinTabBar(QWidgetparent);
+    explicit DolphinTabBar(QWidget *parent);
 
-signals:
+Q_SIGNALS:
     void openNewActivatedTab(int index);
-    void tabDropEvent(int index, QDropEvent* event);
+    void tabDragMoveEvent(int index, QDragMoveEvent *event);
+    void tabDropEvent(int index, QDropEvent *event);
     void tabDetachRequested(int index);
+    void tabRenamed(int index, const QString &label);
 
 protected:
-    void dragEnterEvent(QDragEnterEventevent) override;
-    void dragLeaveEvent(QDragLeaveEventevent) override;
-    void dragMoveEvent(QDragMoveEventevent) override;
-    void dropEvent(QDropEventevent) override;
-    void mousePressEvent(QMouseEventevent) override;
-    void mouseReleaseEvent(QMouseEventevent) override;
-    void mouseDoubleClickEvent(QMouseEventevent) override;
+    void dragEnterEvent(QDragEnterEvent *event) override;
+    void dragLeaveEvent(QDragLeaveEvent *event) override;
+    void dragMoveEvent(QDragMoveEvent *event) override;
+    void dropEvent(QDropEvent *event) override;
+    void mousePressEvent(QMouseEvent *event) override;
+    void mouseReleaseEvent(QMouseEvent *event) override;
+    void mouseDoubleClickEvent(QMouseEvent *event) override;
 
     /**
      * Opens a context menu for the tab on the \a event position.
      */
-    void contextMenuEvent(QContextMenuEventevent) override;
+    void contextMenuEvent(QContextMenuEvent *event) override;
 
-private slots:
+private Q_SLOTS:
     void slotAutoActivationTimeout();
 
 private:
@@ -59,7 +48,7 @@ private:
     void updateAutoActivationTimer(const int index);
 
 private:
-    QTimerm_autoActivationTimer;
+    QTimer *m_autoActivationTimer;
     int m_autoActivationIndex;
     int m_tabToBeClosedOnMiddleMouseButtonRelease;
 };