apparently i missed this entire directory when introducing PLASMA_EXPORT. but i got 'em this time! ;)

svn path=/trunk/KDE/kdebase/workspace/plasma/lib/; revision=669395
This commit is contained in:
Aaron J. Seigo 2007-05-29 08:02:01 +00:00
parent 3f2e92b6ae
commit 429d8fd708
7 changed files with 14 additions and 14 deletions

View File

@ -22,7 +22,7 @@
#include <QtCore/QObject>
#include <QtGui/QGraphicsItem>
#include <kdemacros.h>
#include <plasma_export.h>
#include <dataengine.h>
//TODO
@ -34,7 +34,7 @@ namespace Plasma
/**
* Class that emulates a QCheckBox inside plasma
*/
class KDE_EXPORT CheckBox : public QObject, public QGraphicsItem
class PLASMA_EXPORT CheckBox : public QObject, public QGraphicsItem
{
Q_OBJECT
public:

View File

@ -22,7 +22,7 @@
#include <QtCore/QRectF>
#include <QtCore/QSizeF>
#include <kdemacros.h>
#include <plasma_export.h>
#include "layoutitem.h"
@ -34,7 +34,7 @@ namespace Plasma
*/
class Widget;
class KDE_EXPORT Layout : public LayoutItem
class PLASMA_EXPORT Layout : public LayoutItem
{
public:
Layout(LayoutItem *parent);

View File

@ -22,7 +22,7 @@
#include <QtCore/QRectF>
#include <QtCore/QSizeF>
#include <kdemacros.h>
#include <plasma_export.h>
namespace Plasma
{
@ -32,7 +32,7 @@ class Layout;
/**
* Base class for Plasma layout-managed items
*/
class KDE_EXPORT LayoutItem
class PLASMA_EXPORT LayoutItem
{
public:
LayoutItem();

View File

@ -22,7 +22,7 @@
#include <QtCore/QObject>
#include <QtGui/QGraphicsTextItem>
#include <kdemacros.h>
#include <plasma_export.h>
#include <dataengine.h>
#include <widgets/layoutitem.h>
@ -33,7 +33,7 @@ namespace Plasma
/**
* Class that emulates a QLineEdit inside plasma
*/
class KDE_EXPORT LineEdit : public QGraphicsTextItem, public LayoutItem
class PLASMA_EXPORT LineEdit : public QGraphicsTextItem, public LayoutItem
{
Q_OBJECT

View File

@ -24,7 +24,7 @@
#include <QtGui/QGraphicsItem>
// KDE includes
#include <kdemacros.h>
#include <plasma_export.h>
#include <dataengine.h>
@ -47,7 +47,7 @@ namespace Plasma
*/
class KDE_EXPORT RadioButton : public QObject, public QGraphicsItem
class PLASMA_EXPORT RadioButton : public QObject, public QGraphicsItem
{
Q_OBJECT

View File

@ -22,7 +22,7 @@
#include <QtCore/QRectF>
#include <QtCore/QSizeF>
#include <kdemacros.h>
#include <plasma_export.h>
#include "layout.h"
@ -34,7 +34,7 @@ class Widget;
/**
* Vertical Box Layout
*/
class KDE_EXPORT VBoxLayout : public Layout
class PLASMA_EXPORT VBoxLayout : public Layout
{
public:
VBoxLayout(LayoutItem *parent = 0);

View File

@ -25,7 +25,7 @@
#include <QtCore/QRectF>
#include <QtCore/QSizeF>
#include <kdemacros.h>
#include <plasma_export.h>
#include "layoutitem.h"
@ -37,7 +37,7 @@ class Layout;
/**
* Class that emulates a QWidget inside plasma
*/
class KDE_EXPORT Widget : public QGraphicsItem, public LayoutItem
class PLASMA_EXPORT Widget : public QGraphicsItem, public LayoutItem
{
public:
Widget(Widget *parent = 0);