Header cleaning spree in Core/Debugger and Symbian/Maemo-code of Qt4.

This commit is contained in:
Friedemann Kleint
2010-03-18 10:59:06 +01:00
parent 718dd06ed8
commit bbcacaf59f
125 changed files with 555 additions and 413 deletions

View File

@@ -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