diff options
| author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:44:01 +0000 | 
|---|---|---|
| committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:44:01 +0000 | 
| commit | 479f5f799523bffbcc83dff581a2299c047c6fff (patch) | |
| tree | 186aae707ed02aac6c7cab2fb14e97f72aca5e36 /python/pykde/extra/kde341/kaccelbase.h | |
| parent | f1dbff6145c98324ff82e34448b7483727e8ace4 (diff) | |
| download | tdebindings-479f5f799523bffbcc83dff581a2299c047c6fff.tar.gz tdebindings-479f5f799523bffbcc83dff581a2299c047c6fff.zip  | |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1157645 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'python/pykde/extra/kde341/kaccelbase.h')
| -rw-r--r-- | python/pykde/extra/kde341/kaccelbase.h | 52 | 
1 files changed, 26 insertions, 26 deletions
diff --git a/python/pykde/extra/kde341/kaccelbase.h b/python/pykde/extra/kde341/kaccelbase.h index f582cce1..84661cd3 100644 --- a/python/pykde/extra/kde341/kaccelbase.h +++ b/python/pykde/extra/kde341/kaccelbase.h @@ -20,11 +20,11 @@  #ifndef _KACCELBASE_H  #define _KACCELBASE_H -#include <qmap.h> -#include <qptrvector.h> -#include <qstring.h> -#include <qvaluevector.h> -#include <qvaluelist.h> +#include <tqmap.h> +#include <tqptrvector.h> +#include <tqstring.h> +#include <tqvaluevector.h> +#include <tqvaluelist.h>  #include "kaccelaction.h"  #include "kkeyserver.h" @@ -79,11 +79,11 @@ class QWidget;   * a->insertItem( i18n("Scroll Up"), "Scroll Up", "Up" );   * // Insert an action "Scroll Down" which is not associated with any key:   * a->insertItem( i18n("Scroll Down"), "Scroll Down", 0); - * a->connectItem( "Scroll up", myWindow, SLOT( scrollUp() ) ); + * a->connectItem( "Scroll up", myWindow, TQT_SLOT( scrollUp() ) );   * // a->insertStdItem( KStdAccel::Print ); //not necessary, since it   *	// is done automatially with the   *	// connect below! - * a->connectItem(KStdAccel::Print, myWindow, SLOT( printDoc() ) ); + * a->connectItem(KStdAccel::Print, myWindow, TQT_SLOT( printDoc() ) );   *   * a->readSettings();   *\endcode @@ -93,12 +93,12 @@ class QWidget;   *   * \code   * int id; - * id = popup->insertItem("&Print",this, SLOT(printDoc())); + * id = popup->insertItem("&Print",this, TQT_SLOT(printDoc()));   * a->changeMenuAccel(popup, id, KStdAccel::Print );   * \endcode   *   * If you want a somewhat "exotic" name for your standard print action, like - *   id = popup->insertItem(i18n("Print &Document"),this, SLOT(printDoc())); + *   id = popup->insertItem(i18n("Print &Document"),this, TQT_SLOT(printDoc()));   * it might be a good idea to insert the standard action before as   *          a->insertStdItem( KStdAccel::Print, i18n("Print Document") )   * as well, so that the user can easily find the corresponding function. @@ -107,7 +107,7 @@ class QWidget;   * in a menu could be done with   *   * \code - *    id = popup->insertItem(i18n"Scroll &up",this, SLOT(scrollUp())); + *    id = popup->insertItem(i18n"Scroll &up",this, TQT_SLOT(scrollUp()));   *    a->changeMenuAccel(popup, id, "Scroll Up" );   * \endcode   * @@ -131,13 +131,13 @@ class KDECORE_EXPORT KAccelBase  	KAccelActions& actions();  	bool isEnabled() const; -	KAccelAction* actionPtr( const QString& sAction ); -	const KAccelAction* actionPtr( const QString& sAction ) const; +	KAccelAction* actionPtr( const TQString& sAction ); +	const KAccelAction* actionPtr( const TQString& sAction ) const;  	KAccelAction* actionPtr( const KKey& key );  	KAccelAction* actionPtr( const KKeyServer::Key& key ); -	const QString& configGroup() const { return m_sConfigGroup; } -	void setConfigGroup( const QString& group ); +	const TQString& configGroup() const { return m_sConfigGroup; } +	void setConfigGroup( const TQString& group );  	void setConfigGlobal( bool global );  	virtual void setEnabled( bool bEnabled ) = 0;  	bool getAutoUpdate() { return m_bAutoUpdate; } @@ -147,21 +147,21 @@ class KDECORE_EXPORT KAccelBase  // Procedures for manipulating Actions.  	//void clearActions(); -	KAccelAction* insert( const QString& sName, const QString& sDesc ); +	KAccelAction* insert( const TQString& sName, const TQString& sDesc );  	KAccelAction* insert( -	                 const QString& sAction, const QString& sDesc, const QString& sHelp, +	                 const TQString& sAction, const TQString& sDesc, const TQString& sHelp,  	                 const KShortcut& rgCutDefaults3, const KShortcut& rgCutDefaults4, -	                 const QObject* pObjSlot, const char* psMethodSlot, +	                 const TQObject* pObjSlot, const char* psMethodSlot,  			 bool bConfigurable = true, bool bEnabled = true ); -	bool remove( const QString& sAction ); -	bool setActionSlot( const QString& sAction, const QObject* pObjSlot, const char* psMethodSlot ); +	bool remove( const TQString& sAction ); +	bool setActionSlot( const TQString& sAction, const TQObject* pObjSlot, const char* psMethodSlot );  	bool updateConnections(); -	bool setShortcut( const QString& sAction, const KShortcut& cut ); +	bool setShortcut( const TQString& sAction, const KShortcut& cut );  // Modify individual Action sub-items -	bool setActionEnabled( const QString& sAction, bool bEnable ); +	bool setActionEnabled( const TQString& sAction, bool bEnable );  	/**  	 * Read all key associations from @p config, or (if @p config @@ -180,14 +180,14 @@ class KDECORE_EXPORT KAccelBase  	 */  	void writeSettings( KConfigBase* pConfig = 0 ) const; -	QPopupMenu* createPopupMenu( QWidget* pParent, const KKeySequence& ); +	TQPopupMenu* createPopupMenu( TQWidget* pParent, const KKeySequence& );   // Protected methods   protected:  	void slotRemoveAction( KAccelAction* );  	struct X; -	void createKeyList( QValueVector<struct X>& rgKeys ); +	void createKeyList( TQValueVector<struct X>& rgKeys );  	bool insertConnection( KAccelAction* );  	bool removeConnection( KAccelAction* ); @@ -208,15 +208,15 @@ class KDECORE_EXPORT KAccelBase  		ActionInfo( KAccelAction* _pAction, uint _iSeq, uint _iVariation )  			{ pAction = _pAction; iSeq = _iSeq; iVariation = _iVariation; }  	}; -	typedef QMap<KKeyServer::Key, ActionInfo> KKeyToActionMap; +	typedef TQMap<KKeyServer::Key, ActionInfo> KKeyToActionMap;  	KAccelActions m_rgActions;  	KKeyToActionMap m_mapKeyToAction; -	QValueList<KAccelAction*> m_rgActionsNonUnique; +	TQValueList<KAccelAction*> m_rgActionsNonUnique;  	bool m_bNativeKeys; // Use native key codes instead of Qt codes  	bool m_bEnabled;  	bool m_bConfigIsGlobal; -	QString m_sConfigGroup; +	TQString m_sConfigGroup;  	bool m_bAutoUpdate;  	KAccelAction* mtemp_pActionRemoving;  | 
