Q_OBJECT
public:
- explicit Panel(QWidget* parent = nullptr);
+ explicit Panel(QWidget *parent = nullptr);
~Panel() override;
/** Returns the current set URL of the active Dolphin view. */
* context menu actions. Allows an application to apply custom actions to
* the panel.
*/
- void setCustomContextMenuActions(const QList<QAction*>& actions);
- QList<QAction*> customContextMenuActions() const;
+ void setCustomContextMenuActions(const QList<QAction *> &actions);
+ QList<QAction *> customContextMenuActions() const;
QSize sizeHint() const override;
private:
QUrl m_url;
- QList<QAction*> m_customContextMenuActions;
+ QList<QAction *> m_customContextMenuActions;
};
#endif // PANEL_H