Files
RedBear-OS/local/recipes/kde/kf6-kwidgetsaddons/source/src/ktoolbarspaceraction.h
T
2026-04-14 10:51:06 +01:00

53 lines
1.2 KiB
C++

/*
This file is part of the KDE libraries
SPDX-FileCopyrightText: 2006 Hamish Rodda <rodda@kde.org>
SPDX-License-Identifier: LGPL-2.0-only
*/
#ifndef KTOOLBARSPACERACTION_H
#define KTOOLBARSPACERACTION_H
#include <QWidgetAction>
#include <memory>
#include <kwidgetsaddons_export.h>
class QWidget;
/**
* @class KToolBarSpacerAction ktoolbarspaceraction.h KToolBarSpacerAction
*
* An extension to QAction which allows for adding a spacer item into a
* QToolBar / KToolBar.
*
* This is useful if you want to align at the right (or left if RTL) and
* need something that pushes the element to the end of the tool bar.
*
* @author Hamish Rodda <rodda@kde.org>
*/
class KWIDGETSADDONS_EXPORT KToolBarSpacerAction : public QWidgetAction
{
Q_OBJECT
public:
/**
* Creates a new toolbar spacer action.
*
* @param parent The action's parent object.
*/
explicit KToolBarSpacerAction(QObject *parent);
~KToolBarSpacerAction() override;
/**
* Reimplemented from QWidgetAction.
*/
QWidget *createWidget(QWidget *parent) override;
private:
std::unique_ptr<class KToolBarSpacerActionPrivate> const d;
};
#endif