summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KEditListBoxSignals.java
blob: 9ca5ac26c0d8247b1b443290255f32ed3de0e564 (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.QListBox;
import org.kde.qt.QMetaObject;
import org.kde.qt.QtSupport;
import java.util.ArrayList;
import org.kde.qt.QPushButton;
import org.kde.qt.QWidget;

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);
}