forked from qt-creator/qt-creator
more file cosmetics
This commit is contained in:
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "rightpane.h"
|
#include "rightpane.h"
|
||||||
|
|
||||||
#include <QtGui/QVBoxLayout>
|
#include <QtGui/QVBoxLayout>
|
||||||
|
@@ -30,16 +30,18 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef RIGHTPANE_H
|
#ifndef RIGHTPANE_H
|
||||||
#define RIGHTPANE_H
|
#define RIGHTPANE_H
|
||||||
|
|
||||||
#include "core_global.h"
|
#include "core_global.h"
|
||||||
|
|
||||||
#include <QtGui/QWidget>
|
#include <QtGui/QWidget>
|
||||||
#include <QtCore/QSettings>
|
#include <QtCore/QSettings>
|
||||||
|
|
||||||
namespace Core {
|
namespace Core {
|
||||||
class IMode;
|
|
||||||
|
|
||||||
|
class IMode;
|
||||||
class RightPaneWidget;
|
class RightPaneWidget;
|
||||||
|
|
||||||
// TODO: The right pane works only for the help plugin atm.
|
// TODO: The right pane works only for the help plugin atm.
|
||||||
@@ -104,5 +106,4 @@ private:
|
|||||||
|
|
||||||
} // namespace Core
|
} // namespace Core
|
||||||
|
|
||||||
|
|
||||||
#endif // RIGHTPANE_H
|
#endif // RIGHTPANE_H
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef METATYPEDECLARATIONS_H
|
#ifndef METATYPEDECLARATIONS_H
|
||||||
#define METATYPEDECLARATIONS_H
|
#define METATYPEDECLARATIONS_H
|
||||||
|
|
||||||
|
@@ -30,9 +30,14 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "qworkbench_wrapper.h"
|
#include "qworkbench_wrapper.h"
|
||||||
|
|
||||||
#include <wrap_helpers.h>
|
#include <wrap_helpers.h>
|
||||||
|
|
||||||
|
#include <coreplugin/messagemanager.h>
|
||||||
|
#include <coreplugin/editormanager/editorgroup.h>
|
||||||
|
|
||||||
#include <QtCore/QDebug>
|
#include <QtCore/QDebug>
|
||||||
#include <QtCore/QSettings>
|
#include <QtCore/QSettings>
|
||||||
|
|
||||||
@@ -41,9 +46,6 @@
|
|||||||
#include <QtGui/QToolBar>
|
#include <QtGui/QToolBar>
|
||||||
#include <QtScript/QScriptEngine>
|
#include <QtScript/QScriptEngine>
|
||||||
|
|
||||||
#include <coreplugin/messagemanager.h>
|
|
||||||
#include <coreplugin/editormanager/editorgroup.h>
|
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
enum { debugQWorkbenchWrappers = 0 };
|
enum { debugQWorkbenchWrappers = 0 };
|
||||||
}
|
}
|
||||||
@@ -377,5 +379,5 @@ Core::EditorGroup *EditorGroupPrototype::callee() const
|
|||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
} // namespace Internal
|
||||||
}
|
} // namespace Core
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef QWORKBENCH_WRAPPER_H
|
#ifndef QWORKBENCH_WRAPPER_H
|
||||||
#define QWORKBENCH_WRAPPER_H
|
#define QWORKBENCH_WRAPPER_H
|
||||||
|
|
||||||
@@ -45,7 +46,8 @@ namespace Internal {
|
|||||||
|
|
||||||
// Script prototype for the core interface.
|
// Script prototype for the core interface.
|
||||||
|
|
||||||
class CorePrototype : public QObject, public QScriptable {
|
class CorePrototype : public QObject, public QScriptable
|
||||||
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
Q_PROPERTY(Core::MessageManager* messageManager READ messageManager DESIGNABLE false SCRIPTABLE true STORED false)
|
Q_PROPERTY(Core::MessageManager* messageManager READ messageManager DESIGNABLE false SCRIPTABLE true STORED false)
|
||||||
@@ -97,7 +99,8 @@ public slots:
|
|||||||
|
|
||||||
// Script prototype for the file manager interface.
|
// Script prototype for the file manager interface.
|
||||||
|
|
||||||
class FileManagerPrototype : public QObject, public QScriptable {
|
class FileManagerPrototype : public QObject, public QScriptable
|
||||||
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
Q_PROPERTY(QStringList recentFiles READ recentFiles DESIGNABLE false SCRIPTABLE true STORED false)
|
Q_PROPERTY(QStringList recentFiles READ recentFiles DESIGNABLE false SCRIPTABLE true STORED false)
|
||||||
@@ -163,7 +166,8 @@ private:
|
|||||||
|
|
||||||
// Script prototype for the editor manager interface.
|
// Script prototype for the editor manager interface.
|
||||||
|
|
||||||
class EditorManagerPrototype : public QObject, public QScriptable {
|
class EditorManagerPrototype : public QObject, public QScriptable
|
||||||
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
Q_PROPERTY(Core::IEditor* currentEditor READ currentEditor WRITE setCurrentEditor DESIGNABLE false SCRIPTABLE true STORED false)
|
Q_PROPERTY(Core::IEditor* currentEditor READ currentEditor WRITE setCurrentEditor DESIGNABLE false SCRIPTABLE true STORED false)
|
||||||
Q_PROPERTY(QList<Core::IEditor*> openedEditors READ openedEditors DESIGNABLE false SCRIPTABLE true STORED false)
|
Q_PROPERTY(QList<Core::IEditor*> openedEditors READ openedEditors DESIGNABLE false SCRIPTABLE true STORED false)
|
||||||
@@ -195,7 +199,8 @@ private:
|
|||||||
|
|
||||||
// Script prototype for the editor interface.
|
// Script prototype for the editor interface.
|
||||||
|
|
||||||
class EditorPrototype : public QObject, public QScriptable {
|
class EditorPrototype : public QObject, public QScriptable
|
||||||
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
Q_PROPERTY(QString displayName READ displayName WRITE setDisplayName DESIGNABLE false SCRIPTABLE true STORED false)
|
Q_PROPERTY(QString displayName READ displayName WRITE setDisplayName DESIGNABLE false SCRIPTABLE true STORED false)
|
||||||
Q_PROPERTY(QString kind READ kind DESIGNABLE false SCRIPTABLE true STORED false)
|
Q_PROPERTY(QString kind READ kind DESIGNABLE false SCRIPTABLE true STORED false)
|
||||||
@@ -228,7 +233,8 @@ private:
|
|||||||
|
|
||||||
// Script prototype for the editor group interface with Script-managed life cycle.
|
// Script prototype for the editor group interface with Script-managed life cycle.
|
||||||
|
|
||||||
class EditorGroupPrototype : public QObject, public QScriptable {
|
class EditorGroupPrototype : public QObject, public QScriptable
|
||||||
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
Q_PROPERTY(int editorCount READ editorCount DESIGNABLE false SCRIPTABLE true STORED false)
|
Q_PROPERTY(int editorCount READ editorCount DESIGNABLE false SCRIPTABLE true STORED false)
|
||||||
Q_PROPERTY(Core::IEditor* currentEditor READ currentEditor WRITE setCurrentEditor DESIGNABLE false SCRIPTABLE true STORED false)
|
Q_PROPERTY(Core::IEditor* currentEditor READ currentEditor WRITE setCurrentEditor DESIGNABLE false SCRIPTABLE true STORED false)
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "scriptmanager.h"
|
#include "scriptmanager.h"
|
||||||
#include "qworkbench_wrapper.h"
|
#include "qworkbench_wrapper.h"
|
||||||
#include "metatypedeclarations.h"
|
#include "metatypedeclarations.h"
|
||||||
@@ -309,5 +310,5 @@ QString ScriptManager::engineError(QScriptEngine &scriptEngine)
|
|||||||
return QObject::tr("Unknown error");
|
return QObject::tr("Unknown error");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
} // namespace Internal
|
||||||
}
|
} // namespace Core
|
||||||
|
@@ -30,16 +30,17 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef SCRIPTMANAGER_H
|
#ifndef SCRIPTMANAGER_H
|
||||||
#define SCRIPTMANAGER_H
|
#define SCRIPTMANAGER_H
|
||||||
|
|
||||||
|
#include <coreplugin/scriptmanager/scriptmanagerinterface.h>
|
||||||
|
#include <coreplugin/icore.h>
|
||||||
|
|
||||||
#include <QtCore/QObject>
|
#include <QtCore/QObject>
|
||||||
#include <QtCore/QList>
|
#include <QtCore/QList>
|
||||||
#include <QtScript/QScriptEngine>
|
#include <QtScript/QScriptEngine>
|
||||||
|
|
||||||
#include <coreplugin/scriptmanager/scriptmanagerinterface.h>
|
|
||||||
#include <coreplugin/icore.h>
|
|
||||||
|
|
||||||
namespace Core {
|
namespace Core {
|
||||||
namespace Internal {
|
namespace Internal {
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef SCRIPTMANAGERINTERFACE_H
|
#ifndef SCRIPTMANAGERINTERFACE_H
|
||||||
#define SCRIPTMANAGERINTERFACE_H
|
#define SCRIPTMANAGERINTERFACE_H
|
||||||
|
|
||||||
|
@@ -30,9 +30,11 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "sidebar.h"
|
#include "sidebar.h"
|
||||||
#include "imode.h"
|
#include "imode.h"
|
||||||
#include "modemanager.h"
|
#include "modemanager.h"
|
||||||
|
|
||||||
#include "actionmanager/actionmanagerinterface.h"
|
#include "actionmanager/actionmanagerinterface.h"
|
||||||
|
|
||||||
#include <QtCore/QDebug>
|
#include <QtCore/QDebug>
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef SIDEBAR_H
|
#ifndef SIDEBAR_H
|
||||||
#define SIDEBAR_H
|
#define SIDEBAR_H
|
||||||
|
|
||||||
|
@@ -30,11 +30,11 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "styleanimator.h"
|
#include "styleanimator.h"
|
||||||
|
|
||||||
#include <QtGui/QStyleOption>
|
#include <QtGui/QStyleOption>
|
||||||
|
|
||||||
|
|
||||||
Animation * StyleAnimator::widgetAnimation(const QWidget *widget) const
|
Animation * StyleAnimator::widgetAnimation(const QWidget *widget) const
|
||||||
{
|
{
|
||||||
if (!widget)
|
if (!widget)
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef ANIMATION_H
|
#ifndef ANIMATION_H
|
||||||
#define ANIMATION_H
|
#define ANIMATION_H
|
||||||
|
|
||||||
|
@@ -30,20 +30,23 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "stylehelper.h"
|
#include "stylehelper.h"
|
||||||
|
|
||||||
#include <QtGui/QPixmapCache>
|
#include <QtGui/QPixmapCache>
|
||||||
#include <QtGui/QWidget>
|
#include <QtGui/QWidget>
|
||||||
|
|
||||||
// Clamps float color values within (0, 255)
|
// Clamps float color values within (0, 255)
|
||||||
static int clamp(float x) {
|
static int clamp(float x)
|
||||||
|
{
|
||||||
const int val = x > 255 ? 255 : static_cast<int>(x);
|
const int val = x > 255 ? 255 : static_cast<int>(x);
|
||||||
return val < 0 ? 0 : val;
|
return val < 0 ? 0 : val;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Clamps float color values within (0, 255)
|
// Clamps float color values within (0, 255)
|
||||||
/*
|
/*
|
||||||
static int range(float x, int min, int max) {
|
static int range(float x, int min, int max)
|
||||||
|
{
|
||||||
int val = x > max ? max : x;
|
int val = x > max ? max : x;
|
||||||
return val < min ? min : val;
|
return val < min ? min : val;
|
||||||
}
|
}
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef STYLEHELPER_H
|
#ifndef STYLEHELPER_H
|
||||||
#define STYLEHELPER_H
|
#define STYLEHELPER_H
|
||||||
|
|
||||||
@@ -43,7 +44,8 @@
|
|||||||
|
|
||||||
// Helper class holding all custom color values
|
// Helper class holding all custom color values
|
||||||
|
|
||||||
class CORE_EXPORT StyleHelper {
|
class CORE_EXPORT StyleHelper
|
||||||
|
{
|
||||||
public:
|
public:
|
||||||
// Height of the project explorer navigation bar
|
// Height of the project explorer navigation bar
|
||||||
static int navigationWidgetHeight() { return 24; }
|
static int navigationWidgetHeight() { return 24; }
|
||||||
|
@@ -30,19 +30,19 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
|
#include "tabpositionindicator.h"
|
||||||
|
|
||||||
#include <QtGui/QPainter>
|
#include <QtGui/QPainter>
|
||||||
#include <QtGui/QPaintEvent>
|
#include <QtGui/QPaintEvent>
|
||||||
#include <QtGui/QBrush>
|
#include <QtGui/QBrush>
|
||||||
#include <QtGui/QPalette>
|
#include <QtGui/QPalette>
|
||||||
|
|
||||||
#include "tabpositionindicator.h"
|
|
||||||
|
|
||||||
using namespace Core::Internal;
|
using namespace Core::Internal;
|
||||||
|
|
||||||
TabPositionIndicator::TabPositionIndicator()
|
TabPositionIndicator::TabPositionIndicator()
|
||||||
: QWidget(0, Qt::ToolTip)
|
: QWidget(0, Qt::ToolTip)
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void TabPositionIndicator::paintEvent(QPaintEvent *event)
|
void TabPositionIndicator::paintEvent(QPaintEvent *event)
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef TABPOSITIONINDICATOR_H
|
#ifndef TABPOSITIONINDICATOR_H
|
||||||
#define TABPOSITIONINDICATOR_H
|
#define TABPOSITIONINDICATOR_H
|
||||||
|
|
||||||
@@ -43,9 +44,10 @@ namespace Internal {
|
|||||||
class TabPositionIndicator : public QWidget
|
class TabPositionIndicator : public QWidget
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
TabPositionIndicator();
|
TabPositionIndicator();
|
||||||
inline int indicatorWidth() { return TABPOSITIONINDICATOR_WIDTH; }
|
int indicatorWidth() { return TABPOSITIONINDICATOR_WIDTH; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void paintEvent(QPaintEvent *event);
|
void paintEvent(QPaintEvent *event);
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "uniqueidmanager.h"
|
#include "uniqueidmanager.h"
|
||||||
#include "coreconstants.h"
|
#include "coreconstants.h"
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef UNIQUEIDMANAGER_H
|
#ifndef UNIQUEIDMANAGER_H
|
||||||
#define UNIQUEIDMANAGER_H
|
#define UNIQUEIDMANAGER_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "variablemanager.h"
|
#include "variablemanager.h"
|
||||||
|
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef VARIABLEMANAGER_H
|
#ifndef VARIABLEMANAGER_H
|
||||||
#define VARIABLEMANAGER_H
|
#define VARIABLEMANAGER_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "vcsmanager.h"
|
#include "vcsmanager.h"
|
||||||
#include "iversioncontrol.h"
|
#include "iversioncontrol.h"
|
||||||
|
|
||||||
@@ -110,4 +111,4 @@ void VCSManager::showDeleteDialog(const QString &fileName)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
} // namespace Core
|
||||||
|
@@ -30,11 +30,12 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef VCSMANAGER_H
|
#ifndef VCSMANAGER_H
|
||||||
#define VCSMANAGER_H
|
#define VCSMANAGER_H
|
||||||
|
|
||||||
|
|
||||||
#include "core_global.h"
|
#include "core_global.h"
|
||||||
|
|
||||||
#include <QtCore/QString>
|
#include <QtCore/QString>
|
||||||
|
|
||||||
namespace Core {
|
namespace Core {
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "versiondialog.h"
|
#include "versiondialog.h"
|
||||||
#include "coreconstants.h"
|
#include "coreconstants.h"
|
||||||
#include "coreimpl.h"
|
#include "coreimpl.h"
|
||||||
@@ -46,8 +47,8 @@ using namespace Core::Constants;
|
|||||||
#include <QtGui/QDialogButtonBox>
|
#include <QtGui/QDialogButtonBox>
|
||||||
#include <QtGui/QTextBrowser>
|
#include <QtGui/QTextBrowser>
|
||||||
|
|
||||||
VersionDialog::VersionDialog(QWidget *parent):
|
VersionDialog::VersionDialog(QWidget *parent)
|
||||||
QDialog(parent)
|
: QDialog(parent)
|
||||||
{
|
{
|
||||||
// We need to set the window icon explicitly here since for some reason the
|
// We need to set the window icon explicitly here since for some reason the
|
||||||
// application icon isn't used when the size of the dialog is fixed (at least not on X11/GNOME)
|
// application icon isn't used when the size of the dialog is fixed (at least not on X11/GNOME)
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef VERSIONDIALOG_H
|
#ifndef VERSIONDIALOG_H
|
||||||
#define VERSIONDIALOG_H
|
#define VERSIONDIALOG_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "viewmanager.h"
|
#include "viewmanager.h"
|
||||||
|
|
||||||
#include "coreconstants.h"
|
#include "coreconstants.h"
|
||||||
@@ -37,24 +38,23 @@
|
|||||||
#include "uniqueidmanager.h"
|
#include "uniqueidmanager.h"
|
||||||
#include "iview.h"
|
#include "iview.h"
|
||||||
|
|
||||||
#include <QtCore/QSettings>
|
|
||||||
#include <QtGui/QAction>
|
|
||||||
#include <QtGui/QActionGroup>
|
|
||||||
#include <QtGui/QDockWidget>
|
|
||||||
#include <QtGui/QVBoxLayout>
|
|
||||||
#include <QtGui/QMenu>
|
|
||||||
#include <QtGui/QStatusBar>
|
|
||||||
#include <QtGui/QLabel>
|
|
||||||
#include <QtGui/QComboBox>
|
|
||||||
#include <QtGui/QStackedWidget>
|
|
||||||
#include <QtGui/QToolButton>
|
|
||||||
|
|
||||||
#include <coreplugin/actionmanager/actionmanagerinterface.h>
|
#include <coreplugin/actionmanager/actionmanagerinterface.h>
|
||||||
#include <coreplugin/actionmanager/icommand.h>
|
#include <coreplugin/actionmanager/icommand.h>
|
||||||
#include <extensionsystem/ExtensionSystemInterfaces>
|
#include <extensionsystem/ExtensionSystemInterfaces>
|
||||||
#include <aggregation/aggregate.h>
|
#include <aggregation/aggregate.h>
|
||||||
|
|
||||||
|
#include <QtCore/QSettings>
|
||||||
|
#include <QtGui/QAction>
|
||||||
|
#include <QtGui/QActionGroup>
|
||||||
|
#include <QtGui/QComboBox>
|
||||||
|
#include <QtGui/QDockWidget>
|
||||||
#include <QtGui/QHBoxLayout>
|
#include <QtGui/QHBoxLayout>
|
||||||
|
#include <QtGui/QLabel>
|
||||||
|
#include <QtGui/QMenu>
|
||||||
|
#include <QtGui/QStackedWidget>
|
||||||
|
#include <QtGui/QStatusBar>
|
||||||
|
#include <QtGui/QToolButton>
|
||||||
|
#include <QtGui/QVBoxLayout>
|
||||||
|
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
using namespace Core::Internal;
|
using namespace Core::Internal;
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef VIEWMANAGER_H
|
#ifndef VIEWMANAGER_H
|
||||||
#define VIEWMANAGER_H
|
#define VIEWMANAGER_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef VIEWMANAGERINTERFACE_H
|
#ifndef VIEWMANAGERINTERFACE_H
|
||||||
#define VIEWMANAGERINTERFACE_H
|
#define VIEWMANAGERINTERFACE_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "welcomemode.h"
|
#include "welcomemode.h"
|
||||||
#include "coreconstants.h"
|
#include "coreconstants.h"
|
||||||
#include "uniqueidmanager.h"
|
#include "uniqueidmanager.h"
|
||||||
@@ -65,7 +66,8 @@ static QString readFile(const QString &name)
|
|||||||
return ts.readAll();
|
return ts.readAll();
|
||||||
}
|
}
|
||||||
|
|
||||||
struct WelcomeModePrivate {
|
struct WelcomeModePrivate
|
||||||
|
{
|
||||||
WelcomeModePrivate();
|
WelcomeModePrivate();
|
||||||
|
|
||||||
QWidget *m_widget;
|
QWidget *m_widget;
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef WELCOMEMODE_H
|
#ifndef WELCOMEMODE_H
|
||||||
#define WELCOMEMODE_H
|
#define WELCOMEMODE_H
|
||||||
|
|
||||||
@@ -44,7 +45,6 @@ class QLabel;
|
|||||||
QT_END_NAMESPACE
|
QT_END_NAMESPACE
|
||||||
|
|
||||||
namespace Core {
|
namespace Core {
|
||||||
|
|
||||||
namespace Internal {
|
namespace Internal {
|
||||||
|
|
||||||
struct WelcomeModePrivate;
|
struct WelcomeModePrivate;
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "cpasterplugin.h"
|
#include "cpasterplugin.h"
|
||||||
|
|
||||||
#include "ui_pasteselect.h"
|
#include "ui_pasteselect.h"
|
||||||
@@ -64,9 +65,7 @@ using namespace TextEditor;
|
|||||||
Core::ICore *gCoreInstance = NULL;
|
Core::ICore *gCoreInstance = NULL;
|
||||||
|
|
||||||
CodepasterPlugin::CodepasterPlugin()
|
CodepasterPlugin::CodepasterPlugin()
|
||||||
: m_settingsPage(0)
|
: m_settingsPage(0), m_fetcher(0), m_poster(0)
|
||||||
, m_fetcher(0)
|
|
||||||
, m_poster(0)
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -125,7 +124,8 @@ bool CodepasterPlugin::initialize(const QStringList &arguments, QString *error_m
|
|||||||
|
|
||||||
void CodepasterPlugin::extensionsInitialized()
|
void CodepasterPlugin::extensionsInitialized()
|
||||||
{
|
{
|
||||||
m_projectExplorer = ExtensionSystem::PluginManager::instance()->getObject<ProjectExplorer::ProjectExplorerPlugin>();
|
m_projectExplorer = ExtensionSystem::PluginManager::instance()
|
||||||
|
->getObject<ProjectExplorer::ProjectExplorerPlugin>();
|
||||||
}
|
}
|
||||||
|
|
||||||
void CodepasterPlugin::post()
|
void CodepasterPlugin::post()
|
||||||
@@ -268,18 +268,14 @@ void CustomFetcher::list(QListWidget* list)
|
|||||||
Fetcher::fetch(url);
|
Fetcher::fetch(url);
|
||||||
}
|
}
|
||||||
|
|
||||||
CustomPoster::CustomPoster(const QString &host
|
CustomPoster::CustomPoster(const QString &host, bool copyToClipboard, bool displayOutput)
|
||||||
, bool copyToClipboard
|
: Poster(host), m_copy(copyToClipboard), m_output(displayOutput)
|
||||||
, bool displayOutput)
|
|
||||||
: Poster(host)
|
|
||||||
, m_copy(copyToClipboard)
|
|
||||||
, m_output(displayOutput)
|
|
||||||
{
|
{
|
||||||
// cpaster calls QCoreApplication::exit which we want to avoid here
|
// cpaster calls QCoreApplication::exit which we want to avoid here
|
||||||
disconnect(this, SIGNAL(requestFinished(int,bool))
|
disconnect(this, SIGNAL(requestFinished(int,bool)),
|
||||||
,this, SLOT(gotRequestFinished(int,bool)));
|
this, SLOT(gotRequestFinished(int,bool)));
|
||||||
connect(this, SIGNAL(requestFinished(int,bool))
|
connect(this, SIGNAL(requestFinished(int,bool)),
|
||||||
, SLOT(customRequestFinished(int,bool)));
|
SLOT(customRequestFinished(int,bool)));
|
||||||
}
|
}
|
||||||
|
|
||||||
void CustomPoster::customRequestFinished(int, bool error)
|
void CustomPoster::customRequestFinished(int, bool error)
|
||||||
|
@@ -30,8 +30,9 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
#ifndef CodepasterPlugin_H
|
|
||||||
#define CodepasterPlugin_H
|
#ifndef CODEPASTERPLUGIN_H
|
||||||
|
#define CODEPASTERPLUGIN_H
|
||||||
|
|
||||||
#include "settingspage.h"
|
#include "settingspage.h"
|
||||||
#include "fetcher.h"
|
#include "fetcher.h"
|
||||||
@@ -61,8 +62,7 @@ public:
|
|||||||
CodepasterPlugin();
|
CodepasterPlugin();
|
||||||
~CodepasterPlugin();
|
~CodepasterPlugin();
|
||||||
|
|
||||||
bool initialize(const QStringList &arguments
|
bool initialize(const QStringList &arguments, QString *error_message);
|
||||||
, QString *error_message);
|
|
||||||
void extensionsInitialized();
|
void extensionsInitialized();
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
@@ -79,16 +79,19 @@ private:
|
|||||||
CustomPoster *m_poster;
|
CustomPoster *m_poster;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
class CustomFetcher : public Fetcher
|
class CustomFetcher : public Fetcher
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
CustomFetcher(const QString &host);
|
CustomFetcher(const QString &host);
|
||||||
|
|
||||||
int fetch(int pasteID);
|
int fetch(int pasteID);
|
||||||
inline bool hadCustomError() { return m_customError; }
|
bool hadCustomError() { return m_customError; }
|
||||||
|
|
||||||
void list(QListWidget *);
|
void list(QListWidget *);
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void customRequestFinished(int id, bool error);
|
void customRequestFinished(int id, bool error);
|
||||||
|
|
||||||
@@ -99,16 +102,17 @@ private:
|
|||||||
bool m_customError;
|
bool m_customError;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
class CustomPoster : public Poster
|
class CustomPoster : public Poster
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
CustomPoster(const QString &host
|
CustomPoster(const QString &host, bool copyToClipboard = true,
|
||||||
, bool copyToClipboard = true
|
bool displayOutput = true);
|
||||||
, bool displayOutput = true);
|
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void customRequestFinished(int id, bool error);
|
void customRequestFinished(int id, bool error);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
bool m_copy;
|
bool m_copy;
|
||||||
bool m_output;
|
bool m_output;
|
||||||
@@ -116,4 +120,4 @@ private:
|
|||||||
|
|
||||||
} // namespace CodePaster
|
} // namespace CodePaster
|
||||||
|
|
||||||
#endif
|
#endif // CODEPASTERPLUGIN_H
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "settingspage.h"
|
#include "settingspage.h"
|
||||||
|
|
||||||
#include <coreplugin/icore.h>
|
#include <coreplugin/icore.h>
|
||||||
|
@@ -30,15 +30,16 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef SETTINGSPAGE_H
|
#ifndef SETTINGSPAGE_H
|
||||||
#define SETTINGSPAGE_H
|
#define SETTINGSPAGE_H
|
||||||
|
|
||||||
#include <QtCore/QUrl>
|
#include "ui_settingspage.h"
|
||||||
#include <QtGui/QWidget>
|
|
||||||
|
|
||||||
#include <coreplugin/dialogs/ioptionspage.h>
|
#include <coreplugin/dialogs/ioptionspage.h>
|
||||||
|
|
||||||
#include "ui_settingspage.h"
|
#include <QtCore/QUrl>
|
||||||
|
#include <QtGui/QWidget>
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
QT_BEGIN_NAMESPACE
|
||||||
class QSettings;
|
class QSettings;
|
||||||
@@ -78,4 +79,4 @@ private:
|
|||||||
|
|
||||||
} // namespace CodePaster
|
} // namespace CodePaster
|
||||||
|
|
||||||
#endif
|
#endif // SETTINGSPAGE_H
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "cppclasswizard.h"
|
#include "cppclasswizard.h"
|
||||||
#include "cppeditorconstants.h"
|
#include "cppeditorconstants.h"
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef CPPCLASSWIZARD_H
|
#ifndef CPPCLASSWIZARD_H
|
||||||
#define CPPCLASSWIZARD_H
|
#define CPPCLASSWIZARD_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "cppeditor.h"
|
#include "cppeditor.h"
|
||||||
#include "cppeditorconstants.h"
|
#include "cppeditorconstants.h"
|
||||||
#include "cppplugin.h"
|
#include "cppplugin.h"
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef CPPEDITOR_H
|
#ifndef CPPEDITOR_H
|
||||||
#define CPPEDITOR_H
|
#define CPPEDITOR_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef CPPEDITOR_GLOBAL_H
|
#ifndef CPPEDITOR_GLOBAL_H
|
||||||
#define CPPEDITOR_GLOBAL_H
|
#define CPPEDITOR_GLOBAL_H
|
||||||
|
|
||||||
|
@@ -48,7 +48,11 @@ CPPEditorActionHandler::~CPPEditorActionHandler()
|
|||||||
{ }
|
{ }
|
||||||
|
|
||||||
void CPPEditorActionHandler::createActions()
|
void CPPEditorActionHandler::createActions()
|
||||||
{ TextEditor::TextEditorActionHandler::createActions(); }
|
{
|
||||||
|
TextEditor::TextEditorActionHandler::createActions();
|
||||||
|
}
|
||||||
|
|
||||||
void CPPEditorActionHandler::updateActions(UpdateMode um)
|
void CPPEditorActionHandler::updateActions(UpdateMode um)
|
||||||
{ TextEditor::TextEditorActionHandler::updateActions(um); }
|
{
|
||||||
|
TextEditor::TextEditorActionHandler::updateActions(um);
|
||||||
|
}
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef CPPEDITORACTIONHANDLER_H
|
#ifndef CPPEDITORACTIONHANDLER_H
|
||||||
#define CPPEDITORACTIONHANDLER_H
|
#define CPPEDITORACTIONHANDLER_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef CPPPLUGIN_GLOBAL_H
|
#ifndef CPPPLUGIN_GLOBAL_H
|
||||||
#define CPPPLUGIN_GLOBAL_H
|
#define CPPPLUGIN_GLOBAL_H
|
||||||
|
|
||||||
@@ -53,6 +54,7 @@ const char * const C_SOURCE_MIMETYPE = "text/x-csrc";
|
|||||||
const char * const C_HEADER_MIMETYPE = "text/x-chdr";
|
const char * const C_HEADER_MIMETYPE = "text/x-chdr";
|
||||||
const char * const CPP_SOURCE_MIMETYPE = "text/x-c++src";
|
const char * const CPP_SOURCE_MIMETYPE = "text/x-c++src";
|
||||||
const char * const CPP_HEADER_MIMETYPE = "text/x-c++hdr";
|
const char * const CPP_HEADER_MIMETYPE = "text/x-c++hdr";
|
||||||
|
|
||||||
} // namespace Constants
|
} // namespace Constants
|
||||||
} // namespace CppEditor
|
} // namespace CppEditor
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef CPPPLUGIN_ENUMS_H
|
#ifndef CPPPLUGIN_ENUMS_H
|
||||||
#define CPPPLUGIN_ENUMS_H
|
#define CPPPLUGIN_ENUMS_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "cppfilewizard.h"
|
#include "cppfilewizard.h"
|
||||||
#include "cppeditor.h"
|
#include "cppeditor.h"
|
||||||
#include "cppeditorconstants.h"
|
#include "cppeditorconstants.h"
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef CPPFILEWIZARD_H
|
#ifndef CPPFILEWIZARD_H
|
||||||
#define CPPFILEWIZARD_H
|
#define CPPFILEWIZARD_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "cpphighlighter.h"
|
#include "cpphighlighter.h"
|
||||||
|
|
||||||
#include <Token.h>
|
#include <Token.h>
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef CPPHIGHLIGHTER_H
|
#ifndef CPPHIGHLIGHTER_H
|
||||||
#define CPPHIGHLIGHTER_H
|
#define CPPHIGHLIGHTER_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "cppplugin.h"
|
#include "cppplugin.h"
|
||||||
#include "cppeditor.h"
|
#include "cppeditor.h"
|
||||||
#include "cppeditorconstants.h"
|
#include "cppeditorconstants.h"
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef CPPPLUGIN_H
|
#ifndef CPPPLUGIN_H
|
||||||
#define CPPPLUGIN_H
|
#define CPPPLUGIN_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "cppcodecompletion.h"
|
#include "cppcodecompletion.h"
|
||||||
#include "cppmodelmanager.h"
|
#include "cppmodelmanager.h"
|
||||||
|
|
||||||
|
@@ -30,13 +30,10 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef CPPCODECOMPLETION_H
|
#ifndef CPPCODECOMPLETION_H
|
||||||
#define CPPCODECOMPLETION_H
|
#define CPPCODECOMPLETION_H
|
||||||
|
|
||||||
// Qt
|
|
||||||
#include <QtCore/QObject>
|
|
||||||
#include <QtCore/QPointer>
|
|
||||||
|
|
||||||
// C++ front-end
|
// C++ front-end
|
||||||
#include <ASTfwd.h>
|
#include <ASTfwd.h>
|
||||||
#include <FullySpecifiedType.h>
|
#include <FullySpecifiedType.h>
|
||||||
@@ -47,6 +44,10 @@
|
|||||||
// Qt Creator
|
// Qt Creator
|
||||||
#include <texteditor/icompletioncollector.h>
|
#include <texteditor/icompletioncollector.h>
|
||||||
|
|
||||||
|
// Qt
|
||||||
|
#include <QtCore/QObject>
|
||||||
|
#include <QtCore/QPointer>
|
||||||
|
|
||||||
namespace Core {
|
namespace Core {
|
||||||
class ICore;
|
class ICore;
|
||||||
}
|
}
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "cpphoverhandler.h"
|
#include "cpphoverhandler.h"
|
||||||
#include "cppmodelmanager.h"
|
#include "cppmodelmanager.h"
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef CPPHOVERHANDLER_H
|
#ifndef CPPHOVERHANDLER_H
|
||||||
#define CPPHOVERHANDLER_H
|
#define CPPHOVERHANDLER_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#define _SCL_SECURE_NO_WARNINGS 1
|
#define _SCL_SECURE_NO_WARNINGS 1
|
||||||
#include "pp.h"
|
#include "pp.h"
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef CPPMODELMANAGER_H
|
#ifndef CPPMODELMANAGER_H
|
||||||
#define CPPMODELMANAGER_H
|
#define CPPMODELMANAGER_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef CPPMODELMANAGERINTERFACE_H
|
#ifndef CPPMODELMANAGERINTERFACE_H
|
||||||
#define CPPMODELMANAGERINTERFACE_H
|
#define CPPMODELMANAGERINTERFACE_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "cppquickopenfilter.h"
|
#include "cppquickopenfilter.h"
|
||||||
|
|
||||||
#include <Literals.h>
|
#include <Literals.h>
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef CPPQUICKOPENFILTER_H
|
#ifndef CPPQUICKOPENFILTER_H
|
||||||
#define CPPQUICKOPENFILTER_H
|
#define CPPQUICKOPENFILTER_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "cpptools.h"
|
#include "cpptools.h"
|
||||||
#include "cppcodecompletion.h"
|
#include "cppcodecompletion.h"
|
||||||
#include "cpphoverhandler.h"
|
#include "cpphoverhandler.h"
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef CPPTOOLS_H
|
#ifndef CPPTOOLS_H
|
||||||
#define CPPTOOLS_H
|
#define CPPTOOLS_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef CPPTOOLS_GLOBAL_H
|
#ifndef CPPTOOLS_GLOBAL_H
|
||||||
#define CPPTOOLS_GLOBAL_H
|
#define CPPTOOLS_GLOBAL_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef CPPTOOLSCONSTANTS_H
|
#ifndef CPPTOOLSCONSTANTS_H
|
||||||
#define CPPTOOLSCONSTANTS_H
|
#define CPPTOOLSCONSTANTS_H
|
||||||
|
|
||||||
@@ -43,7 +44,8 @@ const char * const C_SOURCE_MIMETYPE = "text/x-csrc";
|
|||||||
const char * const C_HEADER_MIMETYPE = "text/x-chdr";
|
const char * const C_HEADER_MIMETYPE = "text/x-chdr";
|
||||||
const char * const CPP_SOURCE_MIMETYPE = "text/x-c++src";
|
const char * const CPP_SOURCE_MIMETYPE = "text/x-c++src";
|
||||||
const char * const CPP_HEADER_MIMETYPE = "text/x-c++hdr";
|
const char * const CPP_HEADER_MIMETYPE = "text/x-c++hdr";
|
||||||
}
|
|
||||||
}
|
} // namespace Constants
|
||||||
|
} // namespace CppTools
|
||||||
|
|
||||||
#endif // CPPTOOLSCONSTANTS_H
|
#endif // CPPTOOLSCONSTANTS_H
|
||||||
|
@@ -35,6 +35,7 @@
|
|||||||
#include "cppmodelmanager.h"
|
#include "cppmodelmanager.h"
|
||||||
|
|
||||||
#include <texteditor/itexteditor.h>
|
#include <texteditor/itexteditor.h>
|
||||||
|
|
||||||
#include <QTimer>
|
#include <QTimer>
|
||||||
|
|
||||||
using namespace CppTools::Internal;
|
using namespace CppTools::Internal;
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef CPPTOOLSEDITORSUPPORT_H
|
#ifndef CPPTOOLSEDITORSUPPORT_H
|
||||||
#define CPPTOOLSEDITORSUPPORT_H
|
#define CPPTOOLSEDITORSUPPORT_H
|
||||||
|
|
||||||
@@ -81,7 +82,7 @@ private:
|
|||||||
QFuture<void> _documentParser;
|
QFuture<void> _documentParser;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end of namespace Internal
|
} // namespace Internal
|
||||||
} // end of namespace CppTools
|
} // namespace CppTools
|
||||||
|
|
||||||
#endif // CPPTOOLSEDITORSUPPORT_H
|
#endif // CPPTOOLSEDITORSUPPORT_H
|
||||||
|
@@ -72,5 +72,3 @@ inline bool pp_isspace (int __ch)
|
|||||||
} // namespace rpp
|
} // namespace rpp
|
||||||
|
|
||||||
#endif // PP_CCTYPE_H
|
#endif // PP_CCTYPE_H
|
||||||
|
|
||||||
// kate: space-indent on; indent-width 2; replace-tabs on;
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef PP_CLIENT_H
|
#ifndef PP_CLIENT_H
|
||||||
#define PP_CLIENT_H
|
#define PP_CLIENT_H
|
||||||
|
|
||||||
@@ -64,6 +65,6 @@ public:
|
|||||||
virtual void stopSkippingBlocks(unsigned offset) = 0;
|
virtual void stopSkippingBlocks(unsigned offset) = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end of namespace rpp
|
} // namespace rpp
|
||||||
|
|
||||||
#endif // PP_CLIENT_H
|
#endif // PP_CLIENT_H
|
||||||
|
@@ -51,6 +51,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "pp.h"
|
#include "pp.h"
|
||||||
|
|
||||||
#include <Lexer.h>
|
#include <Lexer.h>
|
||||||
#include <Token.h>
|
#include <Token.h>
|
||||||
#include <QtDebug>
|
#include <QtDebug>
|
||||||
|
@@ -54,6 +54,7 @@
|
|||||||
#define PP_ENGINE_H
|
#define PP_ENGINE_H
|
||||||
|
|
||||||
#include "pp-client.h"
|
#include "pp-client.h"
|
||||||
|
|
||||||
#include <Token.h>
|
#include <Token.h>
|
||||||
#include <QVector>
|
#include <QVector>
|
||||||
|
|
||||||
|
@@ -56,9 +56,7 @@
|
|||||||
#include <QByteArray>
|
#include <QByteArray>
|
||||||
|
|
||||||
namespace rpp {
|
namespace rpp {
|
||||||
|
namespace _PP_internal {
|
||||||
namespace _PP_internal
|
|
||||||
{
|
|
||||||
|
|
||||||
inline bool comment_p (const char *__first, const char *__last)
|
inline bool comment_p (const char *__first, const char *__last)
|
||||||
{
|
{
|
||||||
@@ -75,7 +73,6 @@ namespace rpp {
|
|||||||
}
|
}
|
||||||
|
|
||||||
} // _PP_internal
|
} // _PP_internal
|
||||||
|
|
||||||
} // namespace rpp
|
} // namespace rpp
|
||||||
|
|
||||||
#endif // PP_INTERNAL_H
|
#endif // PP_INTERNAL_H
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef DEBUGGER_QWB_ASSERT_H
|
#ifndef DEBUGGER_QWB_ASSERT_H
|
||||||
#define DEBUGGER_QWB_ASSERT_H
|
#define DEBUGGER_QWB_ASSERT_H
|
||||||
|
|
||||||
@@ -41,5 +42,5 @@
|
|||||||
if(cond){}else{qDebug()<<"ASSERTION"<<#cond<<"FAILED";action;}
|
if(cond){}else{qDebug()<<"ASSERTION"<<#cond<<"FAILED";action;}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif // DEBUGGER_QWB_ASSERT_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "attachexternaldialog.h"
|
#include "attachexternaldialog.h"
|
||||||
|
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
@@ -39,6 +40,13 @@
|
|||||||
#include <QStandardItemModel>
|
#include <QStandardItemModel>
|
||||||
#include <QHeaderView>
|
#include <QHeaderView>
|
||||||
|
|
||||||
|
#ifdef Q_OS_WINDOWS
|
||||||
|
#include <windows.h>
|
||||||
|
#include <tlhelp32.h>
|
||||||
|
#include <tchar.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
using namespace Debugger::Internal;
|
using namespace Debugger::Internal;
|
||||||
|
|
||||||
AttachExternalDialog::AttachExternalDialog(QWidget *parent, const QString &pid)
|
AttachExternalDialog::AttachExternalDialog(QWidget *parent, const QString &pid)
|
||||||
@@ -70,7 +78,8 @@ static bool isProcessName(const QString &procname)
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct ProcData {
|
struct ProcData
|
||||||
|
{
|
||||||
QString ppid;
|
QString ppid;
|
||||||
QString name;
|
QString name;
|
||||||
QString state;
|
QString state;
|
||||||
@@ -143,11 +152,6 @@ void AttachExternalDialog::rebuildProcessList()
|
|||||||
|
|
||||||
#ifdef Q_OS_WINDOWS
|
#ifdef Q_OS_WINDOWS
|
||||||
|
|
||||||
#include <windows.h>
|
|
||||||
#include <tlhelp32.h>
|
|
||||||
#include <tchar.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
// Forward declarations:
|
// Forward declarations:
|
||||||
BOOL GetProcessList( );
|
BOOL GetProcessList( );
|
||||||
BOOL ListProcessModules( DWORD dwPID );
|
BOOL ListProcessModules( DWORD dwPID );
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef ATTACHEXTERNALDIALOG_H
|
#ifndef ATTACHEXTERNALDIALOG_H
|
||||||
#define ATTACHEXTERNALDIALOG_H
|
#define ATTACHEXTERNALDIALOG_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "attachremotedialog.h"
|
#include "attachremotedialog.h"
|
||||||
|
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef ATTACHREMOTE_DIALOG_H
|
#ifndef ATTACHREMOTE_DIALOG_H
|
||||||
#define ATTACHREMOTE_DIALOG_H
|
#define ATTACHREMOTE_DIALOG_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "breakhandler.h"
|
#include "breakhandler.h"
|
||||||
|
|
||||||
#include "assert.h"
|
#include "assert.h"
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef DEBUGGER_BREAKHANDLER_H
|
#ifndef DEBUGGER_BREAKHANDLER_H
|
||||||
#define DEBUGGER_BREAKHANDLER_H
|
#define DEBUGGER_BREAKHANDLER_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "breakwindow.h"
|
#include "breakwindow.h"
|
||||||
|
|
||||||
#include "ui_breakcondition.h"
|
#include "ui_breakcondition.h"
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef DEBUGGER_BREAKWINDOW_H
|
#ifndef DEBUGGER_BREAKWINDOW_H
|
||||||
#define DEBUGGER_BREAKWINDOW_H
|
#define DEBUGGER_BREAKWINDOW_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef DEBUGGERCONSTANTS_H
|
#ifndef DEBUGGERCONSTANTS_H
|
||||||
#define DEBUGGERCONSTANTS_H
|
#define DEBUGGERCONSTANTS_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef DEBUGGER_DEBUGGERMANAGER_H
|
#ifndef DEBUGGER_DEBUGGERMANAGER_H
|
||||||
#define DEBUGGER_DEBUGGERMANAGER_H
|
#define DEBUGGER_DEBUGGERMANAGER_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "debuggeroutputwindow.h"
|
#include "debuggeroutputwindow.h"
|
||||||
|
|
||||||
#include <QtCore/QDebug>
|
#include <QtCore/QDebug>
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef DEBUGGER_OUTPUTWINDOW_H
|
#ifndef DEBUGGER_OUTPUTWINDOW_H
|
||||||
#define DEBUGGER_OUTPUTWINDOW_H
|
#define DEBUGGER_OUTPUTWINDOW_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "debuggerplugin.h"
|
#include "debuggerplugin.h"
|
||||||
|
|
||||||
#include "assert.h"
|
#include "assert.h"
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef DEBUGGERPLUGIN_H
|
#ifndef DEBUGGERPLUGIN_H
|
||||||
#define DEBUGGERPLUGIN_H
|
#define DEBUGGERPLUGIN_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "debuggerrunner.h"
|
#include "debuggerrunner.h"
|
||||||
|
|
||||||
#include "assert.h"
|
#include "assert.h"
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef DEBUGGERRUNNER_H
|
#ifndef DEBUGGERRUNNER_H
|
||||||
#define DEBUGGERRUNNER_H
|
#define DEBUGGERRUNNER_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "disassemblerhandler.h"
|
#include "disassemblerhandler.h"
|
||||||
|
|
||||||
#include "assert.h"
|
#include "assert.h"
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef DISASSEMBLERHANDLER_H
|
#ifndef DISASSEMBLERHANDLER_H
|
||||||
#define DISASSEMBLERHANDLER_H
|
#define DISASSEMBLERHANDLER_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "disassemblerwindow.h"
|
#include "disassemblerwindow.h"
|
||||||
|
|
||||||
#include <QAction>
|
#include <QAction>
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef DEBUGGER_DISASSEMBLERWINDOW_H
|
#ifndef DEBUGGER_DISASSEMBLERWINDOW_H
|
||||||
#define DEBUGGER_DISASSEMBLERWINDOW_H
|
#define DEBUGGER_DISASSEMBLERWINDOW_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef DEBUGGER_GDBENGINE_H
|
#ifndef DEBUGGER_GDBENGINE_H
|
||||||
#define DEBUGGER_GDBENGINE_H
|
#define DEBUGGER_GDBENGINE_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "gdbmi.h"
|
#include "gdbmi.h"
|
||||||
#include "assert.h"
|
#include "assert.h"
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "gdboptionpage.h"
|
#include "gdboptionpage.h"
|
||||||
|
|
||||||
#include "gdbengine.h"
|
#include "gdbengine.h"
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef GDBOPTIONPAGE_H
|
#ifndef GDBOPTIONPAGE_H
|
||||||
#define GDBOPTIONPAGE_H
|
#define GDBOPTIONPAGE_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "gdboptionpage.h"
|
#include "gdboptionpage.h"
|
||||||
#include "gdbengine.h"
|
#include "gdbengine.h"
|
||||||
#include "imports.h"
|
#include "imports.h"
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef DEBUGGER_IDEBUGGERENGINE_H
|
#ifndef DEBUGGER_IDEBUGGERENGINE_H
|
||||||
#define DEBUGGER_IDEBUGGERENGINE_H
|
#define DEBUGGER_IDEBUGGERENGINE_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef DEBUGGER_IMPORTS_H
|
#ifndef DEBUGGER_IMPORTS_H
|
||||||
#define DEBUGGER_IMPORTS_H
|
#define DEBUGGER_IMPORTS_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "mode.h"
|
#include "mode.h"
|
||||||
|
|
||||||
#include "assert.h"
|
#include "assert.h"
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef DEBUGGER_DEBUGMODE_H
|
#ifndef DEBUGGER_DEBUGMODE_H
|
||||||
#define DEBUGGER_DEBUGMODE_H
|
#define DEBUGGER_DEBUGMODE_H
|
||||||
|
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#include "moduleshandler.h"
|
#include "moduleshandler.h"
|
||||||
|
|
||||||
#include "assert.h"
|
#include "assert.h"
|
||||||
|
@@ -30,6 +30,7 @@
|
|||||||
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
||||||
**
|
**
|
||||||
***************************************************************************/
|
***************************************************************************/
|
||||||
|
|
||||||
#ifndef DEBUGGER_MODULESHANDLER_H
|
#ifndef DEBUGGER_MODULESHANDLER_H
|
||||||
#define DEBUGGER_MODULESHANDLER_H
|
#define DEBUGGER_MODULESHANDLER_H
|
||||||
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user