summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KXMLGUIClientInterface.java
blob: 1040e756d1b6aecc5310498958489831da58c1e9 (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.QDomDocument;
import org.kde.qt.QtSupport;
import org.kde.qt.QWidget;
import org.kde.qt.QDomElement;

public interface KXMLGUIClientInterface {
		KAction action(String name);
		KAction action(QDomElement element);
		KActionCollection actionCollection();
		KInstanceInterface instance();
		QDomDocument domDocument();
		String xmlFile();
		String localXMLFile();
		void setXMLGUIBuildDocument(QDomDocument doc);
		QDomDocument 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(QWidget arg1);
		void endXMLPlug();
		void prepareXMLUnplug(QWidget arg1);
}