diff options
Diffstat (limited to 'sip/tdeui/keditcl.sip')
-rw-r--r-- | sip/tdeui/keditcl.sip | 64 |
1 files changed, 32 insertions, 32 deletions
diff --git a/sip/tdeui/keditcl.sip b/sip/tdeui/keditcl.sip index 89674c3..02f4a19 100644 --- a/sip/tdeui/keditcl.sip +++ b/sip/tdeui/keditcl.sip @@ -32,7 +32,7 @@ class KEdGotoLine : KDialogBase public: - KEdGotoLine (QWidget* /TransferThis/ = 0, const char* = 0, bool = 1); + KEdGotoLine (TQWidget* /TransferThis/ = 0, const char* = 0, bool = 1); int getLineNumber (); public slots: @@ -52,9 +52,9 @@ class KEdFind : KDialogBase public: - KEdFind (QWidget* /TransferThis/ = 0, const char* = 0, bool = 1); - QString getText () const; - void setText (QString); + KEdFind (TQWidget* /TransferThis/ = 0, const char* = 0, bool = 1); + TQString getText () const; + void setText (TQString); void setCaseSensitive (bool); bool case_sensitive () const; void setDirection (bool); @@ -64,7 +64,7 @@ public: protected slots: void slotCancel (); void slotUser1 (); - void textSearchChanged (const QString&); + void textSearchChanged (const TQString&); protected: @@ -91,10 +91,10 @@ class KEdReplace : KDialogBase public: - KEdReplace (QWidget* /TransferThis/ = 0, const char* = 0, bool = 1); - QString getText (); - QString getReplaceText (); - void setText (QString); + KEdReplace (TQWidget* /TransferThis/ = 0, const char* = 0, bool = 1); + TQString getText (); + TQString getReplaceText (); + void setText (TQString); KHistoryCombo* searchCombo () const; KHistoryCombo* replaceCombo () const; bool case_sensitive (); @@ -106,7 +106,7 @@ protected slots: void slotUser1 (); void slotUser2 (); void slotUser3 (); - void textSearchChanged (const QString&); + void textSearchChanged (const TQString&); signals: void replace (); @@ -125,7 +125,7 @@ private: }; // class KEdReplace -class KEdit : QMultiLineEdit +class KEdit : TQMultiLineEdit { %TypeHeaderCode #include <keditcl.h> @@ -133,7 +133,7 @@ class KEdit : QMultiLineEdit public: - KEdit (QWidget* /TransferThis/ = 0, const char* = 0); + KEdit (TQWidget* /TransferThis/ = 0, const char* = 0); enum { @@ -142,20 +142,20 @@ public: BACKWARD }; - void insertText (QTextStream*); + void insertText (TQTextStream*); %If ( KDE_3_1_0 - ) - void saveText (QTextStream*, bool); + void saveText (TQTextStream*, bool); %End - void saveText (QTextStream*); + void saveText (TQTextStream*); void selectFont (); void search (); bool repeatSearch (); void replace (); void doGotoLine (); void cleanWhiteSpace (); - void installRBPopup (QPopupMenu*); + void installRBPopup (TQPopupMenu*); int currentLine (); int currentColumn (); void spellcheck_start (); @@ -163,10 +163,10 @@ public: void setOverwriteEnabled (bool); %If ( KDE_3_2_0 - ) - QString selectWordUnderCursor (); + TQString selectWordUnderCursor (); %If ( KDE_3_2_3 - ) - QPopupMenu* createPopupMenu (const QPoint&); + TQPopupMenu* createPopupMenu (const TQPoint&); %If ( KDE_3_3_0 - ) void setAutoUpdate (bool); @@ -178,42 +178,42 @@ public: signals: - void gotUrlDrop (QDropEvent*); + void gotUrlDrop (TQDropEvent*); void CursorPositionChanged (); void toggle_overwrite_signal (); public slots: %If ( KDE_3_2_0 - ) - void corrected (const QString&, const QString&, uint); - void misspelling (const QString&, const QStringList&, uint); + void corrected (const TQString&, const TQString&, uint); + void misspelling (const TQString&, const TQStringList&, uint); %End protected: void computePosition (); - int doSearch (QString, bool, bool, bool, int, int); - int doReplace (QString, bool, bool, bool, int, int, bool); + int doSearch (TQString, bool, bool, bool, int, int); + int doReplace (TQString, bool, bool, bool, int, int, bool); void posToRowCol (uint, uint&, uint&); virtual void create (WId = 0, bool = 1, bool = 1); %If ( KDE_3_3_0 - ) virtual void ensureCursorVisible (); - virtual void setCursor (const QCursor&); - virtual void viewportPaintEvent (QPaintEvent*); + virtual void setCursor (const TQCursor&); + virtual void viewportPaintEvent (TQPaintEvent*); %End protected: - void keyPressEvent (QKeyEvent*); - void dragMoveEvent (QDragMoveEvent*); - void dragEnterEvent (QDragEnterEvent*); - void dropEvent (QDropEvent*); + void keyPressEvent (TQKeyEvent*); + void dragMoveEvent (TQDragMoveEvent*); + void dragEnterEvent (TQDragEnterEvent*); + void dropEvent (TQDropEvent*); %If ( KDE_3_1_3 - ) - void contentsDragMoveEvent (QDragMoveEvent*); - void contentsDragEnterEvent (QDragEnterEvent*); - void contentsDropEvent (QDropEvent*); + void contentsDragMoveEvent (TQDragMoveEvent*); + void contentsDragEnterEvent (TQDragEnterEvent*); + void contentsDropEvent (TQDropEvent*); %End |