Files
qt-creator/src/plugins/coreplugin/findplaceholder.h

42 lines
1.0 KiB
C
Raw Normal View History

// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
2008-12-02 14:09:21 +01:00
#pragma once
2008-12-02 12:01:29 +01:00
#include "core_global.h"
#include <QPointer>
#include <QWidget>
2008-12-02 12:01:29 +01:00
namespace Core {
namespace Internal { class FindToolBar; }
2008-12-02 12:01:29 +01:00
class CORE_EXPORT FindToolBarPlaceHolder : public QWidget
{
Q_OBJECT
public:
explicit FindToolBarPlaceHolder(QWidget *owner, QWidget *parent = nullptr);
~FindToolBarPlaceHolder() override;
static const QList<FindToolBarPlaceHolder *> allFindToolbarPlaceHolders();
QWidget *owner() const;
bool isUsedByWidget(QWidget *widget);
void setWidget(Internal::FindToolBar *widget);
2008-12-02 12:01:29 +01:00
static FindToolBarPlaceHolder *getCurrent();
static void setCurrent(FindToolBarPlaceHolder *placeHolder);
void setLightColored(bool lightColored);
bool isLightColored() const;
2008-12-02 12:01:29 +01:00
private:
QWidget *m_owner;
QPointer<Internal::FindToolBar> m_subWidget;
bool m_lightColored = false;
2008-12-02 12:01:29 +01:00
static FindToolBarPlaceHolder *m_current;
};
} // namespace Core