forked from qt-creator/qt-creator
108 lines
2.1 KiB
C++
108 lines
2.1 KiB
C++
|
|
/****************************************************************************
|
||
|
|
**
|
||
|
|
** Copyright (C) 2022 The Qt Company Ltd
|
||
|
|
** All rights reserved.
|
||
|
|
** For any questions to The Qt Company, please use contact form at http://www.qt.io/contact-us
|
||
|
|
**
|
||
|
|
** This file is part of the Qt Enterprise Axivion Add-on.
|
||
|
|
**
|
||
|
|
** Licensees holding valid Qt Enterprise licenses may use this file in
|
||
|
|
** accordance with the Qt Enterprise License Agreement provided with the
|
||
|
|
** Software or, alternatively, in accordance with the terms contained in
|
||
|
|
** a written agreement between you and The Qt Company.
|
||
|
|
**
|
||
|
|
** If you have questions regarding the use of this file, please use
|
||
|
|
** contact form at http://www.qt.io/contact-us
|
||
|
|
**
|
||
|
|
****************************************************************************/
|
||
|
|
|
||
|
|
#include "axivionoutputpane.h"
|
||
|
|
|
||
|
|
#include "axiviontr.h"
|
||
|
|
|
||
|
|
#include <utils/qtcassert.h>
|
||
|
|
|
||
|
|
#include <QStackedWidget>
|
||
|
|
|
||
|
|
namespace Axivion::Internal {
|
||
|
|
|
||
|
|
AxivionOutputPane::AxivionOutputPane(QObject *parent)
|
||
|
|
: Core::IOutputPane(parent)
|
||
|
|
{
|
||
|
|
m_outputWidget = new QStackedWidget;
|
||
|
|
}
|
||
|
|
|
||
|
|
AxivionOutputPane::~AxivionOutputPane()
|
||
|
|
{
|
||
|
|
if (!m_outputWidget->parent())
|
||
|
|
delete m_outputWidget;
|
||
|
|
}
|
||
|
|
|
||
|
|
QWidget *AxivionOutputPane::outputWidget(QWidget *parent)
|
||
|
|
{
|
||
|
|
if (m_outputWidget)
|
||
|
|
m_outputWidget->setParent(parent);
|
||
|
|
else
|
||
|
|
QTC_CHECK(false);
|
||
|
|
return m_outputWidget;
|
||
|
|
}
|
||
|
|
|
||
|
|
QList<QWidget *> AxivionOutputPane::toolBarWidgets() const
|
||
|
|
{
|
||
|
|
QList<QWidget *> buttons;
|
||
|
|
return buttons;
|
||
|
|
}
|
||
|
|
|
||
|
|
QString AxivionOutputPane::displayName() const
|
||
|
|
{
|
||
|
|
return Tr::tr("Axivion");
|
||
|
|
}
|
||
|
|
|
||
|
|
int AxivionOutputPane::priorityInStatusBar() const
|
||
|
|
{
|
||
|
|
return -1;
|
||
|
|
}
|
||
|
|
|
||
|
|
void AxivionOutputPane::clearContents()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
void AxivionOutputPane::setFocus()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
bool AxivionOutputPane::hasFocus() const
|
||
|
|
{
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
|
||
|
|
bool AxivionOutputPane::canFocus() const
|
||
|
|
{
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
|
||
|
|
bool AxivionOutputPane::canNavigate() const
|
||
|
|
{
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
|
||
|
|
bool AxivionOutputPane::canNext() const
|
||
|
|
{
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
|
||
|
|
bool AxivionOutputPane::canPrevious() const
|
||
|
|
{
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
|
||
|
|
void AxivionOutputPane::goToNext()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
void AxivionOutputPane::goToPrev()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace Axivion::Internal
|