2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-06-17 00:01:27 +10:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Commercial Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Nokia.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** If you are unsure which license is appropriate for your use, please
|
2009-08-14 09:30:56 +02:00
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
**************************************************************************/
|
2008-12-02 14:09:21 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#ifndef OUTPUTPANE_H
|
|
|
|
|
#define OUTPUTPANE_H
|
|
|
|
|
|
|
|
|
|
#include "core_global.h"
|
|
|
|
|
|
|
|
|
|
#include <QtCore/QMap>
|
2009-12-14 14:26:03 +01:00
|
|
|
#include <QtGui/QPushButton>
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <QtGui/QWidget>
|
|
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
class QAction;
|
|
|
|
|
class QComboBox;
|
|
|
|
|
class QToolButton;
|
|
|
|
|
class QStackedWidget;
|
2009-12-14 14:26:03 +01:00
|
|
|
class QMenu;
|
2009-12-14 11:52:23 +01:00
|
|
|
class QSplitter;
|
2008-12-02 12:01:29 +01:00
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
|
|
|
|
|
|
class IMode;
|
|
|
|
|
class IOutputPane;
|
|
|
|
|
|
|
|
|
|
namespace Internal {
|
2009-01-26 14:13:15 +01:00
|
|
|
class OutputPaneManager;
|
|
|
|
|
class MainWindow;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class CORE_EXPORT OutputPanePlaceHolder : public QWidget
|
|
|
|
|
{
|
2009-01-26 14:13:15 +01:00
|
|
|
friend class Core::Internal::OutputPaneManager; // needs to set m_visible and thus access m_current
|
2008-12-02 12:01:29 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
2009-12-14 11:52:23 +01:00
|
|
|
OutputPanePlaceHolder(Core::IMode *mode, QSplitter *parent = 0);
|
2008-12-02 12:01:29 +01:00
|
|
|
~OutputPanePlaceHolder();
|
|
|
|
|
void setCloseable(bool b);
|
|
|
|
|
bool closeable();
|
|
|
|
|
static OutputPanePlaceHolder *getCurrent() { return m_current; }
|
2009-12-14 11:52:23 +01:00
|
|
|
inline bool canMaximizeOrMinimize() const { return m_splitter != 0; }
|
|
|
|
|
void maximizeOrMinimize(bool maximize);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void currentModeChanged(Core::IMode *);
|
|
|
|
|
private:
|
|
|
|
|
Core::IMode *m_mode;
|
2009-12-14 11:52:23 +01:00
|
|
|
QSplitter *m_splitter;
|
2008-12-02 12:01:29 +01:00
|
|
|
bool m_closeable;
|
|
|
|
|
static OutputPanePlaceHolder* m_current;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2009-01-26 14:13:15 +01:00
|
|
|
class OutputPaneManager : public QWidget
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2009-01-26 14:13:15 +01:00
|
|
|
void init();
|
|
|
|
|
static OutputPaneManager *instance();
|
2008-12-02 12:01:29 +01:00
|
|
|
void setCloseable(bool b);
|
|
|
|
|
bool closeable();
|
|
|
|
|
QWidget *buttonsWidget();
|
|
|
|
|
void updateStatusButtons(bool visible);
|
|
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
void slotHide();
|
2009-04-30 12:50:52 +02:00
|
|
|
void slotNext();
|
|
|
|
|
void slotPrev();
|
2008-12-02 12:01:29 +01:00
|
|
|
void shortcutTriggered();
|
2009-12-14 11:52:23 +01:00
|
|
|
void slotMinMax();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
void focusInEvent(QFocusEvent *e);
|
|
|
|
|
|
2009-01-26 14:13:15 +01:00
|
|
|
private slots:
|
2008-12-02 12:01:29 +01:00
|
|
|
void changePage();
|
|
|
|
|
void showPage(bool focus);
|
|
|
|
|
void togglePage(bool focus);
|
|
|
|
|
void clearPage();
|
|
|
|
|
void buttonTriggered();
|
2009-04-30 12:50:52 +02:00
|
|
|
void updateNavigateState();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
private:
|
2009-01-26 14:13:15 +01:00
|
|
|
// the only class that is allowed to create and destroy
|
|
|
|
|
friend class MainWindow;
|
|
|
|
|
|
|
|
|
|
static void create();
|
|
|
|
|
static void destroy();
|
|
|
|
|
|
|
|
|
|
OutputPaneManager(QWidget *parent = 0);
|
|
|
|
|
~OutputPaneManager();
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
void showPage(int idx, bool focus);
|
|
|
|
|
void ensurePageVisible(int idx);
|
|
|
|
|
int findIndexForPage(IOutputPane *out);
|
|
|
|
|
QComboBox *m_widgetComboBox;
|
|
|
|
|
QToolButton *m_clearButton;
|
|
|
|
|
QToolButton *m_closeButton;
|
2009-04-30 12:50:52 +02:00
|
|
|
|
2009-12-14 11:52:23 +01:00
|
|
|
QAction *m_minMaxAction;
|
|
|
|
|
QToolButton *m_minMaxButton;
|
|
|
|
|
|
2009-04-30 12:50:52 +02:00
|
|
|
QAction *m_nextAction;
|
|
|
|
|
QAction *m_prevAction;
|
2009-07-16 16:30:00 +02:00
|
|
|
QToolButton *m_prevToolButton;
|
|
|
|
|
QToolButton *m_nextToolButton;
|
|
|
|
|
QWidget *m_toolBar;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
QMap<int, Core::IOutputPane*> m_pageMap;
|
|
|
|
|
int m_lastIndex;
|
|
|
|
|
|
|
|
|
|
QStackedWidget *m_outputWidgetPane;
|
|
|
|
|
QStackedWidget *m_opToolBarWidgets;
|
|
|
|
|
QWidget *m_buttonsWidget;
|
|
|
|
|
QMap<int, QPushButton *> m_buttons;
|
|
|
|
|
QMap<QAction *, int> m_actions;
|
2009-12-14 14:26:03 +01:00
|
|
|
QMenu *m_morePanesMenu;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class OutputPaneToggleButton : public QPushButton
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
OutputPaneToggleButton(int number, const QString &text, QAction *action,
|
|
|
|
|
QWidget *parent = 0);
|
|
|
|
|
QSize sizeHint() const;
|
|
|
|
|
void paintEvent(QPaintEvent *event);
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void updateToolTip();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QString m_number;
|
|
|
|
|
QString m_text;
|
|
|
|
|
QAction *m_action;
|
2008-12-02 12:01:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Core
|
|
|
|
|
|
|
|
|
|
#endif // OUTPUTPANE_H
|