You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/KLineEditSignals.java

73 lines
2.7 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.TQObject;
import org.kde.qt.TQPopupMenu;
import org.kde.qt.TQContextMenuEvent;
import org.kde.qt.TQFocusEvent;
import org.kde.qt.TQMouseEvent;
import org.kde.qt.TQKeyEvent;
import org.kde.qt.TQDropEvent;
import org.kde.qt.TQEvent;
import org.kde.qt.TQWidget;
import org.kde.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);
}