summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/org/trinitydesktop/koala/KEditListBoxSignals.java
blob: 19e6fc03155c6a532d9101bd25f199ccd25b9be6 (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.trinitydesktop.koala;

import org.trinitydesktop.qt.TQListBox;
import org.trinitydesktop.qt.TQMetaObject;
import org.trinitydesktop.qt.QtSupport;
import java.util.ArrayList;
import org.trinitydesktop.qt.TQPushButton;
import org.trinitydesktop.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);
}