summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/KLineEditSignals.java
diff options
context:
space:
mode:
Diffstat (limited to 'tdejava/koala/org/trinitydesktop/koala/KLineEditSignals.java')
-rw-r--r--tdejava/koala/org/trinitydesktop/koala/KLineEditSignals.java72
1 files changed, 72 insertions, 0 deletions
diff --git a/tdejava/koala/org/trinitydesktop/koala/KLineEditSignals.java b/tdejava/koala/org/trinitydesktop/koala/KLineEditSignals.java
new file mode 100644
index 00000000..84679d95
--- /dev/null
+++ b/tdejava/koala/org/trinitydesktop/koala/KLineEditSignals.java
@@ -0,0 +1,72 @@
+//Auto-generated by kalyptus. DO NOT EDIT.
+package org.trinitydesktop.koala;
+
+import org.trinitydesktop.qt.TQMetaObject;
+import org.trinitydesktop.qt.QtSupport;
+import org.trinitydesktop.qt.TQObject;
+import org.trinitydesktop.qt.TQPopupMenu;
+import org.trinitydesktop.qt.TQContextMenuEvent;
+import org.trinitydesktop.qt.TQFocusEvent;
+import org.trinitydesktop.qt.TQMouseEvent;
+import org.trinitydesktop.qt.TQKeyEvent;
+import org.trinitydesktop.qt.TQDropEvent;
+import org.trinitydesktop.qt.TQEvent;
+import org.trinitydesktop.qt.TQWidget;
+import org.trinitydesktop.qt.TQResizeEvent;
+
+public interface KLineEditSignals {
+ /**
+ Emitted whenever the completion box is activated.
+ @short Emitted whenever the completion box is activated.
+ */
+ void completionBoxActivated(String arg1);
+ /**
+ Emitted when the user presses the return key.
+ The argument is the current text. Note that this
+ signal is <b>not</b> emitted if the widget's <code>EchoMode</code> is set to
+ TQLineEdit.EchoMode.
+ @short Emitted when the user presses the return key.
+ */
+ void returnPressed(String arg1);
+ /**
+ Emitted when the completion key is pressed.
+ Please note that this signal is <b>not</b> emitted if the
+ completion mode is set to <code>CompletionNone</code> or <code>EchoMode</code> is
+ <b>normal</b>.
+ @short Emitted when the completion key is pressed.
+ */
+ void completion(String arg1);
+ /**
+ Emitted when the shortcut for substring completion is pressed.
+ @short Emitted when the shortcut for substring completion is pressed.
+ */
+ void substringCompletion(String arg1);
+ /**
+ Emitted when the text rotation key-bindings are pressed.
+ The argument indicates which key-binding was pressed.
+ In KLineEdit's case this can be either one of two values:
+ PrevCompletionMatch or NextCompletionMatch. See
+ TDECompletionBase.setKeyBinding for details.
+ Note that this signal is <b>not</b> emitted if the completion
+ mode is set to <code>TDEGlobalSettings</code>.CompletionNone or <code>echoMode</code>() is <b>not</b> normal.
+ @short Emitted when the text rotation key-bindings are pressed.
+ */
+ void textRotation(int arg1);
+ /**
+ Emitted when the user changed the completion mode by using the
+ popupmenu.
+ @short Emitted when the user changed the completion mode by using the popupmenu.
+ */
+ void completionModeChanged(int arg1);
+ /**
+ Emitted before the context menu is displayed.
+ The signal allows you to add your own entries into the
+ the context menu that is created on demand.
+ NOTE: Do not store the pointer to the TQPopupMenu
+ provided through since it is created and deleted
+ on demand.
+ @param p the context menu about to be displayed
+ @short Emitted before the context menu is displayed.
+ */
+ void aboutToShowContextMenu(TQPopupMenu p);
+}