Rename additional instances of KDE to TDE

pull/1/head
Timothy Pearson 13 years ago
parent b3eb7db733
commit 5f88d03c1a

@ -69,7 +69,7 @@ class KConfigBase;
* @see KKeyChooser
* @see KKeyDialog
*/
class KDECORE_EXPORT KAccelAction
class TDECORE_EXPORT KAccelAction
{
public:
/**
@ -363,7 +363,7 @@ class KDECORE_EXPORT KAccelAction
* @short A collection of accelerator actions
* @see KAccelAction
*/
class KDECORE_EXPORT KAccelActions
class TDECORE_EXPORT KAccelActions
{
public:
/**

@ -118,7 +118,7 @@ class QWidget;
* @short Configurable key binding support.
*/
class KDECORE_EXPORT KAccelBase
class TDECORE_EXPORT KAccelBase
{
public:
enum Init { QT_KEYS = 0x00, NATIVE_KEYS = 0x01 };

@ -32,7 +32,7 @@ class KIconPrivate;
* @see KIconTheme
* @see KIconLoader
*/
class KDECORE_EXPORT KIcon
class TDECORE_EXPORT KIcon
{
public:
KIcon() { size = 0; }
@ -176,7 +176,7 @@ inline KIcon::Group operator++(KIcon::Group& group,int) { KIcon::Group ret = gro
* iconloader but can be used by others too.
* @see KIconLoader
*/
class KDECORE_EXPORT KIconTheme
class TDECORE_EXPORT KIconTheme
{
public:
/**

@ -44,7 +44,7 @@ namespace KKeyServer
* @see KKey
* @see KKeyServer
*/
struct KDECORE_EXPORT Sym
struct TDECORE_EXPORT Sym
{
public:
/// the actual value of the symbol
@ -134,7 +134,7 @@ namespace KKeyServer
* Represents a key press.
* @see KKey
*/
struct KDECORE_EXPORT Key
struct TDECORE_EXPORT Key
{
/// Code for native Keys in Qt
enum { CODE_FOR_QT = 256 };
@ -241,7 +241,7 @@ namespace KKeyServer
/**
* TODO: please document this class
*/
struct KDECORE_EXPORT Variations
struct TDECORE_EXPORT Variations
{
enum { MAX_VARIATIONS = 4 };
@ -257,14 +257,14 @@ namespace KKeyServer
};
/// TODO: please document
KDECORE_EXPORT bool initializeMods();
TDECORE_EXPORT bool initializeMods();
/**
* Returns the equivalent X modifier mask of the given modifier flag.
* @param modFlag the generic flags to check
* @return the window system specific flags
*/
KDECORE_EXPORT uint modX( KKey::ModFlag modFlag );
TDECORE_EXPORT uint modX( KKey::ModFlag modFlag );
/**
* Returns true if the current keyboard layout supports the Win key.
@ -272,42 +272,42 @@ namespace KKeyServer
* @return true if the keyboard has a Win key
* @see modXWin()
*/
KDECORE_EXPORT bool keyboardHasWinKey();
TDECORE_EXPORT bool keyboardHasWinKey();
/**
* Returns the X11 Shift modifier mask/flag.
* @return the X11 Shift modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXShift();
TDECORE_EXPORT uint modXShift();
/**
* Returns the X11 Lock modifier mask/flag.
* @return the X11 Lock modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXLock();
TDECORE_EXPORT uint modXLock();
/**
* Returns the X11 Ctrl modifier mask/flag.
* @return the X11 Ctrl modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXCtrl();
TDECORE_EXPORT uint modXCtrl();
/**
* Returns the X11 Alt (Mod1) modifier mask/flag.
* @return the X11 Alt (Mod1) modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXAlt();
TDECORE_EXPORT uint modXAlt();
/**
* Returns the X11 NumLock modifier mask/flag.
* @return the X11 NumLock modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXNumLock();
TDECORE_EXPORT uint modXNumLock();
/**
* Returns the X11 Win (Mod3) modifier mask/flag.
@ -315,14 +315,14 @@ namespace KKeyServer
* @see keyboardHasWinKey()
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXWin();
TDECORE_EXPORT uint modXWin();
/**
* Returns the X11 ScrollLock modifier mask/flag.
* @return the X11 ScrollLock modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXScrollLock();
TDECORE_EXPORT uint modXScrollLock();
/**
* Returns bitwise OR'ed mask containing Shift, Ctrl, Alt, and
@ -335,7 +335,7 @@ namespace KKeyServer
* @see modXWin()
* @see modXScrollLock()
*/
KDECORE_EXPORT uint accelModMaskX();
TDECORE_EXPORT uint accelModMaskX();
/**
* Extracts the symbol from the given Qt key and
@ -346,7 +346,7 @@ namespace KKeyServer
* @see Qt::Key
* @see Sym
*/
KDECORE_EXPORT bool keyQtToSym( int keyQt, uint& sym );
TDECORE_EXPORT bool keyQtToSym( int keyQt, uint& sym );
/**
* Extracts the modifiers from the given Qt key and
@ -356,7 +356,7 @@ namespace KKeyServer
* @return true if successful, false otherwise
* @see Qt::Key
*/
KDECORE_EXPORT bool keyQtToMod( int keyQt, uint& mod );
TDECORE_EXPORT bool keyQtToMod( int keyQt, uint& mod );
/**
* Converts the given symbol to a Qt key code.
@ -366,7 +366,7 @@ namespace KKeyServer
* @see Qt::Key
* @see Sym
*/
KDECORE_EXPORT bool symToKeyQt( uint sym, int& keyQt );
TDECORE_EXPORT bool symToKeyQt( uint sym, int& keyQt );
/**
* Converts the mask of ORed KKey::ModFlag modifiers to
@ -378,7 +378,7 @@ namespace KKeyServer
* @see Qt::Key
* @see KKey
*/
KDECORE_EXPORT bool modToModQt( uint mod, int& modQt );
TDECORE_EXPORT bool modToModQt( uint mod, int& modQt );
/**
* Converts the mask of ORed KKey::ModFlag modifiers to
@ -389,7 +389,7 @@ namespace KKeyServer
* @return true if successful, false otherwise
* @see KKey
*/
KDECORE_EXPORT bool modToModX( uint mod, uint& modX );
TDECORE_EXPORT bool modToModX( uint mod, uint& modX );
/**
* Converts the mask of ORed X11 modifiers to
@ -401,12 +401,12 @@ namespace KKeyServer
* @see Qt::Key
*/
//wrapped for win32
KDECORE_EXPORT bool modXToModQt( uint modX, int& modQt );
TDECORE_EXPORT bool modXToModQt( uint modX, int& modQt );
/**
* Converts the Qt-compatible button state to x11 modifier.
*/
KDECORE_EXPORT int qtButtonStateToMod( Qt::ButtonState s );
TDECORE_EXPORT int qtButtonStateToMod( Qt::ButtonState s );
/**
* Converts the mask of ORed X11 modifiers to
@ -417,7 +417,7 @@ namespace KKeyServer
* @return true if successful, false otherwise
* @see KKey
*/
KDECORE_EXPORT bool modXToMod( uint modX, uint& mod );
TDECORE_EXPORT bool modXToMod( uint modX, uint& mod );
/**
* Converts a X11 key code and a mask of ORed X11 modifiers
@ -430,12 +430,12 @@ namespace KKeyServer
* @see Qt::Key
* @see Sym
*/
KDECORE_EXPORT bool codeXToSym( uchar codeX, uint modX, uint& symX );
TDECORE_EXPORT bool codeXToSym( uchar codeX, uint modX, uint& symX );
/**
* @internal
*/
KDECORE_EXPORT QString modToStringInternal( uint mod );
TDECORE_EXPORT QString modToStringInternal( uint mod );
/**
* Converts the mask of ORed KKey::ModFlag modifiers to a
@ -443,19 +443,19 @@ namespace KKeyServer
* @param mod the mask of ORed KKey::ModFlag modifiers
* @return the user-readable string
*/
KDECORE_EXPORT QString modToStringUser( uint mod );
TDECORE_EXPORT QString modToStringUser( uint mod );
/**
* @internal
* Unimplemented?
*/
KDECORE_EXPORT bool stringToSymMod( const QString&, uint& sym, uint& mod );
TDECORE_EXPORT bool stringToSymMod( const QString&, uint& sym, uint& mod );
/**
* @internal
* Unimplemented?
*/
KDECORE_EXPORT void keyQtToKeyX( uint keyCombQt, unsigned char *pKeyCodeX, uint *pKeySymX, uint *pKeyModX );
TDECORE_EXPORT void keyQtToKeyX( uint keyCombQt, unsigned char *pKeyCodeX, uint *pKeySymX, uint *pKeyModX );
}
#endif // !_KKEYSERVER_X11_H

@ -50,7 +50,7 @@ class KPanelMenuPrivate;
*
* @author The kicker maintainers, Michael Goffioul <tdeprint@swing.be>
*/
class KDEUI_EXPORT KPanelMenu : public KPopupMenu
class TDEUI_EXPORT KPanelMenu : public KPopupMenu
{
Q_OBJECT

@ -37,7 +37,7 @@
*
* @author Waldo Bastian <bastian@kde.org>
*/
class KDECORE_EXPORT KShared {
class TDECORE_EXPORT KShared {
public:
/**
* Standard constructor. This will initialize the reference count

@ -36,7 +36,7 @@ typedef QDict<KSycocaEntry::Ptr> KSycocaEntryDict;
* @internal
* Base class for sycoca factories
*/
class KDECORE_EXPORT KSycocaFactory
class TDECORE_EXPORT KSycocaFactory
{
public:
virtual KSycocaFactoryId factoryId() const = 0;
@ -134,7 +134,7 @@ protected:
/** This, instead of a typedef, allows to declare "class ..." in header files
* @internal
*/
class KDECORE_EXPORT KSycocaFactoryList : public QPtrList<KSycocaFactory>
class TDECORE_EXPORT KSycocaFactoryList : public QPtrList<KSycocaFactory>
{
public:
KSycocaFactoryList() { }

@ -41,7 +41,7 @@ class QPainter;
* KToolBar methods instead.
* @internal
*/
class KDEUI_EXPORT KToolBarButton : public QToolButton
class TDEUI_EXPORT KToolBarButton : public QToolButton
{
Q_OBJECT
@ -319,7 +319,7 @@ private:
* @internal
* @version $Id: ktoolbarbutton.h,v 1.39 2004/12/22 14:08:36 faure Exp $
*/
class KDEUI_EXPORT KToolBarButtonList : public QIntDict<KToolBarButton>
class TDEUI_EXPORT KToolBarButtonList : public QIntDict<KToolBarButton>
{
public:
KToolBarButtonList();

@ -69,7 +69,7 @@ class KConfigBase;
* @see KKeyChooser
* @see KKeyDialog
*/
class KDECORE_EXPORT KAccelAction
class TDECORE_EXPORT KAccelAction
{
public:
/**
@ -363,7 +363,7 @@ class KDECORE_EXPORT KAccelAction
* @short A collection of accelerator actions
* @see KAccelAction
*/
class KDECORE_EXPORT KAccelActions
class TDECORE_EXPORT KAccelActions
{
public:
/**

@ -118,7 +118,7 @@ class QWidget;
* @short Configurable key binding support.
*/
class KDECORE_EXPORT KAccelBase
class TDECORE_EXPORT KAccelBase
{
public:
enum Init { QT_KEYS = 0x00, NATIVE_KEYS = 0x01 };

@ -32,7 +32,7 @@ class KIconPrivate;
* @see KIconTheme
* @see KIconLoader
*/
class KDECORE_EXPORT KIcon
class TDECORE_EXPORT KIcon
{
public:
KIcon() { size = 0; }
@ -176,7 +176,7 @@ inline KIcon::Group operator++(KIcon::Group& group,int) { KIcon::Group ret = gro
* iconloader but can be used by others too.
* @see KIconLoader
*/
class KDECORE_EXPORT KIconTheme
class TDECORE_EXPORT KIconTheme
{
public:
/**

@ -44,7 +44,7 @@ namespace KKeyServer
* @see KKey
* @see KKeyServer
*/
struct KDECORE_EXPORT Sym
struct TDECORE_EXPORT Sym
{
public:
/// the actual value of the symbol
@ -134,7 +134,7 @@ namespace KKeyServer
* Represents a key press.
* @see KKey
*/
struct KDECORE_EXPORT Key
struct TDECORE_EXPORT Key
{
/// Code for native Keys in Qt
enum { CODE_FOR_QT = 256 };
@ -241,7 +241,7 @@ namespace KKeyServer
/**
* TODO: please document this class
*/
struct KDECORE_EXPORT Variations
struct TDECORE_EXPORT Variations
{
enum { MAX_VARIATIONS = 4 };
@ -257,14 +257,14 @@ namespace KKeyServer
};
/// TODO: please document
KDECORE_EXPORT bool initializeMods();
TDECORE_EXPORT bool initializeMods();
/**
* Returns the equivalent X modifier mask of the given modifier flag.
* @param modFlag the generic flags to check
* @return the window system specific flags
*/
KDECORE_EXPORT uint modX( KKey::ModFlag modFlag );
TDECORE_EXPORT uint modX( KKey::ModFlag modFlag );
/**
* Returns true if the current keyboard layout supports the Win key.
@ -272,42 +272,42 @@ namespace KKeyServer
* @return true if the keyboard has a Win key
* @see modXWin()
*/
KDECORE_EXPORT bool keyboardHasWinKey();
TDECORE_EXPORT bool keyboardHasWinKey();
/**
* Returns the X11 Shift modifier mask/flag.
* @return the X11 Shift modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXShift();
TDECORE_EXPORT uint modXShift();
/**
* Returns the X11 Lock modifier mask/flag.
* @return the X11 Lock modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXLock();
TDECORE_EXPORT uint modXLock();
/**
* Returns the X11 Ctrl modifier mask/flag.
* @return the X11 Ctrl modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXCtrl();
TDECORE_EXPORT uint modXCtrl();
/**
* Returns the X11 Alt (Mod1) modifier mask/flag.
* @return the X11 Alt (Mod1) modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXAlt();
TDECORE_EXPORT uint modXAlt();
/**
* Returns the X11 NumLock modifier mask/flag.
* @return the X11 NumLock modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXNumLock();
TDECORE_EXPORT uint modXNumLock();
/**
* Returns the X11 Win (Mod3) modifier mask/flag.
@ -315,14 +315,14 @@ namespace KKeyServer
* @see keyboardHasWinKey()
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXWin();
TDECORE_EXPORT uint modXWin();
/**
* Returns the X11 ScrollLock modifier mask/flag.
* @return the X11 ScrollLock modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXScrollLock();
TDECORE_EXPORT uint modXScrollLock();
/**
* Returns bitwise OR'ed mask containing Shift, Ctrl, Alt, and
@ -335,7 +335,7 @@ namespace KKeyServer
* @see modXWin()
* @see modXScrollLock()
*/
KDECORE_EXPORT uint accelModMaskX();
TDECORE_EXPORT uint accelModMaskX();
/**
* Extracts the symbol from the given Qt key and
@ -346,7 +346,7 @@ namespace KKeyServer
* @see Qt::Key
* @see Sym
*/
KDECORE_EXPORT bool keyQtToSym( int keyQt, uint& sym );
TDECORE_EXPORT bool keyQtToSym( int keyQt, uint& sym );
/**
* Extracts the modifiers from the given Qt key and
@ -356,7 +356,7 @@ namespace KKeyServer
* @return true if successful, false otherwise
* @see Qt::Key
*/
KDECORE_EXPORT bool keyQtToMod( int keyQt, uint& mod );
TDECORE_EXPORT bool keyQtToMod( int keyQt, uint& mod );
/**
* Converts the given symbol to a Qt key code.
@ -366,7 +366,7 @@ namespace KKeyServer
* @see Qt::Key
* @see Sym
*/
KDECORE_EXPORT bool symToKeyQt( uint sym, int& keyQt );
TDECORE_EXPORT bool symToKeyQt( uint sym, int& keyQt );
/**
* Converts the mask of ORed KKey::ModFlag modifiers to
@ -378,7 +378,7 @@ namespace KKeyServer
* @see Qt::Key
* @see KKey
*/
KDECORE_EXPORT bool modToModQt( uint mod, int& modQt );
TDECORE_EXPORT bool modToModQt( uint mod, int& modQt );
/**
* Converts the mask of ORed KKey::ModFlag modifiers to
@ -389,7 +389,7 @@ namespace KKeyServer
* @return true if successful, false otherwise
* @see KKey
*/
KDECORE_EXPORT bool modToModX( uint mod, uint& modX );
TDECORE_EXPORT bool modToModX( uint mod, uint& modX );
/**
* Converts the mask of ORed X11 modifiers to
@ -401,12 +401,12 @@ namespace KKeyServer
* @see Qt::Key
*/
//wrapped for win32
KDECORE_EXPORT bool modXToModQt( uint modX, int& modQt );
TDECORE_EXPORT bool modXToModQt( uint modX, int& modQt );
/**
* Converts the Qt-compatible button state to x11 modifier.
*/
KDECORE_EXPORT int qtButtonStateToMod( Qt::ButtonState s );
TDECORE_EXPORT int qtButtonStateToMod( Qt::ButtonState s );
/**
* Converts the mask of ORed X11 modifiers to
@ -417,7 +417,7 @@ namespace KKeyServer
* @return true if successful, false otherwise
* @see KKey
*/
KDECORE_EXPORT bool modXToMod( uint modX, uint& mod );
TDECORE_EXPORT bool modXToMod( uint modX, uint& mod );
/**
* Converts a X11 key code and a mask of ORed X11 modifiers
@ -430,12 +430,12 @@ namespace KKeyServer
* @see Qt::Key
* @see Sym
*/
KDECORE_EXPORT bool codeXToSym( uchar codeX, uint modX, uint& symX );
TDECORE_EXPORT bool codeXToSym( uchar codeX, uint modX, uint& symX );
/**
* @internal
*/
KDECORE_EXPORT QString modToStringInternal( uint mod );
TDECORE_EXPORT QString modToStringInternal( uint mod );
/**
* Converts the mask of ORed KKey::ModFlag modifiers to a
@ -443,19 +443,19 @@ namespace KKeyServer
* @param mod the mask of ORed KKey::ModFlag modifiers
* @return the user-readable string
*/
KDECORE_EXPORT QString modToStringUser( uint mod );
TDECORE_EXPORT QString modToStringUser( uint mod );
/**
* @internal
* Unimplemented?
*/
KDECORE_EXPORT bool stringToSymMod( const QString&, uint& sym, uint& mod );
TDECORE_EXPORT bool stringToSymMod( const QString&, uint& sym, uint& mod );
/**
* @internal
* Unimplemented?
*/
KDECORE_EXPORT void keyQtToKeyX( uint keyCombQt, unsigned char *pKeyCodeX, uint *pKeySymX, uint *pKeyModX );
TDECORE_EXPORT void keyQtToKeyX( uint keyCombQt, unsigned char *pKeyCodeX, uint *pKeySymX, uint *pKeyModX );
}
#endif // !_KKEYSERVER_X11_H

@ -50,7 +50,7 @@ class KPanelMenuPrivate;
*
* @author The kicker maintainers, Michael Goffioul <tdeprint@swing.be>
*/
class KDEUI_EXPORT KPanelMenu : public KPopupMenu
class TDEUI_EXPORT KPanelMenu : public KPopupMenu
{
Q_OBJECT

@ -37,7 +37,7 @@
*
* @author Waldo Bastian <bastian@kde.org>
*/
class KDECORE_EXPORT KShared {
class TDECORE_EXPORT KShared {
public:
/**
* Standard constructor. This will initialize the reference count

@ -36,7 +36,7 @@ typedef QDict<KSycocaEntry::Ptr> KSycocaEntryDict;
* @internal
* Base class for sycoca factories
*/
class KDECORE_EXPORT KSycocaFactory
class TDECORE_EXPORT KSycocaFactory
{
public:
virtual KSycocaFactoryId factoryId() const = 0;
@ -134,7 +134,7 @@ protected:
/** This, instead of a typedef, allows to declare "class ..." in header files
* @internal
*/
class KDECORE_EXPORT KSycocaFactoryList : public QPtrList<KSycocaFactory>
class TDECORE_EXPORT KSycocaFactoryList : public QPtrList<KSycocaFactory>
{
public:
KSycocaFactoryList() { }

@ -41,7 +41,7 @@ class QPainter;
* KToolBar methods instead.
* @internal
*/
class KDEUI_EXPORT KToolBarButton : public QToolButton
class TDEUI_EXPORT KToolBarButton : public QToolButton
{
Q_OBJECT
@ -319,7 +319,7 @@ private:
* @internal
* @version $Id: ktoolbarbutton.h,v 1.39 2004/12/22 14:08:36 faure Exp $
*/
class KDEUI_EXPORT KToolBarButtonList : public QIntDict<KToolBarButton>
class TDEUI_EXPORT KToolBarButtonList : public QIntDict<KToolBarButton>
{
public:
KToolBarButtonList();

@ -69,7 +69,7 @@ class KConfigBase;
* @see KKeyChooser
* @see KKeyDialog
*/
class KDECORE_EXPORT KAccelAction
class TDECORE_EXPORT KAccelAction
{
public:
/**
@ -363,7 +363,7 @@ class KDECORE_EXPORT KAccelAction
* @short A collection of accelerator actions
* @see KAccelAction
*/
class KDECORE_EXPORT KAccelActions
class TDECORE_EXPORT KAccelActions
{
public:
/**

@ -118,7 +118,7 @@ class QWidget;
* @short Configurable key binding support.
*/
class KDECORE_EXPORT KAccelBase
class TDECORE_EXPORT KAccelBase
{
public:
enum Init { QT_KEYS = 0x00, NATIVE_KEYS = 0x01 };

@ -32,7 +32,7 @@ class KIconPrivate;
* @see KIconTheme
* @see KIconLoader
*/
class KDECORE_EXPORT KIcon
class TDECORE_EXPORT KIcon
{
public:
KIcon() { size = 0; }
@ -176,7 +176,7 @@ inline KIcon::Group operator++(KIcon::Group& group,int) { KIcon::Group ret = gro
* iconloader but can be used by others too.
* @see KIconLoader
*/
class KDECORE_EXPORT KIconTheme
class TDECORE_EXPORT KIconTheme
{
public:
/**

@ -44,7 +44,7 @@ namespace KKeyServer
* @see KKey
* @see KKeyServer
*/
struct KDECORE_EXPORT Sym
struct TDECORE_EXPORT Sym
{
public:
/// the actual value of the symbol
@ -134,7 +134,7 @@ namespace KKeyServer
* Represents a key press.
* @see KKey
*/
struct KDECORE_EXPORT Key
struct TDECORE_EXPORT Key
{
/// Code for native Keys in Qt
enum { CODE_FOR_QT = 256 };
@ -241,7 +241,7 @@ namespace KKeyServer
/**
* TODO: please document this class
*/
struct KDECORE_EXPORT Variations
struct TDECORE_EXPORT Variations
{
enum { MAX_VARIATIONS = 4 };
@ -257,14 +257,14 @@ namespace KKeyServer
};
/// TODO: please document
KDECORE_EXPORT bool initializeMods();
TDECORE_EXPORT bool initializeMods();
/**
* Returns the equivalent X modifier mask of the given modifier flag.
* @param modFlag the generic flags to check
* @return the window system specific flags
*/
KDECORE_EXPORT uint modX( KKey::ModFlag modFlag );
TDECORE_EXPORT uint modX( KKey::ModFlag modFlag );
/**
* Returns true if the current keyboard layout supports the Win key.
@ -272,42 +272,42 @@ namespace KKeyServer
* @return true if the keyboard has a Win key
* @see modXWin()
*/
KDECORE_EXPORT bool keyboardHasWinKey();
TDECORE_EXPORT bool keyboardHasWinKey();
/**
* Returns the X11 Shift modifier mask/flag.
* @return the X11 Shift modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXShift();
TDECORE_EXPORT uint modXShift();
/**
* Returns the X11 Lock modifier mask/flag.
* @return the X11 Lock modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXLock();
TDECORE_EXPORT uint modXLock();
/**
* Returns the X11 Ctrl modifier mask/flag.
* @return the X11 Ctrl modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXCtrl();
TDECORE_EXPORT uint modXCtrl();
/**
* Returns the X11 Alt (Mod1) modifier mask/flag.
* @return the X11 Alt (Mod1) modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXAlt();
TDECORE_EXPORT uint modXAlt();
/**
* Returns the X11 NumLock modifier mask/flag.
* @return the X11 NumLock modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXNumLock();
TDECORE_EXPORT uint modXNumLock();
/**
* Returns the X11 Win (Mod3) modifier mask/flag.
@ -315,14 +315,14 @@ namespace KKeyServer
* @see keyboardHasWinKey()
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXWin();
TDECORE_EXPORT uint modXWin();
/**
* Returns the X11 ScrollLock modifier mask/flag.
* @return the X11 ScrollLock modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXScrollLock();
TDECORE_EXPORT uint modXScrollLock();
/**
* Returns the X11 Mode_switch modifier mask/flag.
@ -330,7 +330,7 @@ namespace KKeyServer
* @see accelModMaskX()
* @since 3.5
*/
KDECORE_EXPORT uint modXModeSwitch();
TDECORE_EXPORT uint modXModeSwitch();
/**
* Returns bitwise OR'ed mask containing Shift, Ctrl, Alt, and
@ -343,7 +343,7 @@ namespace KKeyServer
* @see modXWin()
* @see modXScrollLock()
*/
KDECORE_EXPORT uint accelModMaskX();
TDECORE_EXPORT uint accelModMaskX();
/**
* Extracts the symbol from the given Qt key and
@ -354,7 +354,7 @@ namespace KKeyServer
* @see Qt::Key
* @see Sym
*/
KDECORE_EXPORT bool keyQtToSym( int keyQt, uint& sym );
TDECORE_EXPORT bool keyQtToSym( int keyQt, uint& sym );
/**
* Extracts the modifiers from the given Qt key and
@ -364,7 +364,7 @@ namespace KKeyServer
* @return true if successful, false otherwise
* @see Qt::Key
*/
KDECORE_EXPORT bool keyQtToMod( int keyQt, uint& mod );
TDECORE_EXPORT bool keyQtToMod( int keyQt, uint& mod );
/**
* Converts the given symbol to a Qt key code.
@ -374,7 +374,7 @@ namespace KKeyServer
* @see Qt::Key
* @see Sym
*/
KDECORE_EXPORT bool symToKeyQt( uint sym, int& keyQt );
TDECORE_EXPORT bool symToKeyQt( uint sym, int& keyQt );
/**
* Converts the mask of ORed KKey::ModFlag modifiers to
@ -386,7 +386,7 @@ namespace KKeyServer
* @see Qt::Key
* @see KKey
*/
KDECORE_EXPORT bool modToModQt( uint mod, int& modQt );
TDECORE_EXPORT bool modToModQt( uint mod, int& modQt );
/**
* Converts the mask of ORed KKey::ModFlag modifiers to
@ -397,7 +397,7 @@ namespace KKeyServer
* @return true if successful, false otherwise
* @see KKey
*/
KDECORE_EXPORT bool modToModX( uint mod, uint& modX );
TDECORE_EXPORT bool modToModX( uint mod, uint& modX );
/**
* Converts the mask of ORed X11 modifiers to
@ -409,12 +409,12 @@ namespace KKeyServer
* @see Qt::Key
*/
//wrapped for win32
KDECORE_EXPORT bool modXToModQt( uint modX, int& modQt );
TDECORE_EXPORT bool modXToModQt( uint modX, int& modQt );
/**
* Converts the Qt-compatible button state to x11 modifier.
*/
KDECORE_EXPORT int qtButtonStateToMod( Qt::ButtonState s );
TDECORE_EXPORT int qtButtonStateToMod( Qt::ButtonState s );
/**
* Converts the mask of ORed X11 modifiers to
@ -425,7 +425,7 @@ namespace KKeyServer
* @return true if successful, false otherwise
* @see KKey
*/
KDECORE_EXPORT bool modXToMod( uint modX, uint& mod );
TDECORE_EXPORT bool modXToMod( uint modX, uint& mod );
/**
* Converts a X11 key code and a mask of ORed X11 modifiers
@ -438,12 +438,12 @@ namespace KKeyServer
* @see Qt::Key
* @see Sym
*/
KDECORE_EXPORT bool codeXToSym( uchar codeX, uint modX, uint& symX );
TDECORE_EXPORT bool codeXToSym( uchar codeX, uint modX, uint& symX );
/**
* @internal
*/
KDECORE_EXPORT QString modToStringInternal( uint mod );
TDECORE_EXPORT QString modToStringInternal( uint mod );
/**
* Converts the mask of ORed KKey::ModFlag modifiers to a
@ -451,19 +451,19 @@ namespace KKeyServer
* @param mod the mask of ORed KKey::ModFlag modifiers
* @return the user-readable string
*/
KDECORE_EXPORT QString modToStringUser( uint mod );
TDECORE_EXPORT QString modToStringUser( uint mod );
/**
* @internal
* Unimplemented?
*/
KDECORE_EXPORT bool stringToSymMod( const QString&, uint& sym, uint& mod );
TDECORE_EXPORT bool stringToSymMod( const QString&, uint& sym, uint& mod );
/**
* @internal
* Unimplemented?
*/
KDECORE_EXPORT void keyQtToKeyX( uint keyCombQt, unsigned char *pKeyCodeX, uint *pKeySymX, uint *pKeyModX );
TDECORE_EXPORT void keyQtToKeyX( uint keyCombQt, unsigned char *pKeyCodeX, uint *pKeySymX, uint *pKeyModX );
}
#endif // !_KKEYSERVER_X11_H

@ -50,7 +50,7 @@ class KPanelMenuPrivate;
*
* @author The kicker maintainers, Michael Goffioul <tdeprint@swing.be>
*/
class KDEUI_EXPORT KPanelMenu : public KPopupMenu
class TDEUI_EXPORT KPanelMenu : public KPopupMenu
{
Q_OBJECT

@ -37,7 +37,7 @@
*
* @author Waldo Bastian <bastian@kde.org>
*/
class KDECORE_EXPORT KShared {
class TDECORE_EXPORT KShared {
public:
/**
* Standard constructor. This will initialize the reference count

@ -36,7 +36,7 @@ typedef QDict<KSycocaEntry::Ptr> KSycocaEntryDict;
* @internal
* Base class for sycoca factories
*/
class KDECORE_EXPORT KSycocaFactory
class TDECORE_EXPORT KSycocaFactory
{
public:
virtual KSycocaFactoryId factoryId() const = 0;
@ -134,7 +134,7 @@ protected:
/** This, instead of a typedef, allows to declare "class ..." in header files
* @internal
*/
class KDECORE_EXPORT KSycocaFactoryList : public QPtrList<KSycocaFactory>
class TDECORE_EXPORT KSycocaFactoryList : public QPtrList<KSycocaFactory>
{
public:
KSycocaFactoryList() { }

@ -41,7 +41,7 @@ class QPainter;
* KToolBar methods instead.
* @internal
*/
class KDEUI_EXPORT KToolBarButton : public QToolButton
class TDEUI_EXPORT KToolBarButton : public QToolButton
{
Q_OBJECT
@ -319,7 +319,7 @@ private:
* @internal
* @version $Id: ktoolbarbutton.h 372745 2004-12-22 14:08:36Z dfaure $
*/
class KDEUI_EXPORT KToolBarButtonList : public QIntDict<KToolBarButton>
class TDEUI_EXPORT KToolBarButtonList : public QIntDict<KToolBarButton>
{
public:
KToolBarButtonList();

@ -69,7 +69,7 @@ class KConfigBase;
* @see KKeyChooser
* @see KKeyDialog
*/
class KDECORE_EXPORT KAccelAction
class TDECORE_EXPORT KAccelAction
{
public:
/**
@ -363,7 +363,7 @@ class KDECORE_EXPORT KAccelAction
* @short A collection of accelerator actions
* @see KAccelAction
*/
class KDECORE_EXPORT KAccelActions
class TDECORE_EXPORT KAccelActions
{
public:
/**

@ -118,7 +118,7 @@ class QWidget;
* @short Configurable key binding support.
*/
class KDECORE_EXPORT KAccelBase
class TDECORE_EXPORT KAccelBase
{
public:
enum Init { QT_KEYS = 0x00, NATIVE_KEYS = 0x01 };

@ -32,7 +32,7 @@ class KIconPrivate;
* @see KIconTheme
* @see KIconLoader
*/
class KDECORE_EXPORT KIcon
class TDECORE_EXPORT KIcon
{
public:
KIcon() { size = 0; }
@ -176,7 +176,7 @@ inline KIcon::Group operator++(KIcon::Group& group,int) { KIcon::Group ret = gro
* iconloader but can be used by others too.
* @see KIconLoader
*/
class KDECORE_EXPORT KIconTheme
class TDECORE_EXPORT KIconTheme
{
public:
/**

@ -44,7 +44,7 @@ namespace KKeyServer
* @see KKey
* @see KKeyServer
*/
struct KDECORE_EXPORT Sym
struct TDECORE_EXPORT Sym
{
public:
/// the actual value of the symbol
@ -134,7 +134,7 @@ namespace KKeyServer
* Represents a key press.
* @see KKey
*/
struct KDECORE_EXPORT Key
struct TDECORE_EXPORT Key
{
/// Code for native Keys in Qt
enum { CODE_FOR_QT = 256 };
@ -241,7 +241,7 @@ namespace KKeyServer
/**
* TODO: please document this class
*/
struct KDECORE_EXPORT Variations
struct TDECORE_EXPORT Variations
{
enum { MAX_VARIATIONS = 4 };
@ -257,14 +257,14 @@ namespace KKeyServer
};
/// TODO: please document
KDECORE_EXPORT bool initializeMods();
TDECORE_EXPORT bool initializeMods();
/**
* Returns the equivalent X modifier mask of the given modifier flag.
* @param modFlag the generic flags to check
* @return the window system specific flags
*/
KDECORE_EXPORT uint modX( KKey::ModFlag modFlag );
TDECORE_EXPORT uint modX( KKey::ModFlag modFlag );
/**
* Returns true if the current keyboard layout supports the Win key.
@ -272,42 +272,42 @@ namespace KKeyServer
* @return true if the keyboard has a Win key
* @see modXWin()
*/
KDECORE_EXPORT bool keyboardHasWinKey();
TDECORE_EXPORT bool keyboardHasWinKey();
/**
* Returns the X11 Shift modifier mask/flag.
* @return the X11 Shift modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXShift();
TDECORE_EXPORT uint modXShift();
/**
* Returns the X11 Lock modifier mask/flag.
* @return the X11 Lock modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXLock();
TDECORE_EXPORT uint modXLock();
/**
* Returns the X11 Ctrl modifier mask/flag.
* @return the X11 Ctrl modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXCtrl();
TDECORE_EXPORT uint modXCtrl();
/**
* Returns the X11 Alt (Mod1) modifier mask/flag.
* @return the X11 Alt (Mod1) modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXAlt();
TDECORE_EXPORT uint modXAlt();
/**
* Returns the X11 NumLock modifier mask/flag.
* @return the X11 NumLock modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXNumLock();
TDECORE_EXPORT uint modXNumLock();
/**
* Returns the X11 Win (Mod3) modifier mask/flag.
@ -315,14 +315,14 @@ namespace KKeyServer
* @see keyboardHasWinKey()
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXWin();
TDECORE_EXPORT uint modXWin();
/**
* Returns the X11 ScrollLock modifier mask/flag.
* @return the X11 ScrollLock modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXScrollLock();
TDECORE_EXPORT uint modXScrollLock();
/**
* Returns the X11 Mode_switch modifier mask/flag.
@ -330,7 +330,7 @@ namespace KKeyServer
* @see accelModMaskX()
* @since 3.5
*/
KDECORE_EXPORT uint modXModeSwitch();
TDECORE_EXPORT uint modXModeSwitch();
/**
* Returns bitwise OR'ed mask containing Shift, Ctrl, Alt, and
@ -343,7 +343,7 @@ namespace KKeyServer
* @see modXWin()
* @see modXScrollLock()
*/
KDECORE_EXPORT uint accelModMaskX();
TDECORE_EXPORT uint accelModMaskX();
/**
* Extracts the symbol from the given Qt key and
@ -354,7 +354,7 @@ namespace KKeyServer
* @see Qt::Key
* @see Sym
*/
KDECORE_EXPORT bool keyQtToSym( int keyQt, uint& sym );
TDECORE_EXPORT bool keyQtToSym( int keyQt, uint& sym );
/**
* Extracts the modifiers from the given Qt key and
@ -364,7 +364,7 @@ namespace KKeyServer
* @return true if successful, false otherwise
* @see Qt::Key
*/
KDECORE_EXPORT bool keyQtToMod( int keyQt, uint& mod );
TDECORE_EXPORT bool keyQtToMod( int keyQt, uint& mod );
/**
* Converts the given symbol to a Qt key code.
@ -374,7 +374,7 @@ namespace KKeyServer
* @see Qt::Key
* @see Sym
*/
KDECORE_EXPORT bool symToKeyQt( uint sym, int& keyQt );
TDECORE_EXPORT bool symToKeyQt( uint sym, int& keyQt );
/**
* Converts the mask of ORed KKey::ModFlag modifiers to
@ -386,7 +386,7 @@ namespace KKeyServer
* @see Qt::Key
* @see KKey
*/
KDECORE_EXPORT bool modToModQt( uint mod, int& modQt );
TDECORE_EXPORT bool modToModQt( uint mod, int& modQt );
/**
* Converts the mask of ORed KKey::ModFlag modifiers to
@ -397,7 +397,7 @@ namespace KKeyServer
* @return true if successful, false otherwise
* @see KKey
*/
KDECORE_EXPORT bool modToModX( uint mod, uint& modX );
TDECORE_EXPORT bool modToModX( uint mod, uint& modX );
/**
* Converts the mask of ORed X11 modifiers to
@ -409,12 +409,12 @@ namespace KKeyServer
* @see Qt::Key
*/
//wrapped for win32
KDECORE_EXPORT bool modXToModQt( uint modX, int& modQt );
TDECORE_EXPORT bool modXToModQt( uint modX, int& modQt );
/**
* Converts the Qt-compatible button state to x11 modifier.
*/
KDECORE_EXPORT int qtButtonStateToMod( Qt::ButtonState s );
TDECORE_EXPORT int qtButtonStateToMod( Qt::ButtonState s );
/**
* Converts the mask of ORed X11 modifiers to
@ -425,7 +425,7 @@ namespace KKeyServer
* @return true if successful, false otherwise
* @see KKey
*/
KDECORE_EXPORT bool modXToMod( uint modX, uint& mod );
TDECORE_EXPORT bool modXToMod( uint modX, uint& mod );
/**
* Converts a X11 key code and a mask of ORed X11 modifiers
@ -438,12 +438,12 @@ namespace KKeyServer
* @see Qt::Key
* @see Sym
*/
KDECORE_EXPORT bool codeXToSym( uchar codeX, uint modX, uint& symX );
TDECORE_EXPORT bool codeXToSym( uchar codeX, uint modX, uint& symX );
/**
* @internal
*/
KDECORE_EXPORT QString modToStringInternal( uint mod );
TDECORE_EXPORT QString modToStringInternal( uint mod );
/**
* Converts the mask of ORed KKey::ModFlag modifiers to a
@ -451,19 +451,19 @@ namespace KKeyServer
* @param mod the mask of ORed KKey::ModFlag modifiers
* @return the user-readable string
*/
KDECORE_EXPORT QString modToStringUser( uint mod );
TDECORE_EXPORT QString modToStringUser( uint mod );
/**
* @internal
* Unimplemented?
*/
KDECORE_EXPORT bool stringToSymMod( const QString&, uint& sym, uint& mod );
TDECORE_EXPORT bool stringToSymMod( const QString&, uint& sym, uint& mod );
/**
* @internal
* Unimplemented?
*/
KDECORE_EXPORT void keyQtToKeyX( uint keyCombQt, unsigned char *pKeyCodeX, uint *pKeySymX, uint *pKeyModX );
TDECORE_EXPORT void keyQtToKeyX( uint keyCombQt, unsigned char *pKeyCodeX, uint *pKeySymX, uint *pKeyModX );
}
#endif // !_KKEYSERVER_X11_H

@ -50,7 +50,7 @@ class KPanelMenuPrivate;
*
* @author The kicker maintainers, Michael Goffioul <tdeprint@swing.be>
*/
class KDEUI_EXPORT KPanelMenu : public KPopupMenu
class TDEUI_EXPORT KPanelMenu : public KPopupMenu
{
Q_OBJECT

@ -37,7 +37,7 @@
*
* @author Waldo Bastian <bastian@kde.org>
*/
class KDECORE_EXPORT KShared {
class TDECORE_EXPORT KShared {
public:
/**
* Standard constructor. This will initialize the reference count

@ -36,7 +36,7 @@ typedef QDict<KSycocaEntry::Ptr> KSycocaEntryDict;
* @internal
* Base class for sycoca factories
*/
class KDECORE_EXPORT KSycocaFactory
class TDECORE_EXPORT KSycocaFactory
{
public:
virtual KSycocaFactoryId factoryId() const = 0;
@ -134,7 +134,7 @@ protected:
/** This, instead of a typedef, allows to declare "class ..." in header files
* @internal
*/
class KDECORE_EXPORT KSycocaFactoryList : public QPtrList<KSycocaFactory>
class TDECORE_EXPORT KSycocaFactoryList : public QPtrList<KSycocaFactory>
{
public:
KSycocaFactoryList() { }

@ -41,7 +41,7 @@ class QPainter;
* KToolBar methods instead.
* @internal
*/
class KDEUI_EXPORT KToolBarButton : public QToolButton
class TDEUI_EXPORT KToolBarButton : public QToolButton
{
Q_OBJECT
@ -319,7 +319,7 @@ private:
* @internal
* @version $Id: ktoolbarbutton.h 372745 2004-12-22 14:08:36Z dfaure $
*/
class KDEUI_EXPORT KToolBarButtonList : public QIntDict<KToolBarButton>
class TDEUI_EXPORT KToolBarButtonList : public QIntDict<KToolBarButton>
{
public:
KToolBarButtonList();

@ -69,7 +69,7 @@ class KConfigBase;
* @see KKeyChooser
* @see KKeyDialog
*/
class KDECORE_EXPORT KAccelAction
class TDECORE_EXPORT KAccelAction
{
public:
/**
@ -366,7 +366,7 @@ class KDECORE_EXPORT KAccelAction
* @short A collection of accelerator actions
* @see KAccelAction
*/
class KDECORE_EXPORT KAccelActions
class TDECORE_EXPORT KAccelActions
{
public:
/**

@ -118,7 +118,7 @@ class QWidget;
* @short Configurable key binding support.
*/
class KDECORE_EXPORT KAccelBase
class TDECORE_EXPORT KAccelBase
{
public:
/** Initialization mode of the KAccelBase, used in constructor. */

@ -32,7 +32,7 @@ class KIconPrivate;
* @see KIconTheme
* @see KIconLoader
*/
class KDECORE_EXPORT KIcon
class TDECORE_EXPORT KIcon
{
public:
KIcon() { size = 0; }
@ -176,7 +176,7 @@ inline KIcon::Group operator++(KIcon::Group& group,int) { KIcon::Group ret = gro
* iconloader but can be used by others too.
* @see KIconLoader
*/
class KDECORE_EXPORT KIconTheme
class TDECORE_EXPORT KIconTheme
{
public:
/**

@ -44,7 +44,7 @@ namespace KKeyServer
* @see KKey
* @see KKeyServer
*/
struct KDECORE_EXPORT Sym
struct TDECORE_EXPORT Sym
{
public:
/// the actual value of the symbol
@ -134,7 +134,7 @@ namespace KKeyServer
* Represents a key press.
* @see KKey
*/
struct KDECORE_EXPORT Key
struct TDECORE_EXPORT Key
{
/// Code for native Keys in Qt
enum { CODE_FOR_QT = 256 };
@ -241,7 +241,7 @@ namespace KKeyServer
/**
* TODO: please document this class
*/
struct KDECORE_EXPORT Variations
struct TDECORE_EXPORT Variations
{
enum { MAX_VARIATIONS = 4 };
@ -257,14 +257,14 @@ namespace KKeyServer
};
/// TODO: please document
KDECORE_EXPORT bool initializeMods();
TDECORE_EXPORT bool initializeMods();
/**
* Returns the equivalent X modifier mask of the given modifier flag.
* @param modFlag the generic flags to check
* @return the window system specific flags
*/
KDECORE_EXPORT uint modX( KKey::ModFlag modFlag );
TDECORE_EXPORT uint modX( KKey::ModFlag modFlag );
/**
* Returns true if the current keyboard layout supports the Win key.
@ -272,42 +272,42 @@ namespace KKeyServer
* @return true if the keyboard has a Win key
* @see modXWin()
*/
KDECORE_EXPORT bool keyboardHasWinKey();
TDECORE_EXPORT bool keyboardHasWinKey();
/**
* Returns the X11 Shift modifier mask/flag.
* @return the X11 Shift modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXShift();
TDECORE_EXPORT uint modXShift();
/**
* Returns the X11 Lock modifier mask/flag.
* @return the X11 Lock modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXLock();
TDECORE_EXPORT uint modXLock();
/**
* Returns the X11 Ctrl modifier mask/flag.
* @return the X11 Ctrl modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXCtrl();
TDECORE_EXPORT uint modXCtrl();
/**
* Returns the X11 Alt (Mod1) modifier mask/flag.
* @return the X11 Alt (Mod1) modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXAlt();
TDECORE_EXPORT uint modXAlt();
/**
* Returns the X11 NumLock modifier mask/flag.
* @return the X11 NumLock modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXNumLock();
TDECORE_EXPORT uint modXNumLock();
/**
* Returns the X11 Win (Mod3) modifier mask/flag.
@ -315,14 +315,14 @@ namespace KKeyServer
* @see keyboardHasWinKey()
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXWin();
TDECORE_EXPORT uint modXWin();
/**
* Returns the X11 ScrollLock modifier mask/flag.
* @return the X11 ScrollLock modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXScrollLock();
TDECORE_EXPORT uint modXScrollLock();
/**
* Returns the X11 Mode_switch modifier mask/flag.
@ -330,7 +330,7 @@ namespace KKeyServer
* @see accelModMaskX()
* @since 3.5
*/
KDECORE_EXPORT uint modXModeSwitch();
TDECORE_EXPORT uint modXModeSwitch();
/**
* Returns bitwise OR'ed mask containing Shift, Ctrl, Alt, and
@ -343,7 +343,7 @@ namespace KKeyServer
* @see modXWin()
* @see modXScrollLock()
*/
KDECORE_EXPORT uint accelModMaskX();
TDECORE_EXPORT uint accelModMaskX();
/**
* Extracts the symbol from the given Qt key and
@ -354,7 +354,7 @@ namespace KKeyServer
* @see Qt::Key
* @see Sym
*/
KDECORE_EXPORT bool keyQtToSym( int keyQt, uint& sym );
TDECORE_EXPORT bool keyQtToSym( int keyQt, uint& sym );
/**
* Extracts the modifiers from the given Qt key and
@ -364,7 +364,7 @@ namespace KKeyServer
* @return true if successful, false otherwise
* @see Qt::Key
*/
KDECORE_EXPORT bool keyQtToMod( int keyQt, uint& mod );
TDECORE_EXPORT bool keyQtToMod( int keyQt, uint& mod );
/**
* Converts the given symbol to a Qt key code.
@ -374,7 +374,7 @@ namespace KKeyServer
* @see Qt::Key
* @see Sym
*/
KDECORE_EXPORT bool symToKeyQt( uint sym, int& keyQt );
TDECORE_EXPORT bool symToKeyQt( uint sym, int& keyQt );
/**
* Converts the mask of ORed KKey::ModFlag modifiers to
@ -386,7 +386,7 @@ namespace KKeyServer
* @see Qt::Key
* @see KKey
*/
KDECORE_EXPORT bool modToModQt( uint mod, int& modQt );
TDECORE_EXPORT bool modToModQt( uint mod, int& modQt );
/**
* Converts the mask of ORed KKey::ModFlag modifiers to
@ -397,7 +397,7 @@ namespace KKeyServer
* @return true if successful, false otherwise
* @see KKey
*/
KDECORE_EXPORT bool modToModX( uint mod, uint& modX );
TDECORE_EXPORT bool modToModX( uint mod, uint& modX );
/**
* Converts the mask of ORed X11 modifiers to
@ -409,12 +409,12 @@ namespace KKeyServer
* @see Qt::Key
*/
//wrapped for win32
KDECORE_EXPORT bool modXToModQt( uint modX, int& modQt );
TDECORE_EXPORT bool modXToModQt( uint modX, int& modQt );
/**
* Converts the Qt-compatible button state to x11 modifier.
*/
KDECORE_EXPORT int qtButtonStateToMod( Qt::ButtonState s );
TDECORE_EXPORT int qtButtonStateToMod( Qt::ButtonState s );
/**
* Converts the mask of ORed X11 modifiers to
@ -425,7 +425,7 @@ namespace KKeyServer
* @return true if successful, false otherwise
* @see KKey
*/
KDECORE_EXPORT bool modXToMod( uint modX, uint& mod );
TDECORE_EXPORT bool modXToMod( uint modX, uint& mod );
/**
* Converts a X11 key code and a mask of ORed X11 modifiers
@ -438,12 +438,12 @@ namespace KKeyServer
* @see Qt::Key
* @see Sym
*/
KDECORE_EXPORT bool codeXToSym( uchar codeX, uint modX, uint& symX );
TDECORE_EXPORT bool codeXToSym( uchar codeX, uint modX, uint& symX );
/**
* @internal
*/
KDECORE_EXPORT QString modToStringInternal( uint mod );
TDECORE_EXPORT QString modToStringInternal( uint mod );
/**
* Converts the mask of ORed KKey::ModFlag modifiers to a
@ -451,7 +451,7 @@ namespace KKeyServer
* @param mod the mask of ORed KKey::ModFlag modifiers
* @return the user-readable string
*/
KDECORE_EXPORT QString modToStringUser( uint mod );
TDECORE_EXPORT QString modToStringUser( uint mod );
/**
* Converts the modifier given as user-readable string
@ -459,19 +459,19 @@ namespace KKeyServer
* @internal
* @since 3.5
*/
KDECORE_EXPORT uint stringUserToMod( const QString& mod );
TDECORE_EXPORT uint stringUserToMod( const QString& mod );
/**
* @internal
* Unimplemented?
*/
KDECORE_EXPORT bool stringToSymMod( const QString&, uint& sym, uint& mod );
TDECORE_EXPORT bool stringToSymMod( const QString&, uint& sym, uint& mod );
/**
* @internal
* Unimplemented?
*/
KDECORE_EXPORT void keyQtToKeyX( uint keyCombQt, unsigned char *pKeyCodeX, uint *pKeySymX, uint *pKeyModX );
TDECORE_EXPORT void keyQtToKeyX( uint keyCombQt, unsigned char *pKeyCodeX, uint *pKeySymX, uint *pKeyModX );
}
#endif // !_KKEYSERVER_X11_H

@ -50,7 +50,7 @@ class KPanelMenuPrivate;
*
* @author The kicker maintainers, Michael Goffioul <tdeprint@swing.be>
*/
class KDEUI_EXPORT KPanelMenu : public KPopupMenu
class TDEUI_EXPORT KPanelMenu : public KPopupMenu
{
Q_OBJECT

@ -37,7 +37,7 @@
*
* @author Waldo Bastian <bastian@kde.org>
*/
class KDECORE_EXPORT KShared {
class TDECORE_EXPORT KShared {
public:
/**
* Standard constructor. This will initialize the reference count

@ -36,7 +36,7 @@ typedef QDict<KSycocaEntry::Ptr> KSycocaEntryDict;
* @internal
* Base class for sycoca factories
*/
class KDECORE_EXPORT KSycocaFactory
class TDECORE_EXPORT KSycocaFactory
{
public:
virtual KSycocaFactoryId factoryId() const = 0;
@ -134,7 +134,7 @@ protected:
/** This, instead of a typedef, allows to declare "class ..." in header files
* @internal
*/
class KDECORE_EXPORT KSycocaFactoryList : public QPtrList<KSycocaFactory>
class TDECORE_EXPORT KSycocaFactoryList : public QPtrList<KSycocaFactory>
{
public:
KSycocaFactoryList() { }

@ -41,7 +41,7 @@ class QPainter;
* KToolBar methods instead.
* @internal
*/
class KDEUI_EXPORT KToolBarButton : public QToolButton
class TDEUI_EXPORT KToolBarButton : public QToolButton
{
Q_OBJECT
@ -320,7 +320,7 @@ private:
* @internal
* @version $Id: ktoolbarbutton.h 465272 2005-09-29 09:47:40Z mueller $
*/
class KDEUI_EXPORT KToolBarButtonList : public QIntDict<KToolBarButton>
class TDEUI_EXPORT KToolBarButtonList : public QIntDict<KToolBarButton>
{
public:
KToolBarButtonList();

@ -69,7 +69,7 @@ class KConfigBase;
* @see KKeyChooser
* @see KKeyDialog
*/
class KDECORE_EXPORT KAccelAction
class TDECORE_EXPORT KAccelAction
{
public:
/**
@ -366,7 +366,7 @@ class KDECORE_EXPORT KAccelAction
* @short A collection of accelerator actions
* @see KAccelAction
*/
class KDECORE_EXPORT KAccelActions
class TDECORE_EXPORT KAccelActions
{
public:
/**

@ -118,7 +118,7 @@ class QWidget;
* @short Configurable key binding support.
*/
class KDECORE_EXPORT KAccelBase
class TDECORE_EXPORT KAccelBase
{
public:
/** Initialization mode of the KAccelBase, used in constructor. */

@ -32,7 +32,7 @@ class KIconPrivate;
* @see KIconTheme
* @see KIconLoader
*/
class KDECORE_EXPORT KIcon
class TDECORE_EXPORT KIcon
{
public:
KIcon() { size = 0; }
@ -176,7 +176,7 @@ inline KIcon::Group operator++(KIcon::Group& group,int) { KIcon::Group ret = gro
* iconloader but can be used by others too.
* @see KIconLoader
*/
class KDECORE_EXPORT KIconTheme
class TDECORE_EXPORT KIconTheme
{
public:
/**

@ -44,7 +44,7 @@ namespace KKeyServer
* @see KKey
* @see KKeyServer
*/
struct KDECORE_EXPORT Sym
struct TDECORE_EXPORT Sym
{
public:
/// the actual value of the symbol
@ -134,7 +134,7 @@ namespace KKeyServer
* Represents a key press.
* @see KKey
*/
struct KDECORE_EXPORT Key
struct TDECORE_EXPORT Key
{
/// Code for native Keys in Qt
enum { CODE_FOR_QT = 256 };
@ -241,7 +241,7 @@ namespace KKeyServer
/**
* TODO: please document this class
*/
struct KDECORE_EXPORT Variations
struct TDECORE_EXPORT Variations
{
enum { MAX_VARIATIONS = 4 };
@ -257,14 +257,14 @@ namespace KKeyServer
};
/// TODO: please document
KDECORE_EXPORT bool initializeMods();
TDECORE_EXPORT bool initializeMods();
/**
* Returns the equivalent X modifier mask of the given modifier flag.
* @param modFlag the generic flags to check
* @return the window system specific flags
*/
KDECORE_EXPORT uint modX( KKey::ModFlag modFlag );
TDECORE_EXPORT uint modX( KKey::ModFlag modFlag );
/**
* Returns true if the current keyboard layout supports the Win key.
@ -272,42 +272,42 @@ namespace KKeyServer
* @return true if the keyboard has a Win key
* @see modXWin()
*/
KDECORE_EXPORT bool keyboardHasWinKey();
TDECORE_EXPORT bool keyboardHasWinKey();
/**
* Returns the X11 Shift modifier mask/flag.
* @return the X11 Shift modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXShift();
TDECORE_EXPORT uint modXShift();
/**
* Returns the X11 Lock modifier mask/flag.
* @return the X11 Lock modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXLock();
TDECORE_EXPORT uint modXLock();
/**
* Returns the X11 Ctrl modifier mask/flag.
* @return the X11 Ctrl modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXCtrl();
TDECORE_EXPORT uint modXCtrl();
/**
* Returns the X11 Alt (Mod1) modifier mask/flag.
* @return the X11 Alt (Mod1) modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXAlt();
TDECORE_EXPORT uint modXAlt();
/**
* Returns the X11 NumLock modifier mask/flag.
* @return the X11 NumLock modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXNumLock();
TDECORE_EXPORT uint modXNumLock();
/**
* Returns the X11 Win (Mod3) modifier mask/flag.
@ -315,14 +315,14 @@ namespace KKeyServer
* @see keyboardHasWinKey()
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXWin();
TDECORE_EXPORT uint modXWin();
/**
* Returns the X11 ScrollLock modifier mask/flag.
* @return the X11 ScrollLock modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXScrollLock();
TDECORE_EXPORT uint modXScrollLock();
/**
* Returns the X11 Mode_switch modifier mask/flag.
@ -330,7 +330,7 @@ namespace KKeyServer
* @see accelModMaskX()
* @since 3.5
*/
KDECORE_EXPORT uint modXModeSwitch();
TDECORE_EXPORT uint modXModeSwitch();
/**
* Returns bitwise OR'ed mask containing Shift, Ctrl, Alt, and
@ -343,7 +343,7 @@ namespace KKeyServer
* @see modXWin()
* @see modXScrollLock()
*/
KDECORE_EXPORT uint accelModMaskX();
TDECORE_EXPORT uint accelModMaskX();
/**
* Extracts the symbol from the given Qt key and
@ -354,7 +354,7 @@ namespace KKeyServer
* @see Qt::Key
* @see Sym
*/
KDECORE_EXPORT bool keyQtToSym( int keyQt, uint& sym );
TDECORE_EXPORT bool keyQtToSym( int keyQt, uint& sym );
/**
* Extracts the modifiers from the given Qt key and
@ -364,7 +364,7 @@ namespace KKeyServer
* @return true if successful, false otherwise
* @see Qt::Key
*/
KDECORE_EXPORT bool keyQtToMod( int keyQt, uint& mod );
TDECORE_EXPORT bool keyQtToMod( int keyQt, uint& mod );
/**
* Converts the given symbol to a Qt key code.
@ -374,7 +374,7 @@ namespace KKeyServer
* @see Qt::Key
* @see Sym
*/
KDECORE_EXPORT bool symToKeyQt( uint sym, int& keyQt );
TDECORE_EXPORT bool symToKeyQt( uint sym, int& keyQt );
/**
* Converts the mask of ORed KKey::ModFlag modifiers to
@ -386,7 +386,7 @@ namespace KKeyServer
* @see Qt::Key
* @see KKey
*/
KDECORE_EXPORT bool modToModQt( uint mod, int& modQt );
TDECORE_EXPORT bool modToModQt( uint mod, int& modQt );
/**
* Converts the mask of ORed KKey::ModFlag modifiers to
@ -397,7 +397,7 @@ namespace KKeyServer
* @return true if successful, false otherwise
* @see KKey
*/
KDECORE_EXPORT bool modToModX( uint mod, uint& modX );
TDECORE_EXPORT bool modToModX( uint mod, uint& modX );
/**
* Converts the mask of ORed X11 modifiers to
@ -409,12 +409,12 @@ namespace KKeyServer
* @see Qt::Key
*/
//wrapped for win32
KDECORE_EXPORT bool modXToModQt( uint modX, int& modQt );
TDECORE_EXPORT bool modXToModQt( uint modX, int& modQt );
/**
* Converts the Qt-compatible button state to x11 modifier.
*/
KDECORE_EXPORT int qtButtonStateToMod( Qt::ButtonState s );
TDECORE_EXPORT int qtButtonStateToMod( Qt::ButtonState s );
/**
* Converts the mask of ORed X11 modifiers to
@ -425,7 +425,7 @@ namespace KKeyServer
* @return true if successful, false otherwise
* @see KKey
*/
KDECORE_EXPORT bool modXToMod( uint modX, uint& mod );
TDECORE_EXPORT bool modXToMod( uint modX, uint& mod );
/**
* Converts a X11 key code and a mask of ORed X11 modifiers
@ -438,12 +438,12 @@ namespace KKeyServer
* @see Qt::Key
* @see Sym
*/
KDECORE_EXPORT bool codeXToSym( uchar codeX, uint modX, uint& symX );
TDECORE_EXPORT bool codeXToSym( uchar codeX, uint modX, uint& symX );
/**
* @internal
*/
KDECORE_EXPORT QString modToStringInternal( uint mod );
TDECORE_EXPORT QString modToStringInternal( uint mod );
/**
* Converts the mask of ORed KKey::ModFlag modifiers to a
@ -451,7 +451,7 @@ namespace KKeyServer
* @param mod the mask of ORed KKey::ModFlag modifiers
* @return the user-readable string
*/
KDECORE_EXPORT QString modToStringUser( uint mod );
TDECORE_EXPORT QString modToStringUser( uint mod );
/**
* Converts the modifier given as user-readable string
@ -459,19 +459,19 @@ namespace KKeyServer
* @internal
* @since 3.5
*/
KDECORE_EXPORT uint stringUserToMod( const QString& mod );
TDECORE_EXPORT uint stringUserToMod( const QString& mod );
/**
* @internal
* Unimplemented?
*/
KDECORE_EXPORT bool stringToSymMod( const QString&, uint& sym, uint& mod );
TDECORE_EXPORT bool stringToSymMod( const QString&, uint& sym, uint& mod );
/**
* @internal
* Unimplemented?
*/
KDECORE_EXPORT void keyQtToKeyX( uint keyCombQt, unsigned char *pKeyCodeX, uint *pKeySymX, uint *pKeyModX );
TDECORE_EXPORT void keyQtToKeyX( uint keyCombQt, unsigned char *pKeyCodeX, uint *pKeySymX, uint *pKeyModX );
}
#endif // !_KKEYSERVER_X11_H

@ -50,7 +50,7 @@ class KPanelMenuPrivate;
*
* @author The kicker maintainers, Michael Goffioul <tdeprint@swing.be>
*/
class KDEUI_EXPORT KPanelMenu : public KPopupMenu
class TDEUI_EXPORT KPanelMenu : public KPopupMenu
{
Q_OBJECT

@ -37,7 +37,7 @@
*
* @author Waldo Bastian <bastian@kde.org>
*/
class KDECORE_EXPORT KShared {
class TDECORE_EXPORT KShared {
public:
/**
* Standard constructor. This will initialize the reference count

@ -36,7 +36,7 @@ typedef QDict<KSycocaEntry::Ptr> KSycocaEntryDict;
* @internal
* Base class for sycoca factories
*/
class KDECORE_EXPORT KSycocaFactory
class TDECORE_EXPORT KSycocaFactory
{
public:
virtual KSycocaFactoryId factoryId() const = 0;
@ -134,7 +134,7 @@ protected:
/** This, instead of a typedef, allows to declare "class ..." in header files
* @internal
*/
class KDECORE_EXPORT KSycocaFactoryList : public QPtrList<KSycocaFactory>
class TDECORE_EXPORT KSycocaFactoryList : public QPtrList<KSycocaFactory>
{
public:
KSycocaFactoryList() { }

@ -41,7 +41,7 @@ class QPainter;
* KToolBar methods instead.
* @internal
*/
class KDEUI_EXPORT KToolBarButton : public QToolButton
class TDEUI_EXPORT KToolBarButton : public QToolButton
{
Q_OBJECT
@ -320,7 +320,7 @@ private:
* @internal
* @version $Id: ktoolbarbutton.h 465272 2005-09-29 09:47:40Z mueller $
*/
class KDEUI_EXPORT KToolBarButtonList : public QIntDict<KToolBarButton>
class TDEUI_EXPORT KToolBarButtonList : public QIntDict<KToolBarButton>
{
public:
KToolBarButtonList();

@ -69,7 +69,7 @@ class KConfigBase;
* @see KKeyChooser
* @see KKeyDialog
*/
class KDECORE_EXPORT KAccelAction
class TDECORE_EXPORT KAccelAction
{
public:
/**
@ -366,7 +366,7 @@ class KDECORE_EXPORT KAccelAction
* @short A collection of accelerator actions
* @see KAccelAction
*/
class KDECORE_EXPORT KAccelActions
class TDECORE_EXPORT KAccelActions
{
public:
/**

@ -118,7 +118,7 @@ class QWidget;
* @short Configurable key binding support.
*/
class KDECORE_EXPORT KAccelBase
class TDECORE_EXPORT KAccelBase
{
public:
/** Initialization mode of the KAccelBase, used in constructor. */

@ -32,7 +32,7 @@ class KIconPrivate;
* @see KIconTheme
* @see KIconLoader
*/
class KDECORE_EXPORT KIcon
class TDECORE_EXPORT KIcon
{
public:
KIcon() { size = 0; }
@ -176,7 +176,7 @@ inline KIcon::Group operator++(KIcon::Group& group,int) { KIcon::Group ret = gro
* iconloader but can be used by others too.
* @see KIconLoader
*/
class KDECORE_EXPORT KIconTheme
class TDECORE_EXPORT KIconTheme
{
public:
/**

@ -44,7 +44,7 @@ namespace KKeyServer
* @see KKey
* @see KKeyServer
*/
struct KDECORE_EXPORT Sym
struct TDECORE_EXPORT Sym
{
public:
/// the actual value of the symbol
@ -134,7 +134,7 @@ namespace KKeyServer
* Represents a key press.
* @see KKey
*/
struct KDECORE_EXPORT Key
struct TDECORE_EXPORT Key
{
/// Code for native Keys in Qt
enum { CODE_FOR_QT = 256 };
@ -241,7 +241,7 @@ namespace KKeyServer
/**
* TODO: please document this class
*/
struct KDECORE_EXPORT Variations
struct TDECORE_EXPORT Variations
{
enum { MAX_VARIATIONS = 4 };
@ -257,14 +257,14 @@ namespace KKeyServer
};
/// TODO: please document
KDECORE_EXPORT bool initializeMods();
TDECORE_EXPORT bool initializeMods();
/**
* Returns the equivalent X modifier mask of the given modifier flag.
* @param modFlag the generic flags to check
* @return the window system specific flags
*/
KDECORE_EXPORT uint modX( KKey::ModFlag modFlag );
TDECORE_EXPORT uint modX( KKey::ModFlag modFlag );
/**
* Returns true if the current keyboard layout supports the Win key.
@ -272,42 +272,42 @@ namespace KKeyServer
* @return true if the keyboard has a Win key
* @see modXWin()
*/
KDECORE_EXPORT bool keyboardHasWinKey();
TDECORE_EXPORT bool keyboardHasWinKey();
/**
* Returns the X11 Shift modifier mask/flag.
* @return the X11 Shift modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXShift();
TDECORE_EXPORT uint modXShift();
/**
* Returns the X11 Lock modifier mask/flag.
* @return the X11 Lock modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXLock();
TDECORE_EXPORT uint modXLock();
/**
* Returns the X11 Ctrl modifier mask/flag.
* @return the X11 Ctrl modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXCtrl();
TDECORE_EXPORT uint modXCtrl();
/**
* Returns the X11 Alt (Mod1) modifier mask/flag.
* @return the X11 Alt (Mod1) modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXAlt();
TDECORE_EXPORT uint modXAlt();
/**
* Returns the X11 NumLock modifier mask/flag.
* @return the X11 NumLock modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXNumLock();
TDECORE_EXPORT uint modXNumLock();
/**
* Returns the X11 Win (Mod3) modifier mask/flag.
@ -315,14 +315,14 @@ namespace KKeyServer
* @see keyboardHasWinKey()
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXWin();
TDECORE_EXPORT uint modXWin();
/**
* Returns the X11 ScrollLock modifier mask/flag.
* @return the X11 ScrollLock modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXScrollLock();
TDECORE_EXPORT uint modXScrollLock();
/**
* Returns the X11 Mode_switch modifier mask/flag.
@ -330,7 +330,7 @@ namespace KKeyServer
* @see accelModMaskX()
* @since 3.5
*/
KDECORE_EXPORT uint modXModeSwitch();
TDECORE_EXPORT uint modXModeSwitch();
/**
* Returns bitwise OR'ed mask containing Shift, Ctrl, Alt, and
@ -343,7 +343,7 @@ namespace KKeyServer
* @see modXWin()
* @see modXScrollLock()
*/
KDECORE_EXPORT uint accelModMaskX();
TDECORE_EXPORT uint accelModMaskX();
/**
* Extracts the symbol from the given Qt key and
@ -354,7 +354,7 @@ namespace KKeyServer
* @see Qt::Key
* @see Sym
*/
KDECORE_EXPORT bool keyQtToSym( int keyQt, uint& sym );
TDECORE_EXPORT bool keyQtToSym( int keyQt, uint& sym );
/**
* Extracts the modifiers from the given Qt key and
@ -364,7 +364,7 @@ namespace KKeyServer
* @return true if successful, false otherwise
* @see Qt::Key
*/
KDECORE_EXPORT bool keyQtToMod( int keyQt, uint& mod );
TDECORE_EXPORT bool keyQtToMod( int keyQt, uint& mod );
/**
* Converts the given symbol to a Qt key code.
@ -374,7 +374,7 @@ namespace KKeyServer
* @see Qt::Key
* @see Sym
*/
KDECORE_EXPORT bool symToKeyQt( uint sym, int& keyQt );
TDECORE_EXPORT bool symToKeyQt( uint sym, int& keyQt );
/**
* Converts the mask of ORed KKey::ModFlag modifiers to
@ -386,7 +386,7 @@ namespace KKeyServer
* @see Qt::Key
* @see KKey
*/
KDECORE_EXPORT bool modToModQt( uint mod, int& modQt );
TDECORE_EXPORT bool modToModQt( uint mod, int& modQt );
/**
* Converts the mask of ORed KKey::ModFlag modifiers to
@ -397,7 +397,7 @@ namespace KKeyServer
* @return true if successful, false otherwise
* @see KKey
*/
KDECORE_EXPORT bool modToModX( uint mod, uint& modX );
TDECORE_EXPORT bool modToModX( uint mod, uint& modX );
/**
* Converts the mask of ORed X11 modifiers to
@ -409,12 +409,12 @@ namespace KKeyServer
* @see Qt::Key
*/
//wrapped for win32
KDECORE_EXPORT bool modXToModQt( uint modX, int& modQt );
TDECORE_EXPORT bool modXToModQt( uint modX, int& modQt );
/**
* Converts the Qt-compatible button state to x11 modifier.
*/
KDECORE_EXPORT int qtButtonStateToMod( Qt::ButtonState s );
TDECORE_EXPORT int qtButtonStateToMod( Qt::ButtonState s );
/**
* Converts the mask of ORed X11 modifiers to
@ -425,7 +425,7 @@ namespace KKeyServer
* @return true if successful, false otherwise
* @see KKey
*/
KDECORE_EXPORT bool modXToMod( uint modX, uint& mod );
TDECORE_EXPORT bool modXToMod( uint modX, uint& mod );
/**
* Converts a X11 key code and a mask of ORed X11 modifiers
@ -438,12 +438,12 @@ namespace KKeyServer
* @see Qt::Key
* @see Sym
*/
KDECORE_EXPORT bool codeXToSym( uchar codeX, uint modX, uint& symX );
TDECORE_EXPORT bool codeXToSym( uchar codeX, uint modX, uint& symX );
/**
* @internal
*/
KDECORE_EXPORT QString modToStringInternal( uint mod );
TDECORE_EXPORT QString modToStringInternal( uint mod );
/**
* Converts the mask of ORed KKey::ModFlag modifiers to a
@ -451,7 +451,7 @@ namespace KKeyServer
* @param mod the mask of ORed KKey::ModFlag modifiers
* @return the user-readable string
*/
KDECORE_EXPORT QString modToStringUser( uint mod );
TDECORE_EXPORT QString modToStringUser( uint mod );
/**
* Converts the modifier given as user-readable string
@ -459,19 +459,19 @@ namespace KKeyServer
* @internal
* @since 3.5
*/
KDECORE_EXPORT uint stringUserToMod( const QString& mod );
TDECORE_EXPORT uint stringUserToMod( const QString& mod );
/**
* @internal
* Unimplemented?
*/
KDECORE_EXPORT bool stringToSymMod( const QString&, uint& sym, uint& mod );
TDECORE_EXPORT bool stringToSymMod( const QString&, uint& sym, uint& mod );
/**
* @internal
* Unimplemented?
*/
KDECORE_EXPORT void keyQtToKeyX( uint keyCombQt, unsigned char *pKeyCodeX, uint *pKeySymX, uint *pKeyModX );
TDECORE_EXPORT void keyQtToKeyX( uint keyCombQt, unsigned char *pKeyCodeX, uint *pKeySymX, uint *pKeyModX );
}
#endif // !_KKEYSERVER_X11_H

@ -50,7 +50,7 @@ class KPanelMenuPrivate;
*
* @author The kicker maintainers, Michael Goffioul <tdeprint@swing.be>
*/
class KDEUI_EXPORT KPanelMenu : public KPopupMenu
class TDEUI_EXPORT KPanelMenu : public KPopupMenu
{
Q_OBJECT

@ -37,7 +37,7 @@
*
* @author Waldo Bastian <bastian@kde.org>
*/
class KDECORE_EXPORT KShared {
class TDECORE_EXPORT KShared {
public:
/**
* Standard constructor. This will initialize the reference count

@ -36,7 +36,7 @@ typedef QDict<KSycocaEntry::Ptr> KSycocaEntryDict;
* @internal
* Base class for sycoca factories
*/
class KDECORE_EXPORT KSycocaFactory
class TDECORE_EXPORT KSycocaFactory
{
public:
virtual KSycocaFactoryId factoryId() const = 0;
@ -134,7 +134,7 @@ protected:
/** This, instead of a typedef, allows to declare "class ..." in header files
* @internal
*/
class KDECORE_EXPORT KSycocaFactoryList : public QPtrList<KSycocaFactory>
class TDECORE_EXPORT KSycocaFactoryList : public QPtrList<KSycocaFactory>
{
public:
KSycocaFactoryList() { }

@ -41,7 +41,7 @@ class QPainter;
* KToolBar methods instead.
* @internal
*/
class KDEUI_EXPORT KToolBarButton : public QToolButton
class TDEUI_EXPORT KToolBarButton : public QToolButton
{
Q_OBJECT
@ -320,7 +320,7 @@ private:
* @internal
* @version $Id: ktoolbarbutton.h 465272 2005-09-29 09:47:40Z mueller $
*/
class KDEUI_EXPORT KToolBarButtonList : public QIntDict<KToolBarButton>
class TDEUI_EXPORT KToolBarButtonList : public QIntDict<KToolBarButton>
{
public:
KToolBarButtonList();

@ -69,7 +69,7 @@ class KConfigBase;
* @see KKeyChooser
* @see KKeyDialog
*/
class KDECORE_EXPORT KAccelAction
class TDECORE_EXPORT KAccelAction
{
public:
/**
@ -366,7 +366,7 @@ class KDECORE_EXPORT KAccelAction
* @short A collection of accelerator actions
* @see KAccelAction
*/
class KDECORE_EXPORT KAccelActions
class TDECORE_EXPORT KAccelActions
{
public:
/**

@ -118,7 +118,7 @@ class QWidget;
* @short Configurable key binding support.
*/
class KDECORE_EXPORT KAccelBase
class TDECORE_EXPORT KAccelBase
{
public:
/** Initialization mode of the KAccelBase, used in constructor. */

@ -32,7 +32,7 @@ class KIconPrivate;
* @see KIconTheme
* @see KIconLoader
*/
class KDECORE_EXPORT KIcon
class TDECORE_EXPORT KIcon
{
public:
KIcon() { size = 0; }
@ -176,7 +176,7 @@ inline KIcon::Group operator++(KIcon::Group& group,int) { KIcon::Group ret = gro
* iconloader but can be used by others too.
* @see KIconLoader
*/
class KDECORE_EXPORT KIconTheme
class TDECORE_EXPORT KIconTheme
{
public:
/**

@ -44,7 +44,7 @@ namespace KKeyServer
* @see KKey
* @see KKeyServer
*/
struct KDECORE_EXPORT Sym
struct TDECORE_EXPORT Sym
{
public:
/// the actual value of the symbol
@ -134,7 +134,7 @@ namespace KKeyServer
* Represents a key press.
* @see KKey
*/
struct KDECORE_EXPORT Key
struct TDECORE_EXPORT Key
{
/// Code for native Keys in Qt
enum { CODE_FOR_QT = 256 };
@ -241,7 +241,7 @@ namespace KKeyServer
/**
* TODO: please document this class
*/
struct KDECORE_EXPORT Variations
struct TDECORE_EXPORT Variations
{
enum { MAX_VARIATIONS = 4 };
@ -257,14 +257,14 @@ namespace KKeyServer
};
/// TODO: please document
KDECORE_EXPORT bool initializeMods();
TDECORE_EXPORT bool initializeMods();
/**
* Returns the equivalent X modifier mask of the given modifier flag.
* @param modFlag the generic flags to check
* @return the window system specific flags
*/
KDECORE_EXPORT uint modX( KKey::ModFlag modFlag );
TDECORE_EXPORT uint modX( KKey::ModFlag modFlag );
/**
* Returns true if the current keyboard layout supports the Win key.
@ -272,42 +272,42 @@ namespace KKeyServer
* @return true if the keyboard has a Win key
* @see modXWin()
*/
KDECORE_EXPORT bool keyboardHasWinKey();
TDECORE_EXPORT bool keyboardHasWinKey();
/**
* Returns the X11 Shift modifier mask/flag.
* @return the X11 Shift modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXShift();
TDECORE_EXPORT uint modXShift();
/**
* Returns the X11 Lock modifier mask/flag.
* @return the X11 Lock modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXLock();
TDECORE_EXPORT uint modXLock();
/**
* Returns the X11 Ctrl modifier mask/flag.
* @return the X11 Ctrl modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXCtrl();
TDECORE_EXPORT uint modXCtrl();
/**
* Returns the X11 Alt (Mod1) modifier mask/flag.
* @return the X11 Alt (Mod1) modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXAlt();
TDECORE_EXPORT uint modXAlt();
/**
* Returns the X11 NumLock modifier mask/flag.
* @return the X11 NumLock modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXNumLock();
TDECORE_EXPORT uint modXNumLock();
/**
* Returns the X11 Win (Mod3) modifier mask/flag.
@ -315,14 +315,14 @@ namespace KKeyServer
* @see keyboardHasWinKey()
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXWin();
TDECORE_EXPORT uint modXWin();
/**
* Returns the X11 ScrollLock modifier mask/flag.
* @return the X11 ScrollLock modifier mask/flag.
* @see accelModMaskX()
*/
KDECORE_EXPORT uint modXScrollLock();
TDECORE_EXPORT uint modXScrollLock();
/**
* Returns the X11 Mode_switch modifier mask/flag.
@ -330,7 +330,7 @@ namespace KKeyServer
* @see accelModMaskX()
* @since 3.5
*/
KDECORE_EXPORT uint modXModeSwitch();
TDECORE_EXPORT uint modXModeSwitch();
/**
* Returns bitwise OR'ed mask containing Shift, Ctrl, Alt, and
@ -343,7 +343,7 @@ namespace KKeyServer
* @see modXWin()
* @see modXScrollLock()
*/
KDECORE_EXPORT uint accelModMaskX();
TDECORE_EXPORT uint accelModMaskX();
/**
* Extracts the symbol from the given Qt key and
@ -354,7 +354,7 @@ namespace KKeyServer
* @see Qt::Key
* @see Sym
*/
KDECORE_EXPORT bool keyQtToSym( int keyQt, uint& sym );
TDECORE_EXPORT bool keyQtToSym( int keyQt, uint& sym );
/**
* Extracts the modifiers from the given Qt key and
@ -364,7 +364,7 @@ namespace KKeyServer
* @return true if successful, false otherwise
* @see Qt::Key
*/
KDECORE_EXPORT bool keyQtToMod( int keyQt, uint& mod );
TDECORE_EXPORT bool keyQtToMod( int keyQt, uint& mod );
/**
* Converts the given symbol to a Qt key code.
@ -374,7 +374,7 @@ namespace KKeyServer
* @see Qt::Key
* @see Sym
*/
KDECORE_EXPORT bool symToKeyQt( uint sym, int& keyQt );
TDECORE_EXPORT bool symToKeyQt( uint sym, int& keyQt );
/**
* Converts the mask of ORed KKey::ModFlag modifiers to
@ -386,7 +386,7 @@ namespace KKeyServer
* @see Qt::Key
* @see KKey
*/
KDECORE_EXPORT bool modToModQt( uint mod, int& modQt );
TDECORE_EXPORT bool modToModQt( uint mod, int& modQt );
/**
* Converts the mask of ORed KKey::ModFlag modifiers to
@ -397,7 +397,7 @@ namespace KKeyServer
* @return true if successful, false otherwise
* @see KKey
*/
KDECORE_EXPORT bool modToModX( uint mod, uint& modX );
TDECORE_EXPORT bool modToModX( uint mod, uint& modX );
/**
* Converts the mask of ORed X11 modifiers to
@ -409,12 +409,12 @@ namespace KKeyServer
* @see Qt::Key
*/
//wrapped for win32
KDECORE_EXPORT bool modXToModQt( uint modX, int& modQt );
TDECORE_EXPORT bool modXToModQt( uint modX, int& modQt );
/**
* Converts the Qt-compatible button state to x11 modifier.
*/
KDECORE_EXPORT int qtButtonStateToMod( Qt::ButtonState s );
TDECORE_EXPORT int qtButtonStateToMod( Qt::ButtonState s );
/**
* Converts the mask of ORed X11 modifiers to
@ -425,7 +425,7 @@ namespace KKeyServer
* @return true if successful, false otherwise
* @see KKey
*/
KDECORE_EXPORT bool modXToMod( uint modX, uint& mod );
TDECORE_EXPORT bool modXToMod( uint modX, uint& mod );
/**
* Converts a X11 key code and a mask of ORed X11 modifiers
@ -438,12 +438,12 @@ namespace KKeyServer
* @see Qt::Key
* @see Sym
*/
KDECORE_EXPORT bool codeXToSym( uchar codeX, uint modX, uint& symX );
TDECORE_EXPORT bool codeXToSym( uchar codeX, uint modX, uint& symX );
/**
* @internal
*/
KDECORE_EXPORT QString modToStringInternal( uint mod );
TDECORE_EXPORT QString modToStringInternal( uint mod );
/**
* Converts the mask of ORed KKey::ModFlag modifiers to a
@ -451,7 +451,7 @@ namespace KKeyServer
* @param mod the mask of ORed KKey::ModFlag modifiers
* @return the user-readable string
*/
KDECORE_EXPORT QString modToStringUser( uint mod );
TDECORE_EXPORT QString modToStringUser( uint mod );
/**
* Converts the modifier given as user-readable string
@ -459,19 +459,19 @@ namespace KKeyServer
* @internal
* @since 3.5
*/
KDECORE_EXPORT uint stringUserToMod( const QString& mod );
TDECORE_EXPORT uint stringUserToMod( const QString& mod );
/**
* @internal
* Unimplemented?
*/
KDECORE_EXPORT bool stringToSymMod( const QString&, uint& sym, uint& mod );
TDECORE_EXPORT bool stringToSymMod( const QString&, uint& sym, uint& mod );
/**
* @internal
* Unimplemented?
*/
KDECORE_EXPORT void keyQtToKeyX( uint keyCombQt, unsigned char *pKeyCodeX, uint *pKeySymX, uint *pKeyModX );
TDECORE_EXPORT void keyQtToKeyX( uint keyCombQt, unsigned char *pKeyCodeX, uint *pKeySymX, uint *pKeyModX );
}
#endif // !_KKEYSERVER_X11_H

@ -50,7 +50,7 @@ class KPanelMenuPrivate;
*
* @author The kicker maintainers, Michael Goffioul <tdeprint@swing.be>
*/
class KDEUI_EXPORT KPanelMenu : public KPopupMenu
class TDEUI_EXPORT KPanelMenu : public KPopupMenu
{
Q_OBJECT

@ -37,7 +37,7 @@
*
* @author Waldo Bastian <bastian@kde.org>
*/
class KDECORE_EXPORT KShared {
class TDECORE_EXPORT KShared {
public:
/**
* Standard constructor. This will initialize the reference count

@ -36,7 +36,7 @@ typedef QDict<KSycocaEntry::Ptr> KSycocaEntryDict;
* @internal
* Base class for sycoca factories
*/
class KDECORE_EXPORT KSycocaFactory
class TDECORE_EXPORT KSycocaFactory
{
public:
virtual KSycocaFactoryId factoryId() const = 0;
@ -134,7 +134,7 @@ protected:
/** This, instead of a typedef, allows to declare "class ..." in header files
* @internal
*/
class KDECORE_EXPORT KSycocaFactoryList : public QPtrList<KSycocaFactory>
class TDECORE_EXPORT KSycocaFactoryList : public QPtrList<KSycocaFactory>
{
public:
KSycocaFactoryList() { }

@ -41,7 +41,7 @@ class QPainter;
* KToolBar methods instead.
* @internal
*/
class KDEUI_EXPORT KToolBarButton : public QToolButton
class TDEUI_EXPORT KToolBarButton : public QToolButton
{
Q_OBJECT
@ -320,7 +320,7 @@ private:
* @internal
* @version $Id: ktoolbarbutton.h 465272 2005-09-29 09:47:40Z mueller $
*/
class KDEUI_EXPORT KToolBarButtonList : public QIntDict<KToolBarButton>
class TDEUI_EXPORT KToolBarButtonList : public QIntDict<KToolBarButton>
{
public:
KToolBarButtonList();

@ -90,7 +90,7 @@ define = "Q_UINT32", "ulong"
define = "Q_INT64", "longlong"
define = "Q_UINT64", "ulonglong"
define = "mutable union", "union"
define = "KDECORE_EXPORT", ""
define = "TDECORE_EXPORT", ""
define = "KDE_EXPORT", ""
retain
@ -130,7 +130,7 @@ amend = * ctor parent /TransferThis/
amend = * all parent /Transfer/
include = ../tdecore @KDE_INCLUDEPATH@/tdeprint
libs = -L@BL_KDEDIR@ -lsip -lqtcmodule -lDCOP -ltdefx -ltdeui -ltdecore -ltdecorecmodule -ldcopcmodule
define = "KDEFX_EXPORT", ""
define = "TDEFX_EXPORT", ""
retain
@ -162,7 +162,7 @@ sipslot = receiver member kaccelmenu
sipslot = receiver slot kaction kactionclasses kbuttonbox ktoolbar
sipslot = recvr slot kstdaction
define = "QT_VERSION", "301"
define = "KDEUI_EXPORT", ""
define = "TDEUI_EXPORT", ""
retain
@ -424,7 +424,7 @@ amend = * all parent /Transfer/
include = ../tdecore @KDE_INCLUDEPATH@/tdeprint
libs = -L@BL_KDEDIR@ -lsip -lqtcmodule -lDCOP -ltdeprint -ltdecore -ltdecorecmodule\
-ldcopcmodule -ltdeui -ltdeuicmodule
define = "KDEPRINT_EXPORT", ""
define = "TDEPRINT_EXPORT", ""
retain
// -----------------------------------------

@ -90,7 +90,7 @@ define = "Q_UINT32", "ulong"
define = "Q_INT64", "longlong"
define = "Q_UINT64", "ulonglong"
define = "mutable union", "union"
define = "KDECORE_EXPORT", ""
define = "TDECORE_EXPORT", ""
define = "KDE_EXPORT", ""
retain
@ -130,7 +130,7 @@ amend = * ctor parent /TransferThis/
amend = * all parent /Transfer/
include = ../tdecore @KDE_INCLUDEPATH@/tdeprint
libs = -L@BL_KDEDIR@ -lsip -lqtcmodule -lDCOP -ltdefx -ltdeui -ltdecore -ltdecorecmodule -ldcopcmodule
define = "KDEFX_EXPORT", ""
define = "TDEFX_EXPORT", ""
retain
@ -162,7 +162,7 @@ sipslot = receiver member kaccelmenu
sipslot = receiver slot kaction kactionclasses kbuttonbox ktoolbar
sipslot = recvr slot kstdaction
define = "QT_VERSION", "301"
define = "KDEUI_EXPORT", ""
define = "TDEUI_EXPORT", ""
retain
@ -424,7 +424,7 @@ amend = * all parent /Transfer/
include = ../tdecore @KDE_INCLUDEPATH@/tdeprint
libs = -L@BL_KDEDIR@ -lsip -lqtcmodule -lDCOP -ltdeprint -ltdecore -ltdecorecmodule\
-ldcopcmodule -ltdeui -ltdeuicmodule
define = "KDEPRINT_EXPORT", ""
define = "TDEPRINT_EXPORT", ""
retain
// -----------------------------------------

@ -90,7 +90,7 @@ define = "Q_UINT32", "ulong"
define = "Q_INT64", "longlong"
define = "Q_UINT64", "ulonglong"
define = "mutable union", "union"
define = "KDECORE_EXPORT", ""
define = "TDECORE_EXPORT", ""
define = "KDE_EXPORT", ""
retain
@ -130,7 +130,7 @@ amend = * ctor parent /TransferThis/
amend = * all parent /Transfer/
include = ../tdecore @KDE_INCLUDEPATH@/tdeprint
libs = -L@BL_KDEDIR@ -lsip -lqtcmodule -lDCOP -ltdefx -ltdeui -ltdecore -ltdecorecmodule -ldcopcmodule
define = "KDEFX_EXPORT", ""
define = "TDEFX_EXPORT", ""
retain
@ -162,7 +162,7 @@ sipslot = receiver member kaccelmenu
sipslot = receiver slot kaction kactionclasses kbuttonbox ktoolbar
sipslot = recvr slot kstdaction
define = "QT_VERSION", "301"
define = "KDEUI_EXPORT", ""
define = "TDEUI_EXPORT", ""
retain
@ -424,7 +424,7 @@ amend = * all parent /Transfer/
include = ../tdecore @KDE_INCLUDEPATH@/tdeprint
libs = -L@BL_KDEDIR@ -lsip -lqtcmodule -lDCOP -ltdeprint -ltdecore -ltdecorecmodule\
-ldcopcmodule -ltdeui -ltdeuicmodule
define = "KDEPRINT_EXPORT", ""
define = "TDEPRINT_EXPORT", ""
retain
// -----------------------------------------

@ -90,7 +90,7 @@ define = "Q_UINT32", "ulong"
define = "Q_INT64", "longlong"
define = "Q_UINT64", "ulonglong"
define = "mutable union", "union"
define = "KDECORE_EXPORT", ""
define = "TDECORE_EXPORT", ""
define = "KDE_EXPORT", ""
retain
@ -130,7 +130,7 @@ amend = * ctor parent /TransferThis/
amend = * all parent /Transfer/
include = ../tdecore @KDE_INCLUDEPATH@/tdeprint
libs = -L@BL_KDEDIR@ -lsip -lqtcmodule -lDCOP -ltdefx -ltdeui -ltdecore -ltdecorecmodule -ldcopcmodule
define = "KDEFX_EXPORT", ""
define = "TDEFX_EXPORT", ""
retain
@ -162,7 +162,7 @@ sipslot = receiver member kaccelmenu
sipslot = receiver slot kaction kactionclasses kbuttonbox ktoolbar
sipslot = recvr slot kstdaction
define = "QT_VERSION", "301"
define = "KDEUI_EXPORT", ""
define = "TDEUI_EXPORT", ""
retain
@ -424,7 +424,7 @@ amend = * all parent /Transfer/
include = ../tdecore @KDE_INCLUDEPATH@/tdeprint
libs = -L@BL_KDEDIR@ -lsip -lqtcmodule -lDCOP -ltdeprint -ltdecore -ltdecorecmodule\
-ldcopcmodule -ltdeui -ltdeuicmodule
define = "KDEPRINT_EXPORT", ""
define = "TDEPRINT_EXPORT", ""
retain
// -----------------------------------------

Loading…
Cancel
Save