~ubuntu-branches/ubuntu/breezy/kdemultimedia/breezy

« back to all changes in this revision

Viewing changes to arts/runtime/artsbuilder.idl

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2005-03-24 04:48:58 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050324044858-8ff88o9jxej6ii3d
Tags: 4:3.4.0-0ubuntu3
Add kubuntu_02_hide_arts_menu_entries.diff to hide artsbuilder and artscontrol k-menu entries

Show diffs side-by-side

added added

removed removed

Lines of Context:
150
150
                attribute string name;
151
151
                readonly attribute sequence<ModuleDesc> modules;
152
152
                readonly attribute sequence<StructurePortDesc> ports;
 
153
                readonly attribute sequence<string> inheritedInterfaces;
153
154
 
154
155
                sequence<string> saveToList();
155
156
                void loadFromList(sequence<string> list);
173
174
                void freeStructurePortDesc(StructurePortDesc portdesc);
174
175
                void moveStructurePortDesc(StructurePortDesc portdesc,
175
176
                                                                                                long newposition);
 
177
 
 
178
                // you will need to add the structure ports yourself
 
179
                void addInheritedInterface(string iface);
 
180
 
 
181
                // this will remove the associated structure ports
 
182
                void removeInheritedInterface(string iface);
176
183
        };
177
184
 
178
185
        interface StructurePortDesc : PortDesc {
183
190
                // as module - 0 is leftmost, higher numbers are more right
184
191
                readonly attribute long x, y, position;
185
192
                readonly attribute StructureDesc parentStructure;
 
193
 
 
194
                // if the port is associated with an inherited interface of the
 
195
                // parent structure, then it should be setup here
 
196
                attribute string inheritedInterface;
186
197
        
187
198
                boolean moveTo(long x, long y); // returns true when successful
188
199