forked from qt-creator/qt-creator
Header cleaning spree in Core/Debugger and Symbian/Maemo-code of Qt4.
This commit is contained in:
@@ -1,19 +1,30 @@
|
||||
#ifndef DEBUGGERMAINWINDOW_H
|
||||
#define DEBUGGERMAINWINDOW_H
|
||||
|
||||
#include "debuggeruiswitcher.h"
|
||||
#include <utils/fancymainwindow.h>
|
||||
|
||||
QT_FORWARD_DECLARE_CLASS(QMenu);
|
||||
|
||||
namespace Debugger {
|
||||
class DebuggerUISwitcher;
|
||||
|
||||
namespace Internal {
|
||||
|
||||
class DebugToolWindow {
|
||||
public:
|
||||
DebugToolWindow() : m_visible(false) {}
|
||||
QDockWidget* m_dockWidget;
|
||||
|
||||
int m_languageId;
|
||||
bool m_visible;
|
||||
};
|
||||
|
||||
class DebuggerMainWindow : public Utils::FancyMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
DebuggerMainWindow(DebuggerUISwitcher *uiSwitcher, QWidget *parent = 0);
|
||||
~DebuggerMainWindow();
|
||||
|
||||
explicit DebuggerMainWindow(DebuggerUISwitcher *uiSwitcher, QWidget *parent = 0);
|
||||
virtual ~DebuggerMainWindow();
|
||||
|
||||
protected:
|
||||
virtual QMenu *createPopupMenu();
|
||||
@@ -22,6 +33,7 @@ private:
|
||||
DebuggerUISwitcher *m_uiSwitcher;
|
||||
};
|
||||
|
||||
}
|
||||
} // namespace Internal
|
||||
} // namespace Debugger
|
||||
|
||||
#endif // DEBUGGERMAINWINDOW_H
|
||||
|
||||
Reference in New Issue
Block a user