header cleanup
svn path=/trunk/KDE/kdebase/workspace/plasma/lib/; revision=656747
This commit is contained in:
parent
2c52eef76b
commit
d8c17250ce
@ -19,8 +19,8 @@
|
||||
#ifndef RUNNER_H
|
||||
#define RUNNER_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QList>
|
||||
#include <QtCore/QObject>
|
||||
#include <QtCore/QList>
|
||||
|
||||
#include <kdemacros.h>
|
||||
|
||||
@ -91,7 +91,7 @@ class KDE_EXPORT AbstractRunner : public QObject
|
||||
*/
|
||||
static List loadRunners( QWidget* parent );
|
||||
|
||||
signals:
|
||||
Q_SIGNALS:
|
||||
/**
|
||||
* When emitted, the interface will update itself to show the new
|
||||
* matches. This is meant to be used by asynchronous runners that will
|
||||
|
4
applet.h
4
applet.h
@ -19,8 +19,8 @@
|
||||
#ifndef PLASMA_APPLET_H
|
||||
#define PLASMA_APPLET_H
|
||||
|
||||
#include <QGraphicsItemGroup>
|
||||
#include <QWidget>
|
||||
#include <QtGui/QGraphicsItemGroup>
|
||||
#include <QtGui/QWidget>
|
||||
|
||||
#include <ksharedconfig.h>
|
||||
|
||||
|
@ -20,9 +20,9 @@
|
||||
#define PLASMA_ENGINE_H
|
||||
|
||||
#include <QAtomic>
|
||||
#include <QHash>
|
||||
#include <QObject>
|
||||
#include <QStringList>
|
||||
#include <QtCore/QHash>
|
||||
#include <QtCore/QObject>
|
||||
#include <QtCore/QStringList>
|
||||
|
||||
#include <kdemacros.h>
|
||||
|
||||
@ -46,7 +46,7 @@ class KDE_EXPORT DataSource : public QObject
|
||||
|
||||
QString name();
|
||||
|
||||
signals:
|
||||
Q_SIGNALS:
|
||||
void data(const DataSource::Data&);
|
||||
|
||||
private:
|
||||
|
@ -19,7 +19,7 @@
|
||||
#ifndef PLASMA_DATAVISUALIZATION_H
|
||||
#define PLASMA_DATAVISUALIZATION_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QtCore/QObject>
|
||||
|
||||
#include "dataengine.h"
|
||||
|
||||
@ -34,7 +34,7 @@ class KDE_EXPORT DataVisualization : public QObject
|
||||
DataVisualization(QObject* parent = 0);
|
||||
virtual ~DataVisualization();
|
||||
|
||||
public slots:
|
||||
public Q_SLOTS:
|
||||
virtual void data(const DataSource::Data&) = 0;
|
||||
|
||||
private:
|
||||
|
@ -19,7 +19,7 @@
|
||||
#ifndef PLASMA_INTERFACE_H
|
||||
#define PLASMA_INTERFACE_H
|
||||
|
||||
#include <QString>
|
||||
#include <QtCore/QString>
|
||||
|
||||
#include <kdemacros.h>
|
||||
|
||||
|
3
svg.h
3
svg.h
@ -23,6 +23,9 @@
|
||||
|
||||
#include <kdemacros.h>
|
||||
|
||||
class QPainter;
|
||||
class QPoint;
|
||||
|
||||
namespace Plasma
|
||||
{
|
||||
|
||||
|
2
theme.h
2
theme.h
@ -42,7 +42,7 @@ class KDE_EXPORT Theme : public QObject
|
||||
QString themeName() const;
|
||||
QString image( const QString& name ) const;
|
||||
|
||||
signals:
|
||||
Q_SIGNALS:
|
||||
void changed();
|
||||
|
||||
private:
|
||||
|
@ -19,8 +19,8 @@
|
||||
#ifndef CHECKBOX_H
|
||||
#define CHECKBOX_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QGraphicsItem>
|
||||
#include <QtCore/QObject>
|
||||
#include <QtGui/QGraphicsItem>
|
||||
|
||||
#include <kdemacros.h>
|
||||
|
||||
@ -59,9 +59,9 @@ class KDE_EXPORT CheckBox : public DataVisualization,public QGraphicsItem
|
||||
void setCheckState(Qt::CheckState state);
|
||||
|
||||
|
||||
public slots:
|
||||
public Q_SLOTS:
|
||||
void data(const DataSource::Data&);
|
||||
signals:
|
||||
Q_SIGNALS:
|
||||
void clicked();
|
||||
protected:
|
||||
//bool isDown();
|
||||
|
@ -19,7 +19,7 @@
|
||||
#ifndef LINEEDIT_H
|
||||
#define LINEEDIT_H
|
||||
|
||||
#include <QGraphicsTextItem>
|
||||
#include <QtGui/QGraphicsTextItem>
|
||||
|
||||
#include <kdemacros.h>
|
||||
|
||||
|
@ -19,9 +19,9 @@
|
||||
#ifndef PUSHBUTTON_H
|
||||
#define PUSHBUTTON_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QGraphicsTextItem>
|
||||
#include <QLayoutItem>
|
||||
#include <QtCore/QObject>
|
||||
#include <QtGui/QGraphicsTextItem>
|
||||
#include <QtGui/QLayoutItem>
|
||||
#include <kdemacros.h>
|
||||
|
||||
#include "datavisualization.h"
|
||||
|
@ -19,7 +19,7 @@
|
||||
#ifndef WIDGET_H_
|
||||
#define WIDGET_H_
|
||||
|
||||
#include <QGraphicsItem>
|
||||
#include <QtGui/QGraphicsItem>
|
||||
|
||||
#include <kdemacros.h>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user