summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KEditListBoxSignals.java
blob: d3ec12c1aa5af0f259626007b6a9aeafc05c466f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.TQListBox;
import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
import java.util.ArrayList;
import org.kde.qt.TQPushButton;
import org.kde.qt.TQWidget;

public interface KEditListBoxSignals {
	void changed();
	/**	
		 This signal is emitted when the user adds a new string to the list,
		 the parameter is the added string.
				@short    This signal is emitted when the user adds a new string to the list,  the parameter is the added string.
	*/
	void added(String text);
	/**	
		 This signal is emitted when the user removes a string from the list,
		 the parameter is the removed string.
				@short    This signal is emitted when the user removes a string from the list,  the parameter is the removed string.
	*/
	void removed(String text);
}