summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KXMLGUIClientInterface.java
blob: b22ac418db02cb97a8228226329395c957b3c51c (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
26
27
28
29
30
31
32
33
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.TQDomDocument;
import org.kde.qt.QtSupport;
import org.kde.qt.TQWidget;
import org.kde.qt.TQDomElement;

public interface KXMLGUIClientInterface {
		KAction action(String name);
		KAction action(TQDomElement element);
		KActionCollection actionCollection();
		KInstanceInterface instance();
		TQDomDocument domDocument();
		String xmlFile();
		String localXMLFile();
		void setXMLGUIBuildDocument(TQDomDocument doc);
		TQDomDocument xmlguiBuildDocument();
		void setFactory(KXMLGUIFactory factory);
		KXMLGUIFactory factory();
		KXMLGUIClientInterface parentClient();
		void insertChildClient(KXMLGUIClientInterface child);
		void removeChildClient(KXMLGUIClientInterface child);
		void setClientBuilder(KXMLGUIBuilderInterface builder);
		KXMLGUIBuilderInterface clientBuilder();
		void reloadXML();
		void unplugActionList(String name);
		void addStateActionEnabled(String state, String action);
		void addStateActionDisabled(String state, String action);
		void beginXMLPlug(TQWidget arg1);
		void endXMLPlug();
		void prepareXMLUnplug(TQWidget arg1);
}