build fix: no comphelper/profilezone.hxx in this branch
[LibreOffice.git] / offapi / type_reference / offapi.idl
blobc7268343d6f51ac0d3d6bcf37f290ed910d4128d
1 module com {
2 module sun {
3 module star {
4 module accessibility {
5 interface XAccessibleContext;
6 interface XAccessible {
7 interface ::com::sun::star::uno::XInterface;
8 ::com::sun::star::accessibility::XAccessibleContext getAccessibleContext();
9 };
11 module awt {
12 published struct Point {
13 long X;
14 long Y;
16 published struct Rectangle {
17 long X;
18 long Y;
19 long Width;
20 long Height;
22 published struct Size {
23 long Width;
24 long Height;
27 module util {
28 published typedef long Color;
30 module awt {
31 published struct KeyStroke {
32 short Modifiers;
33 short KeyCode;
34 char KeyChar;
35 short KeyFunc;
38 module auth {
39 published exception AuthenticationFailedException: ::com::sun::star::uno::Exception {
41 published exception InvalidArgumentException: ::com::sun::star::uno::Exception {
43 published exception InvalidContextException: ::com::sun::star::uno::Exception {
45 published exception InvalidCredentialException: ::com::sun::star::uno::Exception {
47 published exception InvalidPrincipalException: ::com::sun::star::uno::Exception {
49 published exception PersistenceFailureException: ::com::sun::star::uno::Exception {
51 published interface XSSOManager;
52 published interface XSSOManagerFactory {
53 interface ::com::sun::star::uno::XInterface;
54 ::com::sun::star::auth::XSSOManager getSSOManager();
56 published service SSOManagerFactory: ::com::sun::star::auth::XSSOManagerFactory;
57 published interface XSSOPasswordCache {
58 interface ::com::sun::star::uno::XInterface;
59 void addPassword([in] string UserName, [in] string Password, [in] boolean Persist) raises (::com::sun::star::auth::InvalidArgumentException, ::com::sun::star::auth::PersistenceFailureException);
60 string getPassword([in] string UserName, [out] boolean Persist) raises (::com::sun::star::auth::InvalidArgumentException, ::com::sun::star::auth::PersistenceFailureException);
61 void removePassword([in] string UserName, [in] boolean RemovePersist) raises (::com::sun::star::auth::InvalidArgumentException, ::com::sun::star::auth::PersistenceFailureException);
63 published service SSOPasswordCache: ::com::sun::star::auth::XSSOPasswordCache;
64 published exception UnsupportedException: ::com::sun::star::uno::Exception {
66 published interface XSSOContext {
67 interface ::com::sun::star::uno::XInterface;
68 string getSource();
69 string getTarget();
70 string getMechanism();
71 boolean getMutual();
73 published interface XSSOAcceptorContext {
74 interface ::com::sun::star::auth::XSSOContext;
75 sequence< byte > accept([in] sequence< byte > Token) raises (::com::sun::star::auth::InvalidArgumentException, ::com::sun::star::auth::InvalidCredentialException, ::com::sun::star::auth::InvalidContextException, ::com::sun::star::auth::AuthenticationFailedException);
77 published interface XSSOInitiatorContext {
78 interface ::com::sun::star::auth::XSSOContext;
79 sequence< byte > init([in] sequence< byte > Token) raises (::com::sun::star::auth::InvalidArgumentException, ::com::sun::star::auth::InvalidCredentialException, ::com::sun::star::auth::InvalidContextException, ::com::sun::star::auth::AuthenticationFailedException);
81 published interface XSSOManager {
82 interface ::com::sun::star::uno::XInterface;
83 string getMechanism();
84 ::com::sun::star::auth::XSSOInitiatorContext createInitiatorContext([in] string SourcePrincipal, [in] string TargetPrincipal, [in] string TargetHost) raises (::com::sun::star::auth::InvalidArgumentException, ::com::sun::star::auth::InvalidCredentialException, ::com::sun::star::auth::InvalidPrincipalException, ::com::sun::star::auth::UnsupportedException);
85 ::com::sun::star::auth::XSSOAcceptorContext createAcceptorContext([in] string TargetPrincipal) raises (::com::sun::star::auth::InvalidArgumentException, ::com::sun::star::auth::InvalidCredentialException, ::com::sun::star::auth::InvalidPrincipalException, ::com::sun::star::auth::UnsupportedException);
88 module awt {
89 published struct ActionEvent: ::com::sun::star::lang::EventObject {
90 string ActionCommand;
92 published enum AdjustmentType {
93 ADJUST_LINE = 0,
94 ADJUST_PAGE = 1,
95 ADJUST_ABS = 2
97 published struct AdjustmentEvent: ::com::sun::star::lang::EventObject {
98 long Value;
99 ::com::sun::star::awt::AdjustmentType Type;
101 published interface XControlModel;
102 published interface XToolkit;
103 published interface XView;
104 published interface XWindowPeer;
105 published interface XControl {
106 interface ::com::sun::star::lang::XComponent;
107 void setContext([in] ::com::sun::star::uno::XInterface Context);
108 ::com::sun::star::uno::XInterface getContext();
109 void createPeer([in] ::com::sun::star::awt::XToolkit Toolkit, [in] ::com::sun::star::awt::XWindowPeer Parent);
110 ::com::sun::star::awt::XWindowPeer getPeer();
111 boolean setModel([in] ::com::sun::star::awt::XControlModel Model);
112 ::com::sun::star::awt::XControlModel getModel();
113 ::com::sun::star::awt::XView getView();
114 void setDesignMode([in] boolean bOn);
115 boolean isDesignMode();
116 boolean isTransparent();
118 published interface XGraphics;
119 published interface XView {
120 interface ::com::sun::star::uno::XInterface;
121 boolean setGraphics([in] ::com::sun::star::awt::XGraphics aDevice);
122 ::com::sun::star::awt::XGraphics getGraphics();
123 ::com::sun::star::awt::Size getSize();
124 void draw([in] long nX, [in] long nY);
125 void setZoom([in] float fZoomX, [in] float fZoomY);
127 published interface XFocusListener;
128 published interface XKeyListener;
129 published interface XMouseListener;
130 published interface XMouseMotionListener;
131 published interface XPaintListener;
132 published interface XWindowListener;
133 published interface XWindow {
134 interface ::com::sun::star::lang::XComponent;
135 void setPosSize([in] long X, [in] long Y, [in] long Width, [in] long Height, [in] short Flags);
136 ::com::sun::star::awt::Rectangle getPosSize();
137 void setVisible([in] boolean Visible);
138 void setEnable([in] boolean Enable);
139 void setFocus();
140 void addWindowListener([in] ::com::sun::star::awt::XWindowListener xListener);
141 void removeWindowListener([in] ::com::sun::star::awt::XWindowListener xListener);
142 void addFocusListener([in] ::com::sun::star::awt::XFocusListener xListener);
143 void removeFocusListener([in] ::com::sun::star::awt::XFocusListener xListener);
144 void addKeyListener([in] ::com::sun::star::awt::XKeyListener xListener);
145 void removeKeyListener([in] ::com::sun::star::awt::XKeyListener xListener);
146 void addMouseListener([in] ::com::sun::star::awt::XMouseListener xListener);
147 void removeMouseListener([in] ::com::sun::star::awt::XMouseListener xListener);
148 void addMouseMotionListener([in] ::com::sun::star::awt::XMouseMotionListener xListener);
149 void removeMouseMotionListener([in] ::com::sun::star::awt::XMouseMotionListener xListener);
150 void addPaintListener([in] ::com::sun::star::awt::XPaintListener xListener);
151 void removePaintListener([in] ::com::sun::star::awt::XPaintListener xListener);
153 published service UnoControl {
154 interface ::com::sun::star::lang::XComponent;
155 interface ::com::sun::star::awt::XControl;
156 interface ::com::sun::star::awt::XWindow;
157 interface ::com::sun::star::awt::XView;
158 [optional] interface ::com::sun::star::accessibility::XAccessible;
160 published service UnoControlDialogElement {
161 [property] long Height;
162 [property] string Name;
163 [property] string PositionX;
164 [property] string PositionY;
165 [property] long Step;
166 [property] short TabIndex;
167 [property] string Tag;
168 [property] long Width;
170 published interface XControlModel {
171 interface ::com::sun::star::uno::XInterface;
174 module util {
175 published interface XCloneable {
176 interface ::com::sun::star::uno::XInterface;
177 ::com::sun::star::util::XCloneable createClone();
180 module awt {
181 published service UnoControlModel {
182 [optional] service ::com::sun::star::awt::UnoControlDialogElement;
183 interface ::com::sun::star::awt::XControlModel;
184 interface ::com::sun::star::lang::XComponent;
185 interface ::com::sun::star::beans::XPropertySet;
186 interface ::com::sun::star::beans::XMultiPropertySet;
187 interface ::com::sun::star::io::XPersistObject;
188 interface ::com::sun::star::util::XCloneable;
189 [property] string DefaultControl;
191 /** @deprecated */ published constants CharSet {
192 const short ANSI = 1;
193 const short DONTKNOW = 0;
194 const short IBMPC_437 = 3;
195 const short IBMPC_850 = 4;
196 const short IBMPC_860 = 5;
197 const short IBMPC_861 = 6;
198 const short IBMPC_863 = 7;
199 const short IBMPC_865 = 8;
200 const short MAC = 2;
201 const short SYMBOL = 10;
202 const short SYSTEM = 9;
204 published constants Command {
205 const short AUTOSCROLL = 5;
206 const short CONTEXTMENU = 1;
207 const short CURSORPOS = 11;
208 const short ENDEXTTEXTINPUT = 9;
209 const short EXTTEXTINPUT = 8;
210 const short HANGUL_HANJA_CONVERSION = 14;
211 const short INPUTCONTEXTCHANGE = 10;
212 const short MODKEYCHANGE = 13;
213 const short PASTESELECTION = 12;
214 const short STARTAUTOSCROLL = 4;
215 const short STARTDRAG = 2;
216 const short STARTEXTTEXTINPUT = 7;
217 const short USER = 4096;
218 const short VOICE = 6;
219 const short WHEEL = 3;
221 published constants DeviceCapability {
222 const long GETBITS = 2;
223 const long RASTEROPERATIONS = 1;
225 published struct DeviceInfo {
226 long Width;
227 long Height;
228 long LeftInset;
229 long TopInset;
230 long RightInset;
231 long BottomInset;
232 double PixelPerMeterX;
233 double PixelPerMeterY;
234 short BitsPerPixel;
235 long Capabilities;
237 published struct InputEvent: ::com::sun::star::lang::EventObject {
238 short Modifiers;
240 published struct MouseEvent: ::com::sun::star::awt::InputEvent {
241 short Buttons;
242 long X;
243 long Y;
244 long ClickCount;
245 boolean PopupTrigger;
247 published struct EnhancedMouseEvent: ::com::sun::star::awt::MouseEvent {
248 ::com::sun::star::uno::XInterface Target;
250 published constants FocusChangeReason {
251 const long AROUND = 64;
252 const long BACKWARD = 32;
253 const long CURSOR = 2;
254 const long FORWARD = 16;
255 const long MNEMONIC = 4;
256 const long TAB = 1;
257 const long UNIQUEMNEMONIC = 256;
259 published struct FocusEvent: ::com::sun::star::lang::EventObject {
260 short FocusFlags;
261 ::com::sun::star::uno::XInterface NextFocus;
262 boolean Temporary;
264 published enum FontSlant {
265 NONE = 0,
266 OBLIQUE = 1,
267 ITALIC = 2,
268 DONTKNOW = 3,
269 REVERSE_OBLIQUE = 4,
270 REVERSE_ITALIC = 5
272 published struct FontDescriptor {
273 string Name;
274 short Height;
275 short Width;
276 string StyleName;
277 short Family;
278 short CharSet;
279 short Pitch;
280 float CharacterWidth;
281 float Weight;
282 ::com::sun::star::awt::FontSlant Slant;
283 short Underline;
284 short Strikeout;
285 float Orientation;
286 boolean Kerning;
287 boolean WordLineMode;
288 short Type;
290 published constants FontEmphasisMark {
291 const short ABOVE = 4096;
292 const short ACCENT = 4;
293 const short BELOW = 8192;
294 const short CIRCLE = 2;
295 const short DISC = 3;
296 const short DOT = 1;
297 const short NONE = 0;
299 published constants FontFamily {
300 const short DECORATIVE = 1;
301 const short DONTKNOW = 0;
302 const short MODERN = 2;
303 const short ROMAN = 3;
304 const short SCRIPT = 4;
305 const short SWISS = 5;
306 const short SYSTEM = 6;
308 published constants FontPitch {
309 const short DONTKNOW = 0;
310 const short FIXED = 1;
311 const short VARIABLE = 2;
313 published constants FontRelief {
314 const short EMBOSSED = 1;
315 const short ENGRAVED = 2;
316 const short NONE = 0;
318 published constants FontStrikeout {
319 const short BOLD = 4;
320 const short DONTKNOW = 3;
321 const short DOUBLE = 2;
322 const short NONE = 0;
323 const short SINGLE = 1;
324 const short SLASH = 5;
325 const short X = 6;
327 published constants FontType {
328 const short DEVICE = 2;
329 const short DONTKNOW = 0;
330 const short RASTER = 1;
331 const short SCALABLE = 4;
333 published constants FontUnderline {
334 const short BOLD = 12;
335 const short BOLDDASH = 14;
336 const short BOLDDASHDOT = 16;
337 const short BOLDDASHDOTDOT = 17;
338 const short BOLDDOTTED = 13;
339 const short BOLDLONGDASH = 15;
340 const short BOLDWAVE = 18;
341 const short DASH = 5;
342 const short DASHDOT = 7;
343 const short DASHDOTDOT = 8;
344 const short DONTKNOW = 4;
345 const short DOTTED = 3;
346 const short DOUBLE = 2;
347 const short DOUBLEWAVE = 11;
348 const short LONGDASH = 6;
349 const short NONE = 0;
350 const short SINGLE = 1;
351 const short SMALLWAVE = 9;
352 const short WAVE = 10;
354 published constants FontWeight {
355 const float BLACK = 200;
356 const float BOLD = 150;
357 const float DONTKNOW = 0;
358 const float LIGHT = 75;
359 const float NORMAL = 100;
360 const float SEMIBOLD = 110;
361 const float SEMILIGHT = 90;
362 const float THIN = 50;
363 const float ULTRABOLD = 175;
364 const float ULTRALIGHT = 60;
366 published constants FontWidth {
367 const float CONDENSED = 75;
368 const float DONTKNOW = 0;
369 const float EXPANDED = 150;
370 const float EXTRACONDENSED = 60;
371 const float EXTRAEXPANDED = 175;
372 const float NORMAL = 100;
373 const float SEMICONDENSED = 90;
374 const float SEMIEXPANDED = 110;
375 const float ULTRACONDENSED = 50;
376 const float ULTRAEXPANDED = 200;
378 published enum GradientStyle {
379 LINEAR = 0,
380 AXIAL = 1,
381 RADIAL = 2,
382 ELLIPTICAL = 3,
383 SQUARE = 4,
384 RECT = 5
386 published struct Gradient {
387 ::com::sun::star::awt::GradientStyle Style;
388 ::com::sun::star::util::Color StartColor;
389 ::com::sun::star::util::Color EndColor;
390 short Angle;
391 short Border;
392 short XOffset;
393 short YOffset;
394 short StartIntensity;
395 short EndIntensity;
396 short StepCount;
398 published constants ImageAlign {
399 const short BOTTOM = 3;
400 const short LEFT = 0;
401 const short RIGHT = 2;
402 const short TOP = 1;
404 published constants ImageStatus {
405 const long IMAGESTATUS_ABORTED = 4;
406 const long IMAGESTATUS_ERROR = 1;
407 const long IMAGESTATUS_SINGLEFRAMEDONE = 2;
408 const long IMAGESTATUS_STATICIMAGEDONE = 3;
410 published constants InvalidateStyle {
411 const short CHILDREN = 1;
412 const short NOCHILDREN = 2;
413 const short NOCLIPCHILDREN = 16384;
414 const short NOERASE = 4;
415 const short NOTRANSPARENT = 32;
416 const short TRANSPARENT = 16;
417 const short UPDATE = 8;
419 published struct ItemEvent: ::com::sun::star::lang::EventObject {
420 long Selected;
421 long Highlighted;
422 long ItemId;
424 published constants Key {
425 const short A = 512;
426 const short ADD = 1287;
427 const short B = 513;
428 const short BACKSPACE = 1283;
429 const short BRACKETLEFT = 1315;
430 const short BRACKETRIGHT = 1316;
431 const short C = 514;
432 const short CAPSLOCK = 1312;
433 const short COMMA = 1292;
434 const short CONTEXTMENU = 1305;
435 const short COPY = 1298;
436 const short CUT = 1297;
437 const short D = 515;
438 const short DECIMAL = 1309;
439 const short DELETE = 1286;
440 const short DELETE_TO_BEGIN_OF_LINE = 1536;
441 const short DELETE_TO_BEGIN_OF_PARAGRAPH = 1538;
442 const short DELETE_TO_END_OF_LINE = 1537;
443 const short DELETE_TO_END_OF_PARAGRAPH = 1539;
444 const short DELETE_WORD_BACKWARD = 1540;
445 const short DELETE_WORD_FORWARD = 1541;
446 const short DIVIDE = 1290;
447 const short DOWN = 1024;
448 const short E = 516;
449 const short END = 1029;
450 const short EQUAL = 1295;
451 const short ESCAPE = 1281;
452 const short F = 517;
453 const short F1 = 768;
454 const short F10 = 777;
455 const short F11 = 778;
456 const short F12 = 779;
457 const short F13 = 780;
458 const short F14 = 781;
459 const short F15 = 782;
460 const short F16 = 783;
461 const short F17 = 784;
462 const short F18 = 785;
463 const short F19 = 786;
464 const short F2 = 769;
465 const short F20 = 787;
466 const short F21 = 788;
467 const short F22 = 789;
468 const short F23 = 790;
469 const short F24 = 791;
470 const short F25 = 792;
471 const short F26 = 793;
472 const short F3 = 770;
473 const short F4 = 771;
474 const short F5 = 772;
475 const short F6 = 773;
476 const short F7 = 774;
477 const short F8 = 775;
478 const short F9 = 776;
479 const short FIND = 1302;
480 const short FRONT = 1304;
481 const short G = 518;
482 const short GREATER = 1294;
483 const short H = 519;
484 const short HANGUL_HANJA = 1308;
485 const short HELP = 1306;
486 const short HOME = 1028;
487 const short I = 520;
488 const short INSERT = 1285;
489 const short INSERT_LINEBREAK = 1542;
490 const short INSERT_PARAGRAPH = 1543;
491 const short J = 521;
492 const short K = 522;
493 const short L = 523;
494 const short LEFT = 1026;
495 const short LESS = 1293;
496 const short M = 524;
497 const short MENU = 1307;
498 const short MOVE_TO_BEGIN_OF_DOCUMENT = 1560;
499 const short MOVE_TO_BEGIN_OF_LINE = 1546;
500 const short MOVE_TO_BEGIN_OF_PARAGRAPH = 1548;
501 const short MOVE_TO_END_OF_DOCUMENT = 1561;
502 const short MOVE_TO_END_OF_LINE = 1547;
503 const short MOVE_TO_END_OF_PARAGRAPH = 1549;
504 const short MOVE_WORD_BACKWARD = 1544;
505 const short MOVE_WORD_FORWARD = 1545;
506 const short MULTIPLY = 1289;
507 const short N = 525;
508 const short NUM0 = 256;
509 const short NUM1 = 257;
510 const short NUM2 = 258;
511 const short NUM3 = 259;
512 const short NUM4 = 260;
513 const short NUM5 = 261;
514 const short NUM6 = 262;
515 const short NUM7 = 263;
516 const short NUM8 = 264;
517 const short NUM9 = 265;
518 const short NUMLOCK = 1313;
519 const short O = 526;
520 const short OPEN = 1296;
521 const short P = 527;
522 const short PAGEDOWN = 1031;
523 const short PAGEUP = 1030;
524 const short PASTE = 1299;
525 const short POINT = 1291;
526 const short PROPERTIES = 1303;
527 const short Q = 528;
528 const short QUOTELEFT = 1311;
529 const short QUOTERIGHT = 1318;
530 const short R = 529;
531 const short REPEAT = 1301;
532 const short RETURN = 1280;
533 const short RIGHT = 1027;
534 const short S = 530;
535 const short SCROLLLOCK = 1314;
536 const short SELECT_ALL = 1557;
537 const short SELECT_BACKWARD = 1550;
538 const short SELECT_FORWARD = 1551;
539 const short SELECT_LINE = 1555;
540 const short SELECT_PARAGRAPH = 1556;
541 const short SELECT_TO_BEGIN_OF_DOCUMENT = 1562;
542 const short SELECT_TO_BEGIN_OF_LINE = 1558;
543 const short SELECT_TO_BEGIN_OF_PARAGRAPH = 1564;
544 const short SELECT_TO_END_OF_DOCUMENT = 1563;
545 const short SELECT_TO_END_OF_LINE = 1559;
546 const short SELECT_TO_END_OF_PARAGRAPH = 1565;
547 const short SELECT_WORD = 1554;
548 const short SELECT_WORD_BACKWARD = 1552;
549 const short SELECT_WORD_FORWARD = 1553;
550 const short SEMICOLON = 1317;
551 const short SPACE = 1284;
552 const short SUBTRACT = 1288;
553 const short T = 531;
554 const short TAB = 1282;
555 const short TILDE = 1310;
556 const short U = 532;
557 const short UNDO = 1300;
558 const short UP = 1025;
559 const short V = 533;
560 const short W = 534;
561 const short X = 535;
562 const short Y = 536;
563 const short Z = 537;
565 published struct KeyEvent: ::com::sun::star::awt::InputEvent {
566 short KeyCode;
567 char KeyChar;
568 short KeyFunc;
570 published constants KeyFunction {
571 const short CLOSE = 6;
572 const short COPY = 9;
573 const short CUT = 8;
574 const short DELETE = 13;
575 const short DONTKNOW = 0;
576 const short FIND = 15;
577 const short FINDBACKWARD = 16;
578 const short FRONT = 18;
579 const short NEW = 1;
580 const short OPEN = 2;
581 const short PASTE = 10;
582 const short PRINT = 5;
583 const short PROPERTIES = 17;
584 const short QUIT = 7;
585 const short REDO = 12;
586 const short REPEAT = 14;
587 const short SAVE = 3;
588 const short SAVEAS = 4;
589 const short UNDO = 11;
591 /** @deprecated */ published constants KeyGroup {
592 const short ALPHA = 512;
593 const short CURSOR = 1024;
594 const short FKEYS = 768;
595 const short MISC = 1280;
596 const short NUM = 256;
597 const short TYPE = 3840;
599 published constants KeyModifier {
600 const short MOD1 = 2;
601 const short MOD2 = 4;
602 const short MOD3 = 8;
603 const short SHIFT = 1;
605 published enum MenuItemType {
606 DONTKNOW = 0,
607 STRING = 1,
608 IMAGE = 2,
609 STRINGIMAGE = 3,
610 SEPARATOR = 4
612 published interface XMenuListener;
613 published interface XPopupMenu;
614 published interface XMenu {
615 interface ::com::sun::star::uno::XInterface;
616 void addMenuListener([in] ::com::sun::star::awt::XMenuListener xListener);
617 void removeMenuListener([in] ::com::sun::star::awt::XMenuListener xListener);
618 void insertItem([in] short nItemId, [in] string aText, [in] short nItemStyle, [in] short nItemPos);
619 void removeItem([in] short nItemPos, [in] short nCount);
620 void clear();
621 short getItemCount();
622 short getItemId([in] short nItemPos);
623 short getItemPos([in] short nItemId);
624 ::com::sun::star::awt::MenuItemType getItemType([in] short nItemPos);
625 void enableItem([in] short nItemId, [in] boolean bEnable);
626 boolean isItemEnabled([in] short nItemId);
627 void hideDisabledEntries([in] boolean bHide);
628 void enableAutoMnemonics([in] boolean bEnable);
629 void setItemText([in] short nItemId, [in] string aText);
630 string getItemText([in] short nItemId);
631 void setCommand([in] short nItemId, [in] string aCommand);
632 string getCommand([in] short nItemId);
633 void setHelpCommand([in] short nItemId, [in] string aCommand);
634 string getHelpCommand([in] short nItemId);
635 void setHelpText([in] short nItemId, [in] string sHelpText);
636 string getHelpText([in] short nItemId);
637 void setTipHelpText([in] short nItemId, [in] string sTipHelpText);
638 string getTipHelpText([in] short nItemId);
639 boolean isPopupMenu();
640 void setPopupMenu([in] short nItemId, [in] ::com::sun::star::awt::XPopupMenu aPopupMenu);
641 ::com::sun::star::awt::XPopupMenu getPopupMenu([in] short nItemId);
643 published interface XMenuBar {
644 interface ::com::sun::star::awt::XMenu;
646 published service MenuBar: ::com::sun::star::awt::XMenuBar;
647 published struct MenuEvent: ::com::sun::star::lang::EventObject {
648 short MenuId;
650 published enum MessageBoxType {
651 MESSAGEBOX = 0,
652 INFOBOX = 1,
653 WARNINGBOX = 2,
654 ERRORBOX = 3,
655 QUERYBOX = 4
657 published constants MouseButton {
658 const short LEFT = 1;
659 const short MIDDLE = 4;
660 const short RIGHT = 2;
662 published struct PaintEvent: ::com::sun::star::lang::EventObject {
663 ::com::sun::star::awt::Rectangle UpdateRect;
664 short Count;
666 published interface XPointer {
667 interface ::com::sun::star::uno::XInterface;
668 void setType([in] long nType);
669 long getType();
671 published interface XWindowPeer;
673 module graphic {
674 published interface XGraphic;
676 module awt {
677 published interface XPopupMenu {
678 interface ::com::sun::star::awt::XMenu;
679 void insertSeparator([in] short nItemPos);
680 void setDefaultItem([in] short nItemId);
681 short getDefaultItem();
682 void checkItem([in] short nItemId, [in] boolean bCheck);
683 boolean isItemChecked([in] short nItemId);
684 short execute([in] ::com::sun::star::awt::XWindowPeer Parent, [in] ::com::sun::star::awt::Rectangle Position, [in] short Direction);
685 boolean isInExecute();
686 void endExecute();
687 void setAcceleratorKeyEvent([in] short nItemId, [in] ::com::sun::star::awt::KeyEvent aKeyEvent);
688 ::com::sun::star::awt::KeyEvent getAcceleratorKeyEvent([in] short nItemId);
689 void setItemImage([in] short nItemId, [in] ::com::sun::star::graphic::XGraphic xGraphic, [in] boolean bScale);
690 ::com::sun::star::graphic::XGraphic getItemImage([in] short nItemId);
692 published service PopupMenu: ::com::sun::star::awt::XPopupMenu;
693 published constants PopupMenuDirection {
694 const short EXECUTE_DEFAULT = 0;
695 const short EXECUTE_DOWN = 1;
696 const short EXECUTE_LEFT = 4;
697 const short EXECUTE_RIGHT = 8;
698 const short EXECUTE_UP = 2;
700 published constants PosSize {
701 const short HEIGHT = 8;
702 const short POS = 3;
703 const short POSSIZE = 15;
704 const short SIZE = 12;
705 const short WIDTH = 4;
706 const short X = 1;
707 const short Y = 2;
709 published exception PrinterException: ::com::sun::star::uno::Exception {
711 published interface XInfoPrinter;
712 published interface XPrinter;
713 published interface XPrinterServer {
714 interface ::com::sun::star::uno::XInterface;
715 sequence< string > getPrinterNames();
716 ::com::sun::star::awt::XPrinter createPrinter([in] string printerName);
717 ::com::sun::star::awt::XInfoPrinter createInfoPrinter([in] string printerName);
719 published enum PushButtonType {
720 STANDARD = 0,
721 OK = 1,
722 CANCEL = 2,
723 HELP = 3
725 published enum RasterOperation {
726 OVERPAINT = 0,
727 XOR = 1,
728 ZEROBITS = 2,
729 ALLBITS = 3,
730 INVERT = 4
732 published constants ScrollBarOrientation {
733 const long HORIZONTAL = 0;
734 const long VERTICAL = 1;
736 published struct Selection {
737 long Min;
738 long Max;
740 published struct SimpleFontMetric {
741 short Ascent;
742 short Descent;
743 short Leading;
744 short Slant;
745 char FirstChar;
746 char LastChar;
748 published struct SpinEvent: ::com::sun::star::lang::EventObject {
749 short dummy1;
751 published constants Style {
752 const short DIALOG = 1;
753 const short FRAME = 0;
755 /** @deprecated */ published struct SystemDependentXWindow {
756 long WindowHandle;
757 hyper DisplayPointer;
759 published constants SystemPointer {
760 const long ARROW = 0;
761 const long CHAIN = 70;
762 const long CHAIN_NOTALLOWED = 71;
763 const long CHART = 65;
764 const long COPYDATA = 41;
765 const long COPYDATALINK = 44;
766 const long COPYFILE = 46;
767 const long COPYFILELINK = 49;
768 const long COPYFILES = 51;
769 const long CROOK = 36;
770 const long CROP = 37;
771 const long CROSS = 5;
772 const long DETECTIVE = 66;
773 const long DRAW_ARC = 57;
774 const long DRAW_BEZIER = 56;
775 const long DRAW_CAPTION = 64;
776 const long DRAW_CIRCLECUT = 59;
777 const long DRAW_CONNECT = 62;
778 const long DRAW_ELLIPSE = 60;
779 const long DRAW_FREEHAND = 61;
780 const long DRAW_LINE = 53;
781 const long DRAW_PIE = 58;
782 const long DRAW_POLYGON = 55;
783 const long DRAW_RECT = 54;
784 const long DRAW_TEXT = 63;
785 const long ESIZE = 10;
786 const long FILL = 31;
787 const long HAND = 27;
788 const long HELP = 4;
789 const long HSHEAR = 33;
790 const long HSIZEBAR = 25;
791 const long HSPLIT = 23;
792 const long INVISIBLE = 1;
793 const long LINKDATA = 42;
794 const long LINKFILE = 47;
795 const long MAGNIFY = 30;
796 const long MIRROR = 35;
797 const long MOVE = 6;
798 const long MOVEBEZIERWEIGHT = 39;
799 const long MOVEDATA = 40;
800 const long MOVEDATALINK = 43;
801 const long MOVEFILE = 45;
802 const long MOVEFILELINK = 48;
803 const long MOVEFILES = 50;
804 const long MOVEPOINT = 38;
805 const long NESIZE = 12;
806 const long NOTALLOWED = 52;
807 const long NSIZE = 7;
808 const long NWSIZE = 11;
809 const long PEN = 29;
810 const long PIVOT_COL = 67;
811 const long PIVOT_FIELD = 69;
812 const long PIVOT_ROW = 68;
813 const long REFHAND = 28;
814 const long ROTATE = 32;
815 const long SESIZE = 14;
816 const long SSIZE = 8;
817 const long SWSIZE = 13;
818 const long TEXT = 3;
819 const long VSHEAR = 34;
820 const long VSIZEBAR = 26;
821 const long VSPLIT = 24;
822 const long WAIT = 2;
823 const long WINDOW_ESIZE = 18;
824 const long WINDOW_NESIZE = 20;
825 const long WINDOW_NSIZE = 15;
826 const long WINDOW_NWSIZE = 19;
827 const long WINDOW_SESIZE = 22;
828 const long WINDOW_SSIZE = 16;
829 const long WINDOW_SWSIZE = 21;
830 const long WINDOW_WSIZE = 17;
831 const long WSIZE = 9;
833 published interface XControlContainer;
834 published interface XTabControllerModel;
835 published interface XTabController {
836 interface ::com::sun::star::uno::XInterface;
837 void setModel([in] ::com::sun::star::awt::XTabControllerModel Model);
838 ::com::sun::star::awt::XTabControllerModel getModel();
839 void setContainer([in] ::com::sun::star::awt::XControlContainer Container);
840 ::com::sun::star::awt::XControlContainer getContainer();
841 sequence< ::com::sun::star::awt::XControl > getControls();
842 void autoTabOrder();
843 void activateTabOrder();
844 void activateFirst();
845 void activateLast();
847 published service TabController: ::com::sun::star::awt::XTabController;
848 published interface XTabControllerModel {
849 interface ::com::sun::star::uno::XInterface;
850 boolean getGroupControl();
851 void setGroupControl([in] boolean GroupControl);
852 void setControlModels([in] sequence< ::com::sun::star::awt::XControlModel > Controls);
853 sequence< ::com::sun::star::awt::XControlModel > getControlModels();
854 void setGroup([in] sequence< ::com::sun::star::awt::XControlModel > Group, [in] string GroupName);
855 long getGroupCount();
856 void getGroup([in] long nGroup, [out] sequence< ::com::sun::star::awt::XControlModel > Group, [out] string Name);
857 void getGroupByName([in] string Name, [out] sequence< ::com::sun::star::awt::XControlModel > Group);
859 published service TabControllerModel {
860 interface ::com::sun::star::awt::XTabControllerModel;
861 interface ::com::sun::star::io::XPersistObject;
863 published constants TextAlign {
864 const long CENTER = 1;
865 const long LEFT = 0;
866 const long RIGHT = 2;
868 published struct TextEvent: ::com::sun::star::lang::EventObject {
869 short dummy1;
872 module datatransfer {
873 module clipboard {
874 published interface XClipboard;
876 module dnd {
877 published interface XDragGestureRecognizer;
878 published interface XDragSource;
879 published interface XDropTarget;
882 module awt {
883 published interface XDataTransferProviderAccess {
884 interface ::com::sun::star::uno::XInterface;
885 ::com::sun::star::datatransfer::dnd::XDragGestureRecognizer getDragGestureRecognizer([in] ::com::sun::star::awt::XWindow window);
886 ::com::sun::star::datatransfer::dnd::XDragSource getDragSource([in] ::com::sun::star::awt::XWindow window);
887 ::com::sun::star::datatransfer::dnd::XDropTarget getDropTarget([in] ::com::sun::star::awt::XWindow window);
888 ::com::sun::star::datatransfer::clipboard::XClipboard getClipboard([in] string clipboardName);
890 published interface XFocusListener;
891 published interface XKeyHandler;
892 published interface XTopWindow;
893 published interface XTopWindowListener;
894 /** @deprecated */ published interface XExtendedToolkit {
895 interface ::com::sun::star::uno::XInterface;
896 long getTopWindowCount();
897 ::com::sun::star::awt::XTopWindow getTopWindow([in] long nIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
898 ::com::sun::star::awt::XTopWindow getActiveTopWindow();
899 void addTopWindowListener([in] ::com::sun::star::awt::XTopWindowListener xListener);
900 void removeTopWindowListener([in] ::com::sun::star::awt::XTopWindowListener xListener);
901 void addKeyHandler([in] ::com::sun::star::awt::XKeyHandler xHandler);
902 void removeKeyHandler([in] ::com::sun::star::awt::XKeyHandler xHandler);
903 void addFocusListener([in] ::com::sun::star::awt::XFocusListener xListener);
904 void removeFocusListener([in] ::com::sun::star::awt::XFocusListener xListener);
905 void fireFocusGained([in] ::com::sun::star::uno::XInterface source);
906 void fireFocusLost([in] ::com::sun::star::uno::XInterface source);
908 published interface XMessageBox;
909 published interface XWindowPeer;
910 published interface XMessageBoxFactory {
911 interface ::com::sun::star::uno::XInterface;
912 ::com::sun::star::awt::XMessageBox createMessageBox([in] ::com::sun::star::awt::XWindowPeer aParent, [in] ::com::sun::star::awt::MessageBoxType eType, [in] long nButtons, [in] string sTitle, [in] string sMessage);
914 /** @deprecated */ published interface XReschedule {
915 interface ::com::sun::star::uno::XInterface;
916 void reschedule();
918 published interface XWindowPeer;
919 published interface XSystemChildFactory {
920 interface ::com::sun::star::uno::XInterface;
921 ::com::sun::star::awt::XWindowPeer createSystemChild([in] any Parent, [in] sequence< byte > ProcessId, [in] short SystemType);
923 published enum WindowClass {
924 TOP = 0,
925 MODALTOP = 1,
926 CONTAINER = 2,
927 SIMPLE = 3
929 published interface XWindowPeer;
930 published struct WindowDescriptor {
931 ::com::sun::star::awt::WindowClass Type;
932 string WindowServiceName;
933 ::com::sun::star::awt::XWindowPeer Parent;
934 short ParentIndex;
935 ::com::sun::star::awt::Rectangle Bounds;
936 long WindowAttributes;
938 published interface XDevice;
939 published interface XRegion;
940 published interface XWindowPeer;
941 published interface XToolkit {
942 interface ::com::sun::star::uno::XInterface;
943 ::com::sun::star::awt::XWindowPeer getDesktopWindow();
944 ::com::sun::star::awt::Rectangle getWorkArea();
945 ::com::sun::star::awt::XWindowPeer createWindow([in] ::com::sun::star::awt::WindowDescriptor Descriptor) raises (::com::sun::star::lang::IllegalArgumentException);
946 sequence< ::com::sun::star::awt::XWindowPeer > createWindows([in] sequence< ::com::sun::star::awt::WindowDescriptor > Descriptors) raises (::com::sun::star::lang::IllegalArgumentException);
947 ::com::sun::star::awt::XDevice createScreenCompatibleDevice([in] long Width, [in] long Height);
948 ::com::sun::star::awt::XRegion createRegion();
950 published interface XToolkit2 {
951 interface ::com::sun::star::awt::XToolkit;
952 interface ::com::sun::star::awt::XDataTransferProviderAccess;
953 interface ::com::sun::star::awt::XSystemChildFactory;
954 interface ::com::sun::star::awt::XMessageBoxFactory;
955 interface ::com::sun::star::awt::XExtendedToolkit;
956 interface ::com::sun::star::awt::XReschedule;
958 published service Toolkit: ::com::sun::star::awt::XToolkit2;
959 published interface XActionListener;
960 published interface XButton {
961 interface ::com::sun::star::uno::XInterface;
962 void addActionListener([in] ::com::sun::star::awt::XActionListener l);
963 void removeActionListener([in] ::com::sun::star::awt::XActionListener l);
964 void setLabel([in] string Label);
965 void setActionCommand([in] string Command);
967 published interface XLayoutConstrains {
968 interface ::com::sun::star::uno::XInterface;
969 ::com::sun::star::awt::Size getMinimumSize();
970 ::com::sun::star::awt::Size getPreferredSize();
971 ::com::sun::star::awt::Size calcAdjustedSize([in] ::com::sun::star::awt::Size aNewSize);
973 published service UnoControlButton {
974 service ::com::sun::star::awt::UnoControl;
975 interface ::com::sun::star::awt::XButton;
976 interface ::com::sun::star::awt::XLayoutConstrains;
979 module style {
980 published enum VerticalAlignment {
981 TOP = 0,
982 MIDDLE = 1,
983 BOTTOM = 2
986 module graphic {
987 published interface XGraphic;
989 module awt {
990 published service UnoControlButtonModel {
991 service ::com::sun::star::awt::UnoControlModel;
992 [property, optional] short Align;
993 [property] ::com::sun::star::util::Color BackgroundColor;
994 [property] boolean DefaultButton;
995 [property] boolean Enabled;
996 [property, optional] boolean FocusOnClick;
997 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
998 [property] short FontEmphasisMark;
999 [property] short FontRelief;
1000 [property] string HelpText;
1001 [property] string HelpURL;
1002 [property] short ImageAlign;
1003 [property, optional] short ImagePosition;
1004 [property] string ImageURL;
1005 [property, optional, transient] ::com::sun::star::graphic::XGraphic Graphic;
1006 [property] string Label;
1007 [property, optional] boolean MultiLine;
1008 [property] boolean Printable;
1009 [property] short PushButtonType;
1010 [property, optional] boolean Repeat;
1011 [property, optional] long RepeatDelay;
1012 [property] short State;
1013 [property] boolean Tabstop;
1014 [property] ::com::sun::star::util::Color TextColor;
1015 [property] ::com::sun::star::util::Color TextLineColor;
1016 [property, optional] boolean Toggle;
1017 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1019 published interface XItemListener;
1020 published interface XCheckBox {
1021 interface ::com::sun::star::uno::XInterface;
1022 void addItemListener([in] ::com::sun::star::awt::XItemListener l);
1023 void removeItemListener([in] ::com::sun::star::awt::XItemListener l);
1024 short getState();
1025 void setState([in] short n);
1026 void setLabel([in] string Label);
1027 void enableTriState([in] boolean b);
1029 published service UnoControlCheckBox {
1030 service ::com::sun::star::awt::UnoControl;
1031 interface ::com::sun::star::awt::XCheckBox;
1032 interface ::com::sun::star::awt::XLayoutConstrains;
1035 module graphic {
1036 published interface XGraphic;
1038 module awt {
1039 published service UnoControlCheckBoxModel {
1040 service ::com::sun::star::awt::UnoControlModel;
1041 [property, optional] short Align;
1042 [property, optional] long BackgroundColor;
1043 [property] boolean Enabled;
1044 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1045 [property] short FontEmphasisMark;
1046 [property] short FontRelief;
1047 [property] string HelpText;
1048 [property] string HelpURL;
1049 [property, optional] short ImagePosition;
1050 [property, optional] string ImageURL;
1051 [property, optional, transient] ::com::sun::star::graphic::XGraphic Graphic;
1052 [property] string Label;
1053 [property, optional] boolean MultiLine;
1054 [property] boolean Printable;
1055 [property] short State;
1056 [property] boolean Tabstop;
1057 [property] ::com::sun::star::util::Color TextColor;
1058 [property] ::com::sun::star::util::Color TextLineColor;
1059 [property] boolean TriState;
1060 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1061 [property, optional] short VisualEffect;
1062 [property, optional] short WritingMode;
1064 published interface XTextListener;
1065 published interface XTextComponent {
1066 interface ::com::sun::star::uno::XInterface;
1067 void addTextListener([in] ::com::sun::star::awt::XTextListener l);
1068 void removeTextListener([in] ::com::sun::star::awt::XTextListener l);
1069 void setText([in] string aText);
1070 void insertText([in] ::com::sun::star::awt::Selection Sel, [in] string Text);
1071 string getText();
1072 string getSelectedText();
1073 void setSelection([in] ::com::sun::star::awt::Selection aSelection);
1074 ::com::sun::star::awt::Selection getSelection();
1075 boolean isEditable();
1076 void setEditable([in] boolean bEditable);
1077 void setMaxTextLen([in] short nLen);
1078 short getMaxTextLen();
1080 published interface XTextLayoutConstrains {
1081 interface ::com::sun::star::uno::XInterface;
1082 ::com::sun::star::awt::Size getMinimumSize([in] short nCols, [in] short nLines);
1083 void getColumnsAndLines([out] short nCols, [out] short nLines);
1085 published service UnoControlEdit {
1086 service ::com::sun::star::awt::UnoControl;
1087 interface ::com::sun::star::awt::XTextComponent;
1088 interface ::com::sun::star::awt::XLayoutConstrains;
1089 interface ::com::sun::star::awt::XTextLayoutConstrains;
1091 published interface XActionListener;
1092 published interface XItemListener;
1093 published interface XComboBox {
1094 interface ::com::sun::star::uno::XInterface;
1095 void addItemListener([in] ::com::sun::star::awt::XItemListener l);
1096 void removeItemListener([in] ::com::sun::star::awt::XItemListener l);
1097 void addActionListener([in] ::com::sun::star::awt::XActionListener l);
1098 void removeActionListener([in] ::com::sun::star::awt::XActionListener l);
1099 void addItem([in] string aItem, [in] short nPos);
1100 void addItems([in] sequence< string > aItems, [in] short nPos);
1101 void removeItems([in] short nPos, [in] short nCount);
1102 short getItemCount();
1103 string getItem([in] short nPos);
1104 sequence< string > getItems();
1105 short getDropDownLineCount();
1106 void setDropDownLineCount([in] short nLines);
1108 published service UnoControlComboBox {
1109 service ::com::sun::star::awt::UnoControlEdit;
1110 interface ::com::sun::star::awt::XComboBox;
1112 interface XItemListListener;
1113 interface XItemList {
1114 interface ::com::sun::star::uno::XInterface;
1115 [attribute, readonly] long ItemCount;
1116 void insertItem([in] long Position, [in] string ItemText, [in] string ItemImageURL) raises (::com::sun::star::lang::IndexOutOfBoundsException);
1117 void insertItemText([in] long Position, [in] string ItemText) raises (::com::sun::star::lang::IndexOutOfBoundsException);
1118 void insertItemImage([in] long Position, [in] string ItemImageURL) raises (::com::sun::star::lang::IndexOutOfBoundsException);
1119 void removeItem([in] long Position) raises (::com::sun::star::lang::IndexOutOfBoundsException);
1120 void removeAllItems();
1121 void setItemText([in] long Position, [in] string ItemText) raises (::com::sun::star::lang::IndexOutOfBoundsException);
1122 void setItemImage([in] long Position, [in] string ItemImageURL) raises (::com::sun::star::lang::IndexOutOfBoundsException);
1123 void setItemTextAndImage([in] long Position, [in] string ItemText, [in] string ItemImageURL) raises (::com::sun::star::lang::IndexOutOfBoundsException);
1124 void setItemData([in] long Position, [in] any ItemData) raises (::com::sun::star::lang::IndexOutOfBoundsException);
1125 string getItemText([in] long Position) raises (::com::sun::star::lang::IndexOutOfBoundsException);
1126 string getItemImage([in] long Position) raises (::com::sun::star::lang::IndexOutOfBoundsException);
1127 ::com::sun::star::beans::Pair< string, string > getItemTextAndImage([in] long Position) raises (::com::sun::star::lang::IndexOutOfBoundsException);
1128 any getItemData([in] long Position) raises (::com::sun::star::lang::IndexOutOfBoundsException);
1129 sequence< ::com::sun::star::beans::Pair< string, string > > getAllItems();
1130 void addItemListListener([in] ::com::sun::star::awt::XItemListListener Listener);
1131 void removeItemListListener([in] ::com::sun::star::awt::XItemListListener Listener);
1133 published service UnoControlComboBoxModel {
1134 service ::com::sun::star::awt::UnoControlModel;
1135 [optional] interface ::com::sun::star::awt::XItemList;
1136 [property, optional] short Align;
1137 [property] boolean Autocomplete;
1138 [property] ::com::sun::star::util::Color BackgroundColor;
1139 [property] short Border;
1140 [property, optional] long BorderColor;
1141 [property] boolean Dropdown;
1142 [property] boolean Enabled;
1143 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1144 [property] short FontEmphasisMark;
1145 [property] short FontRelief;
1146 [property] string HelpText;
1147 [property] string HelpURL;
1148 [property, optional] boolean HideInactiveSelection;
1149 [property] short LineCount;
1150 [property] short MaxTextLen;
1151 [property] boolean Printable;
1152 [property] boolean ReadOnly;
1153 [property] sequence< string > StringItemList;
1154 [property] boolean Tabstop;
1155 [property] string Text;
1156 [property] ::com::sun::star::util::Color TextColor;
1157 [property] ::com::sun::star::util::Color TextLineColor;
1158 [property, optional] short WritingMode;
1159 [property, optional] short MouseWheelBehavior;
1161 published interface XControlContainer {
1162 interface ::com::sun::star::uno::XInterface;
1163 void setStatusText([in] string StatusText);
1164 sequence< ::com::sun::star::awt::XControl > getControls();
1165 ::com::sun::star::awt::XControl getControl([in] string aName);
1166 void addControl([in] string Name, [in] ::com::sun::star::awt::XControl Control);
1167 void removeControl([in] ::com::sun::star::awt::XControl Control);
1169 published interface XUnoControlContainer {
1170 interface ::com::sun::star::uno::XInterface;
1171 void setTabControllers([in] sequence< ::com::sun::star::awt::XTabController > TabControllers);
1172 sequence< ::com::sun::star::awt::XTabController > getTabControllers();
1173 void addTabController([in] ::com::sun::star::awt::XTabController TabController);
1174 void removeTabController([in] ::com::sun::star::awt::XTabController TabController);
1176 published service UnoControlContainer {
1177 service ::com::sun::star::awt::UnoControl;
1178 interface ::com::sun::star::awt::XUnoControlContainer;
1179 interface ::com::sun::star::awt::XControlContainer;
1180 interface ::com::sun::star::container::XContainer;
1182 published service UnoControlContainerModel {
1183 service ::com::sun::star::awt::UnoControlModel;
1184 [property] ::com::sun::star::util::Color BackgroundColor;
1185 [property] boolean Enabled;
1186 [property] short Border;
1187 [property, optional] long BorderColor;
1188 [property] boolean Printable;
1189 [property] string Text;
1190 [property] string HelpText;
1191 [property] string HelpURL;
1193 published interface XCurrencyField {
1194 interface ::com::sun::star::uno::XInterface;
1195 void setValue([in] double Value);
1196 double getValue();
1197 void setMin([in] double Value);
1198 double getMin();
1199 void setMax([in] double Value);
1200 double getMax();
1201 void setFirst([in] double Value);
1202 double getFirst();
1203 void setLast([in] double Value);
1204 double getLast();
1205 void setSpinSize([in] double Value);
1206 double getSpinSize();
1207 void setDecimalDigits([in] short nDigits);
1208 short getDecimalDigits();
1209 void setStrictFormat([in] boolean bStrict);
1210 boolean isStrictFormat();
1212 published interface XSpinListener;
1213 published interface XSpinField {
1214 interface ::com::sun::star::uno::XInterface;
1215 void addSpinListener([in] ::com::sun::star::awt::XSpinListener l);
1216 void removeSpinListener([in] ::com::sun::star::awt::XSpinListener l);
1217 void up();
1218 void down();
1219 void first();
1220 void last();
1221 void enableRepeat([in] boolean bRepeat);
1223 published service UnoControlCurrencyField {
1224 service ::com::sun::star::awt::UnoControlEdit;
1225 interface ::com::sun::star::awt::XCurrencyField;
1226 [optional] interface ::com::sun::star::awt::XSpinField;
1228 published service UnoControlCurrencyFieldModel {
1229 service ::com::sun::star::awt::UnoControlModel;
1230 [property] ::com::sun::star::util::Color BackgroundColor;
1231 [property] short Border;
1232 [property, optional] long BorderColor;
1233 [property] string CurrencySymbol;
1234 [property] short DecimalAccuracy;
1235 [property] boolean Enabled;
1236 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1237 [property] short FontEmphasisMark;
1238 [property] short FontRelief;
1239 [property] string HelpText;
1240 [property] string HelpURL;
1241 [property, optional] boolean HideInactiveSelection;
1242 [property] boolean PrependCurrencySymbol;
1243 [property] boolean Printable;
1244 [property] boolean ReadOnly;
1245 [property, optional] boolean Repeat;
1246 [property, optional] long RepeatDelay;
1247 [property] boolean ShowThousandsSeparator;
1248 [property] boolean Spin;
1249 [property] boolean StrictFormat;
1250 [property] boolean Tabstop;
1251 [property] ::com::sun::star::util::Color TextColor;
1252 [property] ::com::sun::star::util::Color TextLineColor;
1253 [property] double Value;
1254 [property] double ValueMax;
1255 [property] double ValueMin;
1256 [property] double ValueStep;
1257 [property, optional] short WritingMode;
1258 [property, optional] short MouseWheelBehavior;
1259 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1262 module util {
1263 published struct Date {
1264 unsigned short Day;
1265 unsigned short Month;
1266 short Year;
1269 module awt {
1270 published interface XDateField {
1271 interface ::com::sun::star::uno::XInterface;
1272 void setDate([in] ::com::sun::star::util::Date Date);
1273 ::com::sun::star::util::Date getDate();
1274 void setMin([in] ::com::sun::star::util::Date Date);
1275 ::com::sun::star::util::Date getMin();
1276 void setMax([in] ::com::sun::star::util::Date Date);
1277 ::com::sun::star::util::Date getMax();
1278 void setFirst([in] ::com::sun::star::util::Date Date);
1279 ::com::sun::star::util::Date getFirst();
1280 void setLast([in] ::com::sun::star::util::Date Date);
1281 ::com::sun::star::util::Date getLast();
1282 void setLongFormat([in] boolean bLong);
1283 boolean isLongFormat();
1284 void setEmpty();
1285 boolean isEmpty();
1286 void setStrictFormat([in] boolean bStrict);
1287 boolean isStrictFormat();
1289 published service UnoControlDateField {
1290 service ::com::sun::star::awt::UnoControlEdit;
1291 interface ::com::sun::star::awt::XDateField;
1292 [optional] interface ::com::sun::star::awt::XSpinField;
1294 published service UnoControlDateFieldModel {
1295 service ::com::sun::star::awt::UnoControlModel;
1296 [property] ::com::sun::star::util::Color BackgroundColor;
1297 [property] short Border;
1298 [property, optional] long BorderColor;
1299 [property] ::com::sun::star::util::Date Date;
1300 [property] short DateFormat;
1301 [property] ::com::sun::star::util::Date DateMax;
1302 [property] ::com::sun::star::util::Date DateMin;
1303 [property] boolean DateShowCentury;
1304 [property] boolean Dropdown;
1305 [property] boolean Enabled;
1306 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1307 [property] short FontEmphasisMark;
1308 [property] short FontRelief;
1309 [property] string HelpText;
1310 [property] string HelpURL;
1311 [property, optional] boolean HideInactiveSelection;
1312 [property] boolean Printable;
1313 [property] boolean ReadOnly;
1314 [property, optional] boolean Repeat;
1315 [property, optional] long RepeatDelay;
1316 [property] boolean Spin;
1317 [property] boolean StrictFormat;
1318 [property] boolean Tabstop;
1319 [property, optional] string Text;
1320 [property] ::com::sun::star::util::Color TextColor;
1321 [property] ::com::sun::star::util::Color TextLineColor;
1322 [property, optional] short WritingMode;
1323 [property, optional] short MouseWheelBehavior;
1324 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1326 published interface XDialog {
1327 interface ::com::sun::star::uno::XInterface;
1328 void setTitle([in] string Title);
1329 string getTitle();
1330 short execute();
1331 void endExecute();
1333 published interface XDialog2 {
1334 interface ::com::sun::star::awt::XDialog;
1335 void endDialog([in] long Result);
1336 void setHelpId([in] string Id);
1338 published interface XTopWindowListener;
1339 published interface XTopWindow {
1340 interface ::com::sun::star::uno::XInterface;
1341 void addTopWindowListener([in] ::com::sun::star::awt::XTopWindowListener xListener);
1342 void removeTopWindowListener([in] ::com::sun::star::awt::XTopWindowListener xListener);
1343 void toFront();
1344 void toBack();
1345 void setMenuBar([in] ::com::sun::star::awt::XMenuBar xMenu);
1347 published interface XUnoControlDialog {
1348 interface ::com::sun::star::awt::XControlContainer;
1349 interface ::com::sun::star::awt::XControl;
1350 interface ::com::sun::star::awt::XWindow;
1351 interface ::com::sun::star::awt::XTopWindow;
1352 interface ::com::sun::star::awt::XDialog2;
1354 published service UnoControlDialog: ::com::sun::star::awt::XUnoControlDialog;
1356 module graphic {
1357 published interface XGraphic;
1359 module awt {
1360 published service UnoControlDialogModel {
1361 service ::com::sun::star::awt::UnoControlModel;
1362 interface ::com::sun::star::lang::XMultiServiceFactory;
1363 interface ::com::sun::star::container::XContainer;
1364 interface ::com::sun::star::container::XNameContainer;
1365 [property] ::com::sun::star::util::Color BackgroundColor;
1366 [property] boolean Closeable;
1367 [property] boolean Enabled;
1368 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1369 [property] short FontEmphasisMark;
1370 [property] short FontRelief;
1371 [property] string HelpText;
1372 [property] string HelpURL;
1373 [property] boolean Moveable;
1374 [property] boolean Sizeable;
1375 [property] ::com::sun::star::util::Color TextColor;
1376 [property] ::com::sun::star::util::Color TextLineColor;
1377 [property] string Title;
1378 [property, optional] boolean DesktopAsParent;
1379 [property, optional] string ImageURL;
1380 [property, optional, transient] ::com::sun::star::graphic::XGraphic Graphic;
1382 published service UnoControlEditModel {
1383 service ::com::sun::star::awt::UnoControlModel;
1384 [property] short Align;
1385 [property, optional] boolean AutoHScroll;
1386 [property, optional] boolean AutoVScroll;
1387 [property] ::com::sun::star::util::Color BackgroundColor;
1388 [property] short Border;
1389 [property, optional] long BorderColor;
1390 [property, optional] short EchoChar;
1391 [property] boolean Enabled;
1392 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1393 [property] short FontEmphasisMark;
1394 [property] short FontRelief;
1395 [property] boolean HardLineBreaks;
1396 [property] string HelpText;
1397 [property] string HelpURL;
1398 [property, optional] boolean HideInactiveSelection;
1399 [property] boolean HScroll;
1400 [property, optional] short LineEndFormat;
1401 [property] short MaxTextLen;
1402 [property] boolean MultiLine;
1403 [property, optional] boolean PaintTransparent;
1404 [property] boolean Printable;
1405 [property] boolean ReadOnly;
1406 [property] boolean Tabstop;
1407 [property] string Text;
1408 [property] ::com::sun::star::util::Color TextColor;
1409 [property] ::com::sun::star::util::Color TextLineColor;
1410 [property] boolean VScroll;
1411 [property, optional] short WritingMode;
1412 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1414 published service UnoControlFileControl {
1415 service ::com::sun::star::awt::UnoControlEdit;
1417 published service UnoControlFileControlModel {
1418 service ::com::sun::star::awt::UnoControlModel;
1419 [property] ::com::sun::star::util::Color BackgroundColor;
1420 [property] short Border;
1421 [property, optional] long BorderColor;
1422 [property] boolean Enabled;
1423 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1424 [property] short FontEmphasisMark;
1425 [property] short FontRelief;
1426 [property] string HelpText;
1427 [property] string HelpURL;
1428 [property, optional] boolean HideInactiveSelection;
1429 [property] boolean Printable;
1430 [property, optional] boolean ReadOnly;
1431 [property] boolean Tabstop;
1432 [property] string Text;
1433 [property] ::com::sun::star::util::Color TextColor;
1434 [property] ::com::sun::star::util::Color TextLineColor;
1435 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1437 published service UnoControlFixedLine {
1438 service ::com::sun::star::awt::UnoControl;
1440 published service UnoControlFixedLineModel {
1441 service ::com::sun::star::awt::UnoControlModel;
1442 [property] boolean Enabled;
1443 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1444 [property] short FontEmphasisMark;
1445 [property] short FontRelief;
1446 [property] string HelpText;
1447 [property] string HelpURL;
1448 [property] string Label;
1449 [property] long Orientation;
1450 [property] boolean Printable;
1451 [property] ::com::sun::star::util::Color TextColor;
1452 [property] ::com::sun::star::util::Color TextLineColor;
1454 published interface XFixedText {
1455 interface ::com::sun::star::uno::XInterface;
1456 void setText([in] string Text);
1457 string getText();
1458 void setAlignment([in] short nAlign);
1459 short getAlignment();
1461 published service UnoControlFixedText {
1462 service ::com::sun::star::awt::UnoControl;
1463 interface ::com::sun::star::awt::XFixedText;
1464 interface ::com::sun::star::awt::XLayoutConstrains;
1466 published service UnoControlFixedTextModel {
1467 service ::com::sun::star::awt::UnoControlModel;
1468 [property] short Align;
1469 [property] ::com::sun::star::util::Color BackgroundColor;
1470 [property] short Border;
1471 [property, optional] long BorderColor;
1472 [property] boolean Enabled;
1473 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1474 [property] short FontEmphasisMark;
1475 [property] short FontRelief;
1476 [property] string HelpText;
1477 [property] string HelpURL;
1478 [property] string Label;
1479 [property] boolean MultiLine;
1480 [property] boolean Printable;
1481 [property] ::com::sun::star::util::Color TextColor;
1482 [property] ::com::sun::star::util::Color TextLineColor;
1483 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1484 [property, optional] boolean NoLabel;
1486 published service UnoControlFormattedField {
1487 service ::com::sun::star::awt::UnoControlEdit;
1488 [optional] interface ::com::sun::star::awt::XSpinField;
1491 module util {
1492 published interface XNumberFormatsSupplier;
1494 module awt {
1495 published service UnoControlFormattedFieldModel {
1496 service ::com::sun::star::awt::UnoControlModel;
1497 [property] short Align;
1498 [property] ::com::sun::star::util::Color BackgroundColor;
1499 [property] short Border;
1500 [property, optional] long BorderColor;
1501 [property] any EffectiveDefault;
1502 [property] double EffectiveMax;
1503 [property] double EffectiveMin;
1504 [property] double EffectiveValue;
1505 [property] boolean Enabled;
1506 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1507 [property] short FontEmphasisMark;
1508 [property] short FontRelief;
1509 [property] long FormatKey;
1510 [property] ::com::sun::star::util::XNumberFormatsSupplier FormatsSupplier;
1511 [property] string HelpText;
1512 [property] string HelpURL;
1513 [property, optional] boolean HideInactiveSelection;
1514 [property] short MaxTextLen;
1515 [property] boolean Printable;
1516 [property] boolean ReadOnly;
1517 [property, optional] boolean Repeat;
1518 [property, optional] long RepeatDelay;
1519 [property] boolean Spin;
1520 [property, optional] boolean StrictFormat;
1521 [property] boolean Tabstop;
1522 [property] string Text;
1523 [property] ::com::sun::star::util::Color TextColor;
1524 [property] ::com::sun::star::util::Color TextLineColor;
1525 [property] boolean TreatAsNumber;
1526 [property, optional] short WritingMode;
1527 [property, optional] short MouseWheelBehavior;
1528 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1530 published service UnoControlGroupBox {
1531 service ::com::sun::star::awt::UnoControl;
1533 published service UnoControlGroupBoxModel {
1534 service ::com::sun::star::awt::UnoControlModel;
1535 [property] boolean Enabled;
1536 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1537 [property] short FontEmphasisMark;
1538 [property] short FontRelief;
1539 [property] string HelpText;
1540 [property] string HelpURL;
1541 [property] string Label;
1542 [property] boolean Printable;
1543 [property] ::com::sun::star::util::Color TextColor;
1544 [property] ::com::sun::star::util::Color TextLineColor;
1545 [property, optional] short WritingMode;
1547 published service UnoControlImageControl {
1548 service ::com::sun::star::awt::UnoControl;
1549 interface ::com::sun::star::awt::XLayoutConstrains;
1552 module graphic {
1553 published interface XGraphic;
1555 module awt {
1556 published service UnoControlImageControlModel {
1557 service ::com::sun::star::awt::UnoControlModel;
1558 [property] ::com::sun::star::util::Color BackgroundColor;
1559 [property] short Border;
1560 [property, optional] long BorderColor;
1561 [property] boolean Enabled;
1562 [property] string HelpText;
1563 [property] string HelpURL;
1564 [property] string ImageURL;
1565 [property, optional, transient] ::com::sun::star::graphic::XGraphic Graphic;
1566 [property] boolean Printable;
1567 [property] boolean ScaleImage;
1568 [property, optional] short ScaleMode;
1569 [property, optional] boolean Tabstop;
1571 published interface XActionListener;
1572 published interface XItemListener;
1573 published interface XListBox {
1574 interface ::com::sun::star::uno::XInterface;
1575 void addItemListener([in] ::com::sun::star::awt::XItemListener l);
1576 void removeItemListener([in] ::com::sun::star::awt::XItemListener l);
1577 void addActionListener([in] ::com::sun::star::awt::XActionListener l);
1578 void removeActionListener([in] ::com::sun::star::awt::XActionListener l);
1579 void addItem([in] string aItem, [in] short nPos);
1580 void addItems([in] sequence< string > aItems, [in] short nPos);
1581 void removeItems([in] short nPos, [in] short nCount);
1582 short getItemCount();
1583 string getItem([in] short nPos);
1584 sequence< string > getItems();
1585 short getSelectedItemPos();
1586 sequence< short > getSelectedItemsPos();
1587 string getSelectedItem();
1588 sequence< string > getSelectedItems();
1589 void selectItemPos([in] short nPos, [in] boolean bSelect);
1590 void selectItemsPos([in] sequence< short > aPositions, [in] boolean bSelect);
1591 void selectItem([in] string aItem, [in] boolean bSelect);
1592 boolean isMutipleMode();
1593 void setMultipleMode([in] boolean bMulti);
1594 short getDropDownLineCount();
1595 void setDropDownLineCount([in] short nLines);
1596 void makeVisible([in] short nEntry);
1598 published service UnoControlListBox {
1599 service ::com::sun::star::awt::UnoControl;
1600 interface ::com::sun::star::awt::XListBox;
1601 interface ::com::sun::star::awt::XLayoutConstrains;
1602 interface ::com::sun::star::awt::XTextLayoutConstrains;
1604 published service UnoControlListBoxModel {
1605 service ::com::sun::star::awt::UnoControlModel;
1606 [optional] interface ::com::sun::star::awt::XItemList;
1607 [property, optional] short Align;
1608 [property] ::com::sun::star::util::Color BackgroundColor;
1609 [property] short Border;
1610 [property, optional] long BorderColor;
1611 [property] boolean Dropdown;
1612 [property] boolean Enabled;
1613 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1614 [property] short FontEmphasisMark;
1615 [property] short FontRelief;
1616 [property] string HelpText;
1617 [property] string HelpURL;
1618 [property] short LineCount;
1619 [property] boolean MultiSelection;
1620 [property] boolean Printable;
1621 [property] boolean ReadOnly;
1622 [property] sequence< short > SelectedItems;
1623 [property] sequence< string > StringItemList;
1624 [property] boolean Tabstop;
1625 [property] ::com::sun::star::util::Color TextColor;
1626 [property] ::com::sun::star::util::Color TextLineColor;
1627 [property, optional] short WritingMode;
1628 [property, optional] short MouseWheelBehavior;
1629 [property, maybevoid, optional] short ItemSeparatorPos;
1631 published interface XNumericField {
1632 interface ::com::sun::star::uno::XInterface;
1633 void setValue([in] double Value);
1634 double getValue();
1635 void setMin([in] double Value);
1636 double getMin();
1637 void setMax([in] double Value);
1638 double getMax();
1639 void setFirst([in] double Value);
1640 double getFirst();
1641 void setLast([in] double Value);
1642 double getLast();
1643 void setSpinSize([in] double Value);
1644 double getSpinSize();
1645 void setDecimalDigits([in] short nDigits);
1646 short getDecimalDigits();
1647 void setStrictFormat([in] boolean bStrict);
1648 boolean isStrictFormat();
1650 published service UnoControlNumericField {
1651 service ::com::sun::star::awt::UnoControlEdit;
1652 interface ::com::sun::star::awt::XNumericField;
1653 [optional] interface ::com::sun::star::awt::XSpinField;
1655 published service UnoControlNumericFieldModel {
1656 service ::com::sun::star::awt::UnoControlModel;
1657 [property] ::com::sun::star::util::Color BackgroundColor;
1658 [property] short Border;
1659 [property, optional] long BorderColor;
1660 [property] short DecimalAccuracy;
1661 [property] boolean Enabled;
1662 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1663 [property] short FontEmphasisMark;
1664 [property] short FontRelief;
1665 [property] string HelpText;
1666 [property] string HelpURL;
1667 [property, optional] boolean HideInactiveSelection;
1668 [property] boolean Printable;
1669 [property] boolean ReadOnly;
1670 [property, optional] boolean Repeat;
1671 [property, optional] long RepeatDelay;
1672 [property] boolean ShowThousandsSeparator;
1673 [property] boolean Spin;
1674 [property] boolean StrictFormat;
1675 [property] boolean Tabstop;
1676 [property] ::com::sun::star::util::Color TextColor;
1677 [property] ::com::sun::star::util::Color TextLineColor;
1678 [property] double Value;
1679 [property] double ValueMax;
1680 [property] double ValueMin;
1681 [property] double ValueStep;
1682 [property, optional] short WritingMode;
1683 [property, optional] short MouseWheelBehavior;
1684 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1686 published interface XPatternField {
1687 interface ::com::sun::star::uno::XInterface;
1688 void setMasks([in] string EditMask, [in] string LiteralMask);
1689 void getMasks([out] string EditMask, [out] string LiteralMask);
1690 void setString([in] string Str);
1691 string getString();
1692 void setStrictFormat([in] boolean bStrict);
1693 boolean isStrictFormat();
1695 published service UnoControlPatternField {
1696 service ::com::sun::star::awt::UnoControlEdit;
1697 interface ::com::sun::star::awt::XPatternField;
1698 [optional] interface ::com::sun::star::awt::XSpinField;
1700 published service UnoControlPatternFieldModel {
1701 service ::com::sun::star::awt::UnoControlModel;
1702 [property] ::com::sun::star::util::Color BackgroundColor;
1703 [property] short Border;
1704 [property, optional] long BorderColor;
1705 [property] string EditMask;
1706 [property] boolean Enabled;
1707 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1708 [property] short FontEmphasisMark;
1709 [property] short FontRelief;
1710 [property] string HelpText;
1711 [property] string HelpURL;
1712 [property, optional] boolean HideInactiveSelection;
1713 [property] string LiteralMask;
1714 [property] short MaxTextLen;
1715 [property] boolean Printable;
1716 [property] boolean ReadOnly;
1717 [property] boolean StrictFormat;
1718 [property] boolean Tabstop;
1719 [property] string Text;
1720 [property] ::com::sun::star::util::Color TextColor;
1721 [property] ::com::sun::star::util::Color TextLineColor;
1722 [property, optional] short WritingMode;
1723 [property, optional] short MouseWheelBehavior;
1724 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1726 published interface XProgressBar {
1727 interface ::com::sun::star::uno::XInterface;
1728 void setForegroundColor([in] ::com::sun::star::util::Color Color);
1729 void setBackgroundColor([in] ::com::sun::star::util::Color Color);
1730 void setRange([in] long Min, [in] long Max);
1731 void setValue([in] long Value);
1732 long getValue();
1734 published service UnoControlProgressBar {
1735 service ::com::sun::star::awt::UnoControl;
1736 interface ::com::sun::star::awt::XProgressBar;
1738 published service UnoControlProgressBarModel {
1739 service ::com::sun::star::awt::UnoControlModel;
1740 [property] ::com::sun::star::util::Color BackgroundColor;
1741 [property] short Border;
1742 [property, optional] long BorderColor;
1743 [property] boolean Enabled;
1744 [property] ::com::sun::star::util::Color FillColor;
1745 [property] string HelpText;
1746 [property] string HelpURL;
1747 [property] boolean Printable;
1748 [property] long ProgressValue;
1749 [property] long ProgressValueMax;
1750 [property] long ProgressValueMin;
1752 published interface XItemListener;
1753 published interface XRadioButton {
1754 interface ::com::sun::star::uno::XInterface;
1755 void addItemListener([in] ::com::sun::star::awt::XItemListener l);
1756 void removeItemListener([in] ::com::sun::star::awt::XItemListener l);
1757 boolean getState();
1758 void setState([in] boolean b);
1759 void setLabel([in] string Label);
1761 published service UnoControlRadioButton {
1762 service ::com::sun::star::awt::UnoControl;
1763 interface ::com::sun::star::awt::XRadioButton;
1764 interface ::com::sun::star::awt::XLayoutConstrains;
1767 module graphic {
1768 published interface XGraphic;
1770 module awt {
1771 published service UnoControlRadioButtonModel {
1772 service ::com::sun::star::awt::UnoControlModel;
1773 [property, optional] short Align;
1774 [property, optional] long BackgroundColor;
1775 [property] boolean Enabled;
1776 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1777 [property] short FontEmphasisMark;
1778 [property] short FontRelief;
1779 [property] string HelpText;
1780 [property] string HelpURL;
1781 [property, optional] short ImagePosition;
1782 [property, optional] string ImageURL;
1783 [property, optional, transient] ::com::sun::star::graphic::XGraphic Graphic;
1784 [property] string Label;
1785 [property, optional] boolean MultiLine;
1786 [property] boolean Printable;
1787 [property] short State;
1788 [property] boolean Tabstop;
1789 [property] ::com::sun::star::util::Color TextColor;
1790 [property] ::com::sun::star::util::Color TextLineColor;
1791 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1792 [property, optional] short VisualEffect;
1793 [property, optional] short WritingMode;
1795 published interface XAdjustmentListener;
1796 published interface XScrollBar {
1797 interface ::com::sun::star::uno::XInterface;
1798 void addAdjustmentListener([in] ::com::sun::star::awt::XAdjustmentListener l);
1799 void removeAdjustmentListener([in] ::com::sun::star::awt::XAdjustmentListener l);
1800 void setValue([in] long n);
1801 void setValues([in] long nValue, [in] long nVisible, [in] long nMax);
1802 long getValue();
1803 void setMaximum([in] long n);
1804 long getMaximum();
1805 void setLineIncrement([in] long n);
1806 long getLineIncrement();
1807 void setBlockIncrement([in] long n);
1808 long getBlockIncrement();
1809 void setVisibleSize([in] long n);
1810 long getVisibleSize();
1811 void setOrientation([in] long n);
1812 long getOrientation();
1814 published service UnoControlScrollBar {
1815 service ::com::sun::star::awt::UnoControl;
1816 interface ::com::sun::star::awt::XScrollBar;
1818 published service UnoControlScrollBarModel {
1819 service ::com::sun::star::awt::UnoControlModel;
1820 [property, optional] ::com::sun::star::util::Color BackgroundColor;
1821 [property] long BlockIncrement;
1822 [property] short Border;
1823 [property, optional] long BorderColor;
1824 [property] boolean Enabled;
1825 [property] string HelpText;
1826 [property] string HelpURL;
1827 [property] long LineIncrement;
1828 [property, optional] boolean LiveScroll;
1829 [property] long Orientation;
1830 [property] boolean Printable;
1831 [property, optional] long RepeatDelay;
1832 [property] long ScrollValue;
1833 [property, optional] long ScrollValueMin;
1834 [property] long ScrollValueMax;
1835 [property, optional] ::com::sun::star::util::Color SymbolColor;
1836 [property, optional] boolean Tabstop;
1837 [property] long VisibleSize;
1840 module util {
1841 published struct Time {
1842 unsigned long NanoSeconds;
1843 unsigned short Seconds;
1844 unsigned short Minutes;
1845 unsigned short Hours;
1846 boolean IsUTC;
1849 module awt {
1850 published interface XTimeField {
1851 interface ::com::sun::star::uno::XInterface;
1852 void setTime([in] ::com::sun::star::util::Time Time);
1853 ::com::sun::star::util::Time getTime();
1854 void setMin([in] ::com::sun::star::util::Time Time);
1855 ::com::sun::star::util::Time getMin();
1856 void setMax([in] ::com::sun::star::util::Time Time);
1857 ::com::sun::star::util::Time getMax();
1858 void setFirst([in] ::com::sun::star::util::Time Time);
1859 ::com::sun::star::util::Time getFirst();
1860 void setLast([in] ::com::sun::star::util::Time Time);
1861 ::com::sun::star::util::Time getLast();
1862 void setEmpty();
1863 boolean isEmpty();
1864 void setStrictFormat([in] boolean bStrict);
1865 boolean isStrictFormat();
1867 published service UnoControlTimeField {
1868 service ::com::sun::star::awt::UnoControlEdit;
1869 interface ::com::sun::star::awt::XTimeField;
1870 [optional] interface ::com::sun::star::awt::XSpinField;
1872 published service UnoControlTimeFieldModel {
1873 service ::com::sun::star::awt::UnoControlModel;
1874 [property] ::com::sun::star::util::Color BackgroundColor;
1875 [property] short Border;
1876 [property, optional] long BorderColor;
1877 [property] boolean Enabled;
1878 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1879 [property] short FontEmphasisMark;
1880 [property] short FontRelief;
1881 [property] string HelpText;
1882 [property] string HelpURL;
1883 [property, optional] boolean HideInactiveSelection;
1884 [property] boolean Printable;
1885 [property] boolean ReadOnly;
1886 [property, optional] boolean Repeat;
1887 [property, optional] long RepeatDelay;
1888 [property] boolean Spin;
1889 [property] boolean StrictFormat;
1890 [property] boolean Tabstop;
1891 [property, optional] string Text;
1892 [property] ::com::sun::star::util::Color TextColor;
1893 [property] ::com::sun::star::util::Color TextLineColor;
1894 [property] ::com::sun::star::util::Time Time;
1895 [property] short TimeFormat;
1896 [property] ::com::sun::star::util::Time TimeMax;
1897 [property] ::com::sun::star::util::Time TimeMin;
1898 [property, optional] short WritingMode;
1899 [property, optional] short MouseWheelBehavior;
1900 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1902 published struct VclContainerEvent: ::com::sun::star::lang::EventObject {
1903 ::com::sun::star::uno::XInterface Child;
1905 /** @deprecated */ published constants VclWindowPeerAttribute {
1906 const long AUTOHSCROLL = 1073741824;
1907 const long AUTOVSCROLL = -2147483648;
1908 const long CENTER = 2048;
1909 const long CLIPCHILDREN = 524288;
1910 const long DEFBUTTON = 65536;
1911 const long DEF_CANCEL = 268435456;
1912 const long DEF_NO = -2147483648;
1913 const long DEF_OK = 134217728;
1914 const long DEF_RETRY = 536870912;
1915 const long DEF_YES = 1073741824;
1916 const long DROPDOWN = 32768;
1917 const long GROUP = 2097152;
1918 const long HSCROLL = 256;
1919 const long LEFT = 1024;
1920 const long NOBORDER = 1048576;
1921 const long NOLABEL = 536870912;
1922 const long OK = 4194304;
1923 const long OK_CANCEL = 8388608;
1924 const long READONLY = 262144;
1925 const long RETRY_CANCEL = 67108864;
1926 const long RIGHT = 4096;
1927 const long SORT = 16384;
1928 const long SPIN = 8192;
1929 const long VSCROLL = 512;
1930 const long YES_NO = 16777216;
1931 const long YES_NO_CANCEL = 33554432;
1933 published constants WindowAttribute {
1934 const long BORDER = 16;
1935 const long CLOSEABLE = 128;
1936 const long FULLSIZE = 2;
1937 const long MINSIZE = 8;
1938 const long MOVEABLE = 64;
1939 const long NODECORATION = 512;
1940 const long OPTIMUMSIZE = 4;
1941 const long SHOW = 1;
1942 const long SIZEABLE = 32;
1943 /** @deprecated */ const long SYSTEMDEPENDENT = 256;
1945 published struct WindowEvent: ::com::sun::star::lang::EventObject {
1946 long X;
1947 long Y;
1948 long Width;
1949 long Height;
1950 long LeftInset;
1951 long TopInset;
1952 long RightInset;
1953 long BottomInset;
1955 published interface XActionListener {
1956 interface ::com::sun::star::lang::XEventListener;
1957 void actionPerformed([in] ::com::sun::star::awt::ActionEvent rEvent);
1959 published interface XActivateListener {
1960 interface ::com::sun::star::lang::XEventListener;
1961 void windowActivated([in] ::com::sun::star::lang::EventObject e);
1962 void windowDeactivated([in] ::com::sun::star::lang::EventObject e);
1964 published interface XAdjustmentListener {
1965 interface ::com::sun::star::lang::XEventListener;
1966 void adjustmentValueChanged([in] ::com::sun::star::awt::AdjustmentEvent rEvent);
1968 published interface XBitmap {
1969 interface ::com::sun::star::uno::XInterface;
1970 ::com::sun::star::awt::Size getSize();
1971 sequence< byte > getDIB();
1972 sequence< byte > getMaskDIB();
1974 published interface XDisplayBitmap;
1975 published interface XFont;
1976 published interface XGraphics;
1977 published interface XDevice {
1978 interface ::com::sun::star::uno::XInterface;
1979 ::com::sun::star::awt::XGraphics createGraphics();
1980 ::com::sun::star::awt::XDevice createDevice([in] long nWidth, [in] long nHeight);
1981 ::com::sun::star::awt::DeviceInfo getInfo();
1982 sequence< ::com::sun::star::awt::FontDescriptor > getFontDescriptors();
1983 ::com::sun::star::awt::XFont getFont([in] ::com::sun::star::awt::FontDescriptor aDescriptor);
1984 ::com::sun::star::awt::XBitmap createBitmap([in] long nX, [in] long nY, [in] long nWidth, [in] long nHeight);
1985 ::com::sun::star::awt::XDisplayBitmap createDisplayBitmap([in] ::com::sun::star::awt::XBitmap Bitmap);
1987 published interface XDisplayBitmap {
1988 interface ::com::sun::star::uno::XInterface;
1990 published interface XEventHandler;
1991 published interface XDisplayConnection {
1992 interface ::com::sun::star::uno::XInterface;
1993 void addEventHandler([in] any window, [in] ::com::sun::star::awt::XEventHandler eventHandler, [in] long eventMask);
1994 void removeEventHandler([in] any window, [in] ::com::sun::star::awt::XEventHandler eventHandler);
1995 void addErrorHandler([in] ::com::sun::star::awt::XEventHandler errorHandler);
1996 void removeErrorHandler([in] ::com::sun::star::awt::XEventHandler errorHandler);
1997 any getIdentifier();
1999 published interface XEnhancedMouseClickHandler {
2000 interface ::com::sun::star::lang::XEventListener;
2001 boolean mousePressed([in] ::com::sun::star::awt::EnhancedMouseEvent e);
2002 boolean mouseReleased([in] ::com::sun::star::awt::EnhancedMouseEvent e);
2004 published interface XEventHandler {
2005 interface ::com::sun::star::uno::XInterface;
2006 boolean handleEvent([in] any event);
2008 /** @deprecated */ published interface XFileDialog {
2009 interface ::com::sun::star::uno::XInterface;
2010 void setPath([in] string Path);
2011 string getPath();
2012 void setFilters([in] sequence< string > rFilterNames, [in] sequence< string > rMasks);
2013 void setCurrentFilter([in] string Filter);
2014 string getCurrentFilter();
2016 published interface XFocusListener {
2017 interface ::com::sun::star::lang::XEventListener;
2018 void focusGained([in] ::com::sun::star::awt::FocusEvent e);
2019 void focusLost([in] ::com::sun::star::awt::FocusEvent e);
2021 published interface XFont {
2022 interface ::com::sun::star::uno::XInterface;
2023 ::com::sun::star::awt::FontDescriptor getFontDescriptor();
2024 ::com::sun::star::awt::SimpleFontMetric getFontMetric();
2025 short getCharWidth([in] char c);
2026 sequence< short > getCharWidths([in] char nFirst, [in] char nLast);
2027 long getStringWidth([in] string str);
2028 long getStringWidthArray([in] string str, [out] sequence< long > aDXArray);
2029 void getKernPairs([out] sequence< char > Chars1, [out] sequence< char > Chars2, [out] sequence< short > Kerns);
2031 published interface XRegion;
2032 published interface XGraphics {
2033 interface ::com::sun::star::uno::XInterface;
2034 ::com::sun::star::awt::XDevice getDevice();
2035 ::com::sun::star::awt::SimpleFontMetric getFontMetric();
2036 void setFont([in] ::com::sun::star::awt::XFont xNewFont);
2037 void selectFont([in] ::com::sun::star::awt::FontDescriptor aDescription);
2038 void setTextColor([in] ::com::sun::star::util::Color nColor);
2039 void setTextFillColor([in] ::com::sun::star::util::Color nColor);
2040 void setLineColor([in] ::com::sun::star::util::Color nColor);
2041 void setFillColor([in] ::com::sun::star::util::Color nColor);
2042 void setRasterOp([in] ::com::sun::star::awt::RasterOperation ROP);
2043 void setClipRegion([in] ::com::sun::star::awt::XRegion Clipping);
2044 void intersectClipRegion([in] ::com::sun::star::awt::XRegion xClipping);
2045 void push();
2046 void pop();
2047 void copy([in] ::com::sun::star::awt::XDevice xSource, [in] long nSourceX, [in] long nSourceY, [in] long nSourceWidth, [in] long nSourceHeight, [in] long nDestX, [in] long nDestY, [in] long nDestWidth, [in] long nDestHeight);
2048 void draw([in] ::com::sun::star::awt::XDisplayBitmap xBitmapHandle, [in] long SourceX, [in] long SourceY, [in] long SourceWidth, [in] long SourceHeight, [in] long DestX, [in] long DestY, [in] long DestWidth, [in] long DestHeight);
2049 void drawPixel([in] long X, [in] long Y);
2050 void drawLine([in] long X1, [in] long Y1, [in] long X2, [in] long Y2);
2051 void drawRect([in] long X, [in] long Y, [in] long Width, [in] long Height);
2052 void drawRoundedRect([in] long X, [in] long Y, [in] long Width, [in] long Height, [in] long nHorzRound, [in] long nVertRound);
2053 void drawPolyLine([in] sequence< long > DataX, [in] sequence< long > DataY);
2054 void drawPolygon([in] sequence< long > DataX, [in] sequence< long > DataY);
2055 void drawPolyPolygon([in] sequence< sequence< long > > DataX, [in] sequence< sequence< long > > DataY);
2056 void drawEllipse([in] long X, [in] long Y, [in] long Width, [in] long Height);
2057 void drawArc([in] long X, [in] long Y, [in] long Width, [in] long Height, [in] long X1, [in] long Y1, [in] long X2, [in] long Y2);
2058 void drawPie([in] long X, [in] long Y, [in] long Width, [in] long Height, [in] long X1, [in] long Y1, [in] long X2, [in] long Y2);
2059 void drawChord([in] long nX, [in] long nY, [in] long nWidth, [in] long nHeight, [in] long nX1, [in] long nY1, [in] long nX2, [in] long nY2);
2060 void drawGradient([in] long nX, [in] long nY, [in] long nWidth, [in] long Height, [in] ::com::sun::star::awt::Gradient aGradient);
2061 void drawText([in] long X, [in] long Y, [in] string Text);
2062 void drawTextArray([in] long X, [in] long Y, [in] string Text, [in] sequence< long > Longs);
2065 module graphic {
2066 published interface XGraphic;
2068 module awt {
2069 published interface XGraphics2 {
2070 interface ::com::sun::star::awt::XGraphics;
2071 void clear([in] ::com::sun::star::awt::Rectangle aRect);
2072 void drawImage([in] long nX, [in] long nY, [in] long nWidth, [in] long nHeight, [in] short nStyle, [in] ::com::sun::star::graphic::XGraphic aGraphic);
2074 published interface XImageButton {
2075 interface ::com::sun::star::uno::XInterface;
2076 void addActionListener([in] ::com::sun::star::awt::XActionListener l);
2077 void removeActionListener([in] ::com::sun::star::awt::XActionListener l);
2078 void setActionCommand([in] string Command);
2080 published interface XImageProducer;
2081 published interface XImageConsumer {
2082 interface ::com::sun::star::uno::XInterface;
2083 void init([in] long Width, [in] long Height);
2084 void setColorModel([in] short BitCount, [in] sequence< long > RGBAPal, [in] long RedMask, [in] long GreenMask, [in] long BlueMask, [in] long AlphaMask);
2085 void setPixelsByBytes([in] long nX, [in] long nY, [in] long nWidth, [in] long nHeight, [in] sequence< byte > aProducerData, [in] long nOffset, [in] long nScanSize);
2086 void setPixelsByLongs([in] long nX, [in] long nY, [in] long nWidth, [in] long nHeight, [in] sequence< long > aProducerData, [in] long nOffset, [in] long nScanSize);
2087 void complete([in] long Status, [in] ::com::sun::star::awt::XImageProducer xProducer);
2089 published interface XImageProducer {
2090 interface ::com::sun::star::uno::XInterface;
2091 void addConsumer([in] ::com::sun::star::awt::XImageConsumer xConsumer);
2092 void removeConsumer([in] ::com::sun::star::awt::XImageConsumer xConsumer);
2093 void startProduction();
2095 published interface XPrinterPropertySet {
2096 interface ::com::sun::star::beans::XPropertySet;
2097 void setHorizontal([in] boolean bHorizontal) raises (::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException);
2098 sequence< string > getFormDescriptions();
2099 void selectForm([in] string aFormDescription) raises (::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException);
2100 sequence< byte > getBinarySetup();
2101 void setBinarySetup([in] sequence< byte > data) raises (::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException);
2103 published interface XInfoPrinter {
2104 interface ::com::sun::star::awt::XPrinterPropertySet;
2105 ::com::sun::star::awt::XDevice createDevice();
2107 published interface XItemListener {
2108 interface ::com::sun::star::lang::XEventListener;
2109 void itemStateChanged([in] ::com::sun::star::awt::ItemEvent rEvent);
2111 published interface XKeyHandler {
2112 interface ::com::sun::star::lang::XEventListener;
2113 boolean keyPressed([in] ::com::sun::star::awt::KeyEvent aEvent);
2114 boolean keyReleased([in] ::com::sun::star::awt::KeyEvent aEvent);
2116 published interface XKeyListener {
2117 interface ::com::sun::star::lang::XEventListener;
2118 void keyPressed([in] ::com::sun::star::awt::KeyEvent e);
2119 void keyReleased([in] ::com::sun::star::awt::KeyEvent e);
2121 published interface XMenuListener {
2122 interface ::com::sun::star::lang::XEventListener;
2123 void itemHighlighted([in] ::com::sun::star::awt::MenuEvent aEvent);
2124 void itemSelected([in] ::com::sun::star::awt::MenuEvent aEvent);
2125 void itemActivated([in] ::com::sun::star::awt::MenuEvent aEvent);
2126 void itemDeactivated([in] ::com::sun::star::awt::MenuEvent aEvent);
2128 published interface XMessageBox {
2129 interface ::com::sun::star::uno::XInterface;
2130 [attribute] string CaptionText;
2131 [attribute] string MessageText;
2132 short execute();
2134 published interface XMouseClickHandler {
2135 interface ::com::sun::star::lang::XEventListener;
2136 boolean mousePressed([in] ::com::sun::star::awt::MouseEvent e);
2137 boolean mouseReleased([in] ::com::sun::star::awt::MouseEvent e);
2139 published interface XMouseListener {
2140 interface ::com::sun::star::lang::XEventListener;
2141 void mousePressed([in] ::com::sun::star::awt::MouseEvent e);
2142 void mouseReleased([in] ::com::sun::star::awt::MouseEvent e);
2143 void mouseEntered([in] ::com::sun::star::awt::MouseEvent e);
2144 void mouseExited([in] ::com::sun::star::awt::MouseEvent e);
2146 published interface XMouseMotionHandler {
2147 interface ::com::sun::star::lang::XEventListener;
2148 boolean mouseDragged([in] ::com::sun::star::awt::MouseEvent e);
2149 boolean mouseMoved([in] ::com::sun::star::awt::MouseEvent e);
2151 published interface XMouseMotionListener {
2152 interface ::com::sun::star::lang::XEventListener;
2153 void mouseDragged([in] ::com::sun::star::awt::MouseEvent e);
2154 void mouseMoved([in] ::com::sun::star::awt::MouseEvent e);
2156 published interface XPaintListener {
2157 interface ::com::sun::star::lang::XEventListener;
2158 void windowPaint([in] ::com::sun::star::awt::PaintEvent e);
2160 published interface XPrinter {
2161 interface ::com::sun::star::awt::XPrinterPropertySet;
2162 boolean start([in] string nJobName, [in] short nCopies, [in] boolean nCollate) raises (::com::sun::star::awt::PrinterException, ::com::sun::star::lang::IllegalArgumentException);
2163 void end() raises (::com::sun::star::awt::PrinterException);
2164 void terminate();
2165 ::com::sun::star::awt::XDevice startPage() raises (::com::sun::star::awt::PrinterException);
2166 void endPage() raises (::com::sun::star::awt::PrinterException);
2168 /** @deprecated */ published interface XProgressMonitor {
2169 interface ::com::sun::star::awt::XProgressBar;
2170 void addText([in] string Topic, [in] string Text, [in] boolean beforeProgress);
2171 void removeText([in] string Topic, [in] boolean beforeProgress);
2172 void updateText([in] string Topic, [in] string Text, [in] boolean beforeProgress);
2174 published interface XRegion {
2175 interface ::com::sun::star::uno::XInterface;
2176 ::com::sun::star::awt::Rectangle getBounds();
2177 void clear();
2178 void move([in] long nHorzMove, [in] long nVertMove);
2179 void unionRectangle([in] ::com::sun::star::awt::Rectangle Rect);
2180 void intersectRectangle([in] ::com::sun::star::awt::Rectangle Region);
2181 void excludeRectangle([in] ::com::sun::star::awt::Rectangle Rect);
2182 void xOrRectangle([in] ::com::sun::star::awt::Rectangle Rect);
2183 void unionRegion([in] ::com::sun::star::awt::XRegion Region);
2184 void intersectRegion([in] ::com::sun::star::awt::XRegion Region);
2185 void excludeRegion([in] ::com::sun::star::awt::XRegion Region);
2186 void xOrRegion([in] ::com::sun::star::awt::XRegion Region);
2187 sequence< ::com::sun::star::awt::Rectangle > getRectangles();
2189 published interface XSpinListener {
2190 interface ::com::sun::star::lang::XEventListener;
2191 void up([in] ::com::sun::star::awt::SpinEvent rEvent);
2192 void down([in] ::com::sun::star::awt::SpinEvent rEvent);
2193 void first([in] ::com::sun::star::awt::SpinEvent rEvent);
2194 void last([in] ::com::sun::star::awt::SpinEvent rEvent);
2196 published interface XSystemDependentWindowPeer {
2197 interface ::com::sun::star::uno::XInterface;
2198 any getWindowHandle([in] sequence< byte > ProcessId, [in] short SystemType);
2200 published interface XTextArea {
2201 interface ::com::sun::star::uno::XInterface;
2202 string getTextLines();
2204 published interface XTextEditField {
2205 interface ::com::sun::star::uno::XInterface;
2206 void setEchoChar([in] char cEcho);
2208 published interface XTextListener {
2209 interface ::com::sun::star::lang::XEventListener;
2210 void textChanged([in] ::com::sun::star::awt::TextEvent rEvent);
2212 published interface XTopWindowListener {
2213 interface ::com::sun::star::lang::XEventListener;
2214 void windowOpened([in] ::com::sun::star::lang::EventObject e);
2215 void windowClosing([in] ::com::sun::star::lang::EventObject e);
2216 void windowClosed([in] ::com::sun::star::lang::EventObject e);
2217 void windowMinimized([in] ::com::sun::star::lang::EventObject e);
2218 void windowNormalized([in] ::com::sun::star::lang::EventObject e);
2219 void windowActivated([in] ::com::sun::star::lang::EventObject e);
2220 void windowDeactivated([in] ::com::sun::star::lang::EventObject e);
2222 published interface XUserInputInterception {
2223 interface ::com::sun::star::uno::XInterface;
2224 void addKeyHandler([in] ::com::sun::star::awt::XKeyHandler xHandler);
2225 void removeKeyHandler([in] ::com::sun::star::awt::XKeyHandler xHandler);
2226 void addMouseClickHandler([in] ::com::sun::star::awt::XMouseClickHandler xHandler);
2227 void removeMouseClickHandler([in] ::com::sun::star::awt::XMouseClickHandler xHandler);
2229 published interface XVclContainerListener;
2230 /** @deprecated */ published interface XVclContainer {
2231 interface ::com::sun::star::uno::XInterface;
2232 void addVclContainerListener([in] ::com::sun::star::awt::XVclContainerListener l);
2233 void removeVclContainerListener([in] ::com::sun::star::awt::XVclContainerListener l);
2234 sequence< ::com::sun::star::awt::XWindow > getWindows();
2236 /** @deprecated */ published interface XVclContainerListener {
2237 interface ::com::sun::star::lang::XEventListener;
2238 void windowAdded([in] ::com::sun::star::awt::VclContainerEvent e);
2239 void windowRemoved([in] ::com::sun::star::awt::VclContainerEvent e);
2241 /** @deprecated */ published interface XVclContainerPeer {
2242 interface ::com::sun::star::uno::XInterface;
2243 void enableDialogControl([in] boolean bEnable);
2244 void setTabOrder([in] sequence< ::com::sun::star::awt::XWindow > WindowOrder, [in] sequence< any > Tabs, [in] boolean GroupControl);
2245 void setGroup([in] sequence< ::com::sun::star::awt::XWindow > Windows);
2247 published interface XWindowPeer {
2248 interface ::com::sun::star::lang::XComponent;
2249 ::com::sun::star::awt::XToolkit getToolkit();
2250 void setPointer([in] ::com::sun::star::awt::XPointer Pointer);
2251 void setBackground([in] ::com::sun::star::util::Color Color);
2252 void invalidate([in] short Flags);
2253 void invalidateRect([in] ::com::sun::star::awt::Rectangle Rect, [in] short Flags);
2255 /** @deprecated */ published interface XVclWindowPeer {
2256 interface ::com::sun::star::awt::XWindowPeer;
2257 boolean isChild([in] ::com::sun::star::awt::XWindowPeer Peer);
2258 void setDesignMode([in] boolean bOn);
2259 boolean isDesignMode();
2260 void enableClipSiblings([in] boolean bClip);
2261 void setForeground([in] ::com::sun::star::util::Color Color);
2262 void setControlFont([in] ::com::sun::star::awt::FontDescriptor aFont);
2263 void getStyles([in] short nType, [out] ::com::sun::star::awt::FontDescriptor Font, [out] ::com::sun::star::util::Color ForegroundColor, [out] ::com::sun::star::util::Color BackgroundColor);
2264 void setProperty([in] string PropertyName, [in] any Value);
2265 any getProperty([in] string PropertyName);
2267 published interface XWindow2 {
2268 interface ::com::sun::star::awt::XWindow;
2269 void setOutputSize([in] ::com::sun::star::awt::Size Size);
2270 ::com::sun::star::awt::Size getOutputSize();
2271 boolean isVisible();
2272 boolean isActive();
2273 boolean isEnabled();
2274 boolean hasFocus();
2276 published interface XWindowListener {
2277 interface ::com::sun::star::lang::XEventListener;
2278 void windowResized([in] ::com::sun::star::awt::WindowEvent e);
2279 void windowMoved([in] ::com::sun::star::awt::WindowEvent e);
2280 void windowShown([in] ::com::sun::star::lang::EventObject e);
2281 void windowHidden([in] ::com::sun::star::lang::EventObject e);
2283 module grid {
2284 published interface XGridColumn;
2285 published interface XGridColumnModel {
2286 interface ::com::sun::star::lang::XComponent;
2287 interface ::com::sun::star::container::XContainer;
2288 interface ::com::sun::star::util::XCloneable;
2289 long getColumnCount();
2290 ::com::sun::star::awt::grid::XGridColumn createColumn();
2291 long addColumn([in] ::com::sun::star::awt::grid::XGridColumn column) raises (::com::sun::star::lang::IllegalArgumentException);
2292 void removeColumn([in] long ColumnIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2293 sequence< ::com::sun::star::awt::grid::XGridColumn > getColumns();
2294 ::com::sun::star::awt::grid::XGridColumn getColumn([in] long index) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2295 void setDefaultColumns([in] long elements);
2297 published interface XGridDataModel {
2298 interface ::com::sun::star::lang::XComponent;
2299 interface ::com::sun::star::util::XCloneable;
2300 [attribute, readonly] long RowCount;
2301 [attribute, readonly] long ColumnCount;
2302 any getCellData([in] long Column, [in] long RowIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2303 any getCellToolTip([in] long Column, [in] long RowIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2304 any getRowHeading([in] long RowIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2305 sequence< any > getRowData([in] long RowIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2307 published interface XGridDataListener;
2308 published interface XMutableGridDataModel {
2309 interface ::com::sun::star::awt::grid::XGridDataModel;
2310 void addRow([in] any Heading, [in] sequence< any > Data);
2311 void addRows([in] sequence< any > Headings, [in] sequence< sequence< any > > Data) raises (::com::sun::star::lang::IllegalArgumentException);
2312 void insertRow([in] long Index, [in] any Heading, [in] sequence< any > Data) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2313 void insertRows([in] long Index, [in] sequence< any > Headings, [in] sequence< sequence< any > > Data) raises (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException);
2314 void removeRow([in] long RowIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2315 void removeAllRows();
2316 void updateCellData([in] long ColumnIndex, [in] long RowIndex, [in] any Value) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2317 void updateRowData([in] sequence< long > ColumnIndexes, [in] long RowIndex, [in] sequence< any > Values) raises (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException);
2318 void updateRowHeading([in] long RowIndex, [in] any Heading) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2319 void updateCellToolTip([in] long ColumnIndex, [in] long RowIndex, [in] any Value) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2320 void updateRowToolTip([in] long RowIndex, [in] any Value) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2321 void addGridDataListener([in] ::com::sun::star::awt::grid::XGridDataListener Listener);
2322 void removeGridDataListener([in] ::com::sun::star::awt::grid::XGridDataListener Listener);
2324 published service DefaultGridDataModel: ::com::sun::star::awt::grid::XMutableGridDataModel;
2327 module style {
2328 published enum HorizontalAlignment {
2329 LEFT = 0,
2330 CENTER = 1,
2331 RIGHT = 2
2334 module awt {
2335 module grid {
2336 published interface XGridColumnListener;
2337 published interface XGridColumn {
2338 interface ::com::sun::star::lang::XComponent;
2339 interface ::com::sun::star::util::XCloneable;
2340 [attribute] any Identifier;
2341 [attribute] long ColumnWidth;
2342 [attribute] long MinWidth;
2343 [attribute] long MaxWidth;
2344 [attribute] boolean Resizeable;
2345 [attribute] long Flexibility {
2346 set raises (::com::sun::star::lang::IllegalArgumentException);
2348 [attribute] ::com::sun::star::style::HorizontalAlignment HorizontalAlign;
2349 [attribute] string Title;
2350 [attribute] string HelpText;
2351 [attribute, readonly] long Index;
2352 [attribute] long DataColumnIndex;
2353 void addGridColumnListener([in] ::com::sun::star::awt::grid::XGridColumnListener Listener);
2354 void removeGridColumnListener([in] ::com::sun::star::awt::grid::XGridColumnListener Listener);
2356 published struct GridColumnEvent: ::com::sun::star::lang::EventObject {
2357 string AttributeName;
2358 any OldValue;
2359 any NewValue;
2360 long ColumnIndex;
2362 published struct GridDataEvent: ::com::sun::star::lang::EventObject {
2363 long FirstColumn;
2364 long LastColumn;
2365 long FirstRow;
2366 long LastRow;
2368 published struct GridSelectionEvent: ::com::sun::star::lang::EventObject {
2369 sequence< long > SelectedRowIndexes;
2370 sequence< long > SelectedColumnIndexes;
2374 module util {
2375 published exception VetoException: ::com::sun::star::uno::Exception {
2378 module awt {
2379 module grid {
2380 published interface XGridControl {
2381 interface ::com::sun::star::uno::XInterface;
2382 long getColumnAtPoint([in] long X, [in] long Y);
2383 long getRowAtPoint([in] long X, [in] long Y);
2384 long getCurrentColumn();
2385 long getCurrentRow();
2386 void goToCell([in] long ColumnIndex, [in] long RowIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::util::VetoException);
2388 published interface XGridSelectionListener;
2389 published interface XGridRowSelection {
2390 interface ::com::sun::star::uno::XInterface;
2391 void selectAllRows();
2392 void selectRow([in] long RowIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2393 void deselectAllRows();
2394 void deselectRow([in] long RowIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2395 sequence< long > getSelectedRows();
2396 boolean hasSelectedRows();
2397 boolean isRowSelected([in] long RowIndex);
2398 void addSelectionListener([in] ::com::sun::star::awt::grid::XGridSelectionListener listener);
2399 void removeSelectionListener([in] ::com::sun::star::awt::grid::XGridSelectionListener listener);
2403 module view {
2404 published enum SelectionType {
2405 NONE = 0,
2406 SINGLE = 1,
2407 MULTI = 2,
2408 RANGE = 3
2411 module awt {
2412 module grid {
2413 published service UnoControlGridModel {
2414 service ::com::sun::star::awt::UnoControlModel;
2415 [property] boolean ShowRowHeader;
2416 [property] long RowHeaderWidth;
2417 [property] boolean ShowColumnHeader;
2418 [property, maybevoid] long ColumnHeaderHeight;
2419 [property, maybevoid] long RowHeight;
2420 [property] ::com::sun::star::awt::grid::XGridColumnModel ColumnModel;
2421 [property] ::com::sun::star::awt::grid::XGridDataModel GridDataModel;
2422 [property] boolean HScroll;
2423 [property] boolean VScroll;
2424 [property] boolean Tabstop;
2425 [property] ::com::sun::star::view::SelectionType SelectionModel;
2426 [property] boolean UseGridLines;
2427 [property, maybevoid] ::com::sun::star::util::Color GridLineColor;
2428 [property, maybevoid] ::com::sun::star::util::Color HeaderBackgroundColor;
2429 [property, maybevoid] ::com::sun::star::util::Color HeaderTextColor;
2430 [property, maybevoid] ::com::sun::star::util::Color ActiveSelectionBackgroundColor;
2431 [property, maybevoid] ::com::sun::star::util::Color InactiveSelectionBackgroundColor;
2432 [property, maybevoid] ::com::sun::star::util::Color ActiveSelectionTextColor;
2433 [property, maybevoid] ::com::sun::star::util::Color InactiveSelectionTextColor;
2434 [property, maybevoid] sequence< ::com::sun::star::util::Color > RowBackgroundColors;
2435 [property] ::com::sun::star::style::VerticalAlignment VerticalAlign;
2436 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
2437 [property, maybevoid] ::com::sun::star::util::Color TextColor;
2438 [property, maybevoid] ::com::sun::star::util::Color TextLineColor;
2439 [property] short FontEmphasisMark;
2440 [property] short FontRelief;
2441 [property] string HelpText;
2442 [property] string HelpURL;
2444 published interface XGridColumnListener {
2445 interface ::com::sun::star::lang::XEventListener;
2446 void columnChanged([in] ::com::sun::star::awt::grid::GridColumnEvent event);
2448 published interface XGridDataListener {
2449 interface ::com::sun::star::lang::XEventListener;
2450 void rowsInserted([in] ::com::sun::star::awt::grid::GridDataEvent Event);
2451 void rowsRemoved([in] ::com::sun::star::awt::grid::GridDataEvent Event);
2452 void dataChanged([in] ::com::sun::star::awt::grid::GridDataEvent Event);
2453 void rowHeadingChanged([in] ::com::sun::star::awt::grid::GridDataEvent Event);
2455 published interface XGridSelectionListener {
2456 interface ::com::sun::star::lang::XEventListener;
2457 void selectionChanged([in] ::com::sun::star::awt::grid::GridSelectionEvent gridSelectionEvent);
2460 module tab {
2461 published struct TabPageActivatedEvent: ::com::sun::star::lang::EventObject {
2462 short TabPageID;
2464 published interface XTabPage {
2465 interface ::com::sun::star::uno::XInterface;
2467 published service UnoControlTabPage {
2468 service ::com::sun::star::awt::UnoControlContainer;
2469 interface ::com::sun::star::awt::tab::XTabPage;
2471 published interface XTabPageContainerListener;
2472 published interface XTabPageContainer {
2473 interface ::com::sun::star::uno::XInterface;
2474 [attribute] short ActiveTabPageID;
2475 short getTabPageCount();
2476 boolean isTabPageActive([in] short tabPageIndex);
2477 ::com::sun::star::awt::tab::XTabPage getTabPage([in] short tabPageIndex);
2478 ::com::sun::star::awt::tab::XTabPage getTabPageByID([in] short tabPageID);
2479 void addTabPageContainerListener([in] ::com::sun::star::awt::tab::XTabPageContainerListener listener);
2480 void removeTabPageContainerListener([in] ::com::sun::star::awt::tab::XTabPageContainerListener listener);
2482 published service UnoControlTabPageContainer {
2483 service ::com::sun::star::awt::UnoControl;
2484 interface ::com::sun::star::awt::tab::XTabPageContainer;
2486 published interface XTabPageModel;
2487 published interface XTabPageContainerModel {
2488 interface ::com::sun::star::container::XIndexContainer;
2489 interface ::com::sun::star::container::XContainer;
2490 ::com::sun::star::awt::tab::XTabPageModel createTabPage([in] short TabPageID);
2491 ::com::sun::star::awt::tab::XTabPageModel loadTabPage([in] short TabPageID, [in] string ResourceURL);
2493 published service UnoControlTabPageContainerModel {
2494 service ::com::sun::star::awt::UnoControlModel;
2495 interface ::com::sun::star::awt::tab::XTabPageContainerModel;
2497 published interface XTabPageModel {
2498 interface ::com::sun::star::uno::XInterface;
2499 [attribute, readonly] short TabPageID;
2500 [attribute] boolean Enabled;
2501 [attribute] string Title;
2502 [attribute] string ImageURL;
2503 [attribute] string ToolTip;
2505 published service UnoControlTabPageModel {
2506 interface ::com::sun::star::awt::tab::XTabPageModel;
2508 published interface XTabPageContainerListener {
2509 interface ::com::sun::star::lang::XEventListener;
2510 void tabPageActivated([in] ::com::sun::star::awt::tab::TabPageActivatedEvent tabPageActivatedEvent);
2514 module view {
2515 published interface XSelectionChangeListener;
2516 published interface XSelectionSupplier {
2517 interface ::com::sun::star::uno::XInterface;
2518 boolean select([in] any xSelection) raises (::com::sun::star::lang::IllegalArgumentException);
2519 any getSelection();
2520 void addSelectionChangeListener([in] ::com::sun::star::view::XSelectionChangeListener xListener);
2521 void removeSelectionChangeListener([in] ::com::sun::star::view::XSelectionChangeListener xListener);
2524 module drawing {
2525 published interface XShape;
2527 module chart {
2528 published interface XAxisXSupplier {
2529 interface ::com::sun::star::uno::XInterface;
2530 ::com::sun::star::drawing::XShape getXAxisTitle();
2531 ::com::sun::star::beans::XPropertySet getXAxis();
2532 ::com::sun::star::beans::XPropertySet getXMainGrid();
2533 ::com::sun::star::beans::XPropertySet getXHelpGrid();
2535 published service ChartAxisXSupplier {
2536 interface ::com::sun::star::chart::XAxisXSupplier;
2537 [property] boolean HasXAxis;
2538 [property] boolean HasXAxisDescription;
2539 [property] boolean HasXAxisGrid;
2540 [property] boolean HasXAxisHelpGrid;
2541 [property] boolean HasXAxisTitle;
2544 module drawing {
2545 published interface XShape;
2547 module chart {
2548 published interface XAxisZSupplier {
2549 interface ::com::sun::star::uno::XInterface;
2550 ::com::sun::star::drawing::XShape getZAxisTitle();
2551 ::com::sun::star::beans::XPropertySet getZMainGrid();
2552 ::com::sun::star::beans::XPropertySet getZHelpGrid();
2553 ::com::sun::star::beans::XPropertySet getZAxis();
2555 published service ChartAxisZSupplier {
2556 interface ::com::sun::star::chart::XAxisZSupplier;
2557 [property] boolean HasZAxis;
2558 [property] boolean HasZAxisDescription;
2559 [property] boolean HasZAxisGrid;
2560 [property] boolean HasZAxisHelpGrid;
2561 [property] boolean HasZAxisTitle;
2563 published enum ChartErrorCategory {
2564 NONE = 0,
2565 VARIANCE = 1,
2566 STANDARD_DEVIATION = 2,
2567 PERCENT = 3,
2568 ERROR_MARGIN = 4,
2569 CONSTANT_VALUE = 5
2571 published enum ChartErrorIndicatorType {
2572 NONE = 0,
2573 TOP_AND_BOTTOM = 1,
2574 UPPER = 2,
2575 LOWER = 3
2577 published enum ChartRegressionCurveType {
2578 NONE = 0,
2579 LINEAR = 1,
2580 LOGARITHM = 2,
2581 EXPONENTIAL = 3,
2582 POLYNOMIAL = 4,
2583 POWER = 5
2585 published service ChartStatistics {
2586 interface ::com::sun::star::beans::XPropertySet;
2587 [property] double ConstantErrorLow;
2588 [property] double ConstantErrorHigh;
2589 [property] boolean MeanValue;
2590 /** @deprecated */ [property] ::com::sun::star::chart::ChartErrorCategory ErrorCategory;
2591 [property, optional] long ErrorBarStyle;
2592 [property] double PercentageError;
2593 [property] double ErrorMargin;
2594 [property] ::com::sun::star::chart::ChartErrorIndicatorType ErrorIndicator;
2595 [property] ::com::sun::star::chart::ChartRegressionCurveType RegressionCurves;
2596 [property, optional] string ErrorBarRangePositive;
2597 [property, optional] string ErrorBarRangeNegative;
2600 module drawing {
2601 published interface XShape;
2603 module chart {
2604 published interface XAxisYSupplier {
2605 interface ::com::sun::star::uno::XInterface;
2606 ::com::sun::star::drawing::XShape getYAxisTitle();
2607 ::com::sun::star::beans::XPropertySet getYAxis();
2608 ::com::sun::star::beans::XPropertySet getYHelpGrid();
2609 ::com::sun::star::beans::XPropertySet getYMainGrid();
2611 published service ChartAxisYSupplier {
2612 interface ::com::sun::star::chart::XAxisYSupplier;
2613 [property] boolean HasYAxis;
2614 [property] boolean HasYAxisDescription;
2615 [property] boolean HasYAxisGrid;
2616 [property] boolean HasYAxisHelpGrid;
2617 [property] boolean HasYAxisTitle;
2619 published interface XTwoAxisYSupplier {
2620 interface ::com::sun::star::chart::XAxisYSupplier;
2621 ::com::sun::star::beans::XPropertySet getSecondaryYAxis();
2623 published service ChartTwoAxisYSupplier {
2624 service ::com::sun::star::chart::ChartAxisYSupplier;
2625 interface ::com::sun::star::chart::XTwoAxisYSupplier;
2626 [property] boolean HasSecondaryYAxis;
2627 [property] boolean HasSecondaryYAxisDescription;
2628 [property, optional] boolean HasSecondaryYAxisTitle;
2630 published enum ChartDataRowSource {
2631 ROWS = 0,
2632 COLUMNS = 1
2634 interface XAxis;
2635 interface XAxisSupplier {
2636 interface ::com::sun::star::uno::XInterface;
2637 ::com::sun::star::chart::XAxis getAxis([in] long nDimensionIndex);
2638 ::com::sun::star::chart::XAxis getSecondaryAxis([in] long nDimensionIndex);
2641 module drawing {
2642 /** @deprecated */ published interface XShapeDescriptor {
2643 interface ::com::sun::star::uno::XInterface;
2644 string getShapeType();
2646 published interface XShape {
2647 interface ::com::sun::star::drawing::XShapeDescriptor;
2648 ::com::sun::star::awt::Point getPosition();
2649 void setPosition([in] ::com::sun::star::awt::Point aPosition);
2650 ::com::sun::star::awt::Size getSize();
2651 void setSize([in] ::com::sun::star::awt::Size aSize) raises (::com::sun::star::beans::PropertyVetoException);
2654 module chart {
2655 published interface XDiagram {
2656 interface ::com::sun::star::drawing::XShape;
2657 string getDiagramType();
2658 ::com::sun::star::beans::XPropertySet getDataRowProperties([in] long nRow) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2659 ::com::sun::star::beans::XPropertySet getDataPointProperties([in] long nCol, [in] long nRow) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2661 interface XDiagramPositioning {
2662 interface ::com::sun::star::uno::XInterface;
2663 void setAutomaticDiagramPositioning();
2664 boolean isAutomaticDiagramPositioning();
2665 void setDiagramPositionExcludingAxes([in] ::com::sun::star::awt::Rectangle PositionRect);
2666 boolean isExcludingDiagramPositioning();
2667 ::com::sun::star::awt::Rectangle calculateDiagramPositionExcludingAxes();
2668 void setDiagramPositionIncludingAxes([in] ::com::sun::star::awt::Rectangle PositionRect);
2669 ::com::sun::star::awt::Rectangle calculateDiagramPositionIncludingAxes();
2670 void setDiagramPositionIncludingAxesAndAxisTitles([in] ::com::sun::star::awt::Rectangle PositionRect);
2671 ::com::sun::star::awt::Rectangle calculateDiagramPositionIncludingAxesAndAxisTitles();
2673 interface XSecondAxisTitleSupplier {
2674 interface ::com::sun::star::uno::XInterface;
2675 ::com::sun::star::drawing::XShape getSecondXAxisTitle();
2676 ::com::sun::star::drawing::XShape getSecondYAxisTitle();
2679 module xml {
2680 published service UserDefinedAttributesSupplier {
2681 [property] ::com::sun::star::container::XNameContainer UserDefinedAttributes;
2684 module chart {
2685 published service Diagram {
2686 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
2687 interface ::com::sun::star::chart::XDiagram;
2688 interface ::com::sun::star::beans::XPropertySet;
2689 [optional] interface ::com::sun::star::chart::XAxisSupplier;
2690 [optional] interface ::com::sun::star::chart::XSecondAxisTitleSupplier;
2691 [optional] interface ::com::sun::star::chart::XDiagramPositioning;
2692 [property, optional] boolean AutomaticPosition;
2693 [property, optional] boolean AutomaticSize;
2694 [property] ::com::sun::star::chart::ChartDataRowSource DataRowSource;
2695 [property] long DataCaption;
2696 [property, optional] long MissingValueTreatment;
2698 published interface X3DDefaultSetter {
2699 interface ::com::sun::star::uno::XInterface;
2700 void set3DSettingsToDefault();
2701 void setDefaultRotation();
2702 void setDefaultIllumination();
2704 published interface X3DDisplay {
2705 interface ::com::sun::star::uno::XInterface;
2706 ::com::sun::star::beans::XPropertySet getWall();
2707 ::com::sun::star::beans::XPropertySet getFloor();
2709 published service Dim3DDiagram {
2710 interface ::com::sun::star::chart::X3DDisplay;
2711 [optional] interface ::com::sun::star::chart::X3DDefaultSetter;
2712 [property] boolean Dim3D;
2713 [property, optional] long Perspective;
2714 [property, optional] long RotationHorizontal;
2715 [property, optional] long RotationVertical;
2717 published service StackableDiagram {
2718 [property] boolean Percent;
2719 [property] boolean Stacked;
2721 published service AreaDiagram {
2722 service ::com::sun::star::chart::Diagram;
2723 service ::com::sun::star::chart::ChartStatistics;
2724 service ::com::sun::star::chart::ChartAxisXSupplier;
2725 service ::com::sun::star::chart::ChartTwoAxisYSupplier;
2726 service ::com::sun::star::chart::ChartAxisZSupplier;
2727 service ::com::sun::star::chart::Dim3DDiagram;
2728 service ::com::sun::star::chart::StackableDiagram;
2730 published service BarDiagram {
2731 service ::com::sun::star::chart::Diagram;
2732 service ::com::sun::star::chart::ChartStatistics;
2733 service ::com::sun::star::chart::ChartAxisXSupplier;
2734 service ::com::sun::star::chart::ChartTwoAxisYSupplier;
2735 service ::com::sun::star::chart::ChartAxisZSupplier;
2736 service ::com::sun::star::chart::Dim3DDiagram;
2737 service ::com::sun::star::chart::StackableDiagram;
2738 [property] boolean Vertical;
2739 [property, optional] boolean Deep;
2740 [property, optional] boolean StackedBarsConnected;
2741 [property, optional] boolean GroupBarsPerAxis;
2742 /** @deprecated */ [property] long NumberOfLines;
2744 published service BubbleDiagram {
2745 service ::com::sun::star::chart::Diagram;
2746 service ::com::sun::star::chart::ChartAxisXSupplier;
2747 service ::com::sun::star::chart::ChartTwoAxisYSupplier;
2748 [optional] service ::com::sun::star::chart::ChartStatistics;
2750 published service Chart3DBarProperties {
2751 interface ::com::sun::star::beans::XPropertySet;
2752 [property] long SolidType;
2755 module drawing {
2756 published enum BitmapMode {
2757 REPEAT = 0,
2758 STRETCH = 1,
2759 NO_REPEAT = 2
2761 published enum FillStyle {
2762 NONE = 0,
2763 SOLID = 1,
2764 GRADIENT = 2,
2765 HATCH = 3,
2766 BITMAP = 4
2768 published enum HatchStyle {
2769 SINGLE = 0,
2770 DOUBLE = 1,
2771 TRIPLE = 2
2773 published struct Hatch {
2774 ::com::sun::star::drawing::HatchStyle Style;
2775 ::com::sun::star::util::Color Color;
2776 long Distance;
2777 long Angle;
2779 published enum RectanglePoint {
2780 LEFT_TOP = 0,
2781 MIDDLE_TOP = 1,
2782 RIGHT_TOP = 2,
2783 LEFT_MIDDLE = 3,
2784 MIDDLE_MIDDLE = 4,
2785 RIGHT_MIDDLE = 5,
2786 LEFT_BOTTOM = 6,
2787 MIDDLE_BOTTOM = 7,
2788 RIGHT_BOTTOM = 8
2791 module text {
2792 published struct GraphicCrop {
2793 long Top;
2794 long Bottom;
2795 long Left;
2796 long Right;
2799 module drawing {
2800 published service FillProperties {
2801 [property] ::com::sun::star::drawing::FillStyle FillStyle;
2802 [property] ::com::sun::star::util::Color FillColor;
2803 [property] short FillTransparence;
2804 [property] string FillTransparenceGradientName;
2805 [property, optional] ::com::sun::star::awt::Gradient FillTransparenceGradient;
2806 [property] string FillGradientName;
2807 [property, optional] ::com::sun::star::awt::Gradient FillGradient;
2808 [property] string FillHatchName;
2809 [property, optional] ::com::sun::star::drawing::Hatch FillHatch;
2810 [property] boolean FillBackground;
2811 [property] string FillBitmapName;
2812 [property, optional] ::com::sun::star::awt::XBitmap FillBitmap;
2813 [property, optional] string FillBitmapURL;
2814 [property] short FillBitmapPositionOffsetX;
2815 [property] short FillBitmapPositionOffsetY;
2816 [property] short FillBitmapOffsetX;
2817 [property] short FillBitmapOffsetY;
2818 [property] ::com::sun::star::drawing::RectanglePoint FillBitmapRectanglePoint;
2819 [property] boolean FillBitmapLogicalSize;
2820 [property] long FillBitmapSizeX;
2821 [property] long FillBitmapSizeY;
2822 [property] ::com::sun::star::drawing::BitmapMode FillBitmapMode;
2823 [property, optional] boolean FillBitmapStretch;
2824 [property, optional] boolean FillBitmapTile;
2825 [property, optional] ::com::sun::star::text::GraphicCrop GraphicCrop;
2827 published enum LineCap {
2828 BUTT = 0,
2829 ROUND = 1,
2830 SQUARE = 2
2832 published enum DashStyle {
2833 RECT = 0,
2834 ROUND = 1,
2835 RECTRELATIVE = 2,
2836 ROUNDRELATIVE = 3
2838 published struct LineDash {
2839 ::com::sun::star::drawing::DashStyle Style;
2840 short Dots;
2841 long DotLen;
2842 short Dashes;
2843 long DashLen;
2844 long Distance;
2846 published enum LineJoint {
2847 NONE = 0,
2848 MIDDLE = 1,
2849 BEVEL = 2,
2850 MITER = 3,
2851 ROUND = 4
2853 published enum LineStyle {
2854 NONE = 0,
2855 SOLID = 1,
2856 DASH = 2
2858 published enum PolygonFlags {
2859 NORMAL = 0,
2860 SMOOTH = 1,
2861 CONTROL = 2,
2862 SYMMETRIC = 3
2864 published typedef sequence< ::com::sun::star::drawing::PolygonFlags > FlagSequence;
2865 published typedef sequence< ::com::sun::star::drawing::FlagSequence > FlagSequenceSequence;
2866 published typedef sequence< ::com::sun::star::awt::Point > PointSequence;
2867 published typedef sequence< ::com::sun::star::drawing::PointSequence > PointSequenceSequence;
2868 published struct PolyPolygonBezierCoords {
2869 ::com::sun::star::drawing::PointSequenceSequence Coordinates;
2870 ::com::sun::star::drawing::FlagSequenceSequence Flags;
2872 published service LineProperties {
2873 [property] ::com::sun::star::drawing::LineStyle LineStyle;
2874 [property] ::com::sun::star::drawing::LineDash LineDash;
2875 [property, optional] string LineDashName;
2876 [property] ::com::sun::star::util::Color LineColor;
2877 [property] short LineTransparence;
2878 [property] long LineWidth;
2879 [property] ::com::sun::star::drawing::LineJoint LineJoint;
2880 [property, optional] ::com::sun::star::drawing::LineCap LineCap;
2881 [property, optional] string LineStartName;
2882 [property, optional] string LineEndName;
2883 [property, optional] ::com::sun::star::drawing::PolyPolygonBezierCoords LineStart;
2884 [property, optional] ::com::sun::star::drawing::PolyPolygonBezierCoords LineEnd;
2885 [property, optional] boolean LineStartCenter;
2886 [property, optional] long LineStartWidth;
2887 [property, optional] boolean LineEndCenter;
2888 [property, optional] long LineEndWidth;
2891 module chart {
2892 published service ChartArea {
2893 service ::com::sun::star::drawing::FillProperties;
2894 service ::com::sun::star::drawing::LineProperties;
2895 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
2896 interface ::com::sun::star::beans::XPropertySet;
2898 published enum ChartAxisArrangeOrderType {
2899 AUTO = 0,
2900 SIDE_BY_SIDE = 1,
2901 STAGGER_EVEN = 2,
2902 STAGGER_ODD = 3
2904 published enum ChartAxisLabelPosition {
2905 NEAR_AXIS = 0,
2906 NEAR_AXIS_OTHER_SIDE = 1,
2907 OUTSIDE_START = 2,
2908 OUTSIDE_END = 3
2910 published enum ChartAxisMarkPosition {
2911 AT_LABELS = 0,
2912 AT_AXIS = 1,
2913 AT_LABELS_AND_AXIS = 2
2915 published enum ChartAxisPosition {
2916 ZERO = 0,
2917 START = 1,
2918 END = 2,
2919 VALUE = 3
2921 published struct TimeIncrement {
2922 any MajorTimeInterval;
2923 any MinorTimeInterval;
2924 any TimeResolution;
2926 interface XAxis {
2927 interface ::com::sun::star::uno::XInterface;
2928 ::com::sun::star::beans::XPropertySet getAxisTitle();
2929 ::com::sun::star::beans::XPropertySet getMajorGrid();
2930 ::com::sun::star::beans::XPropertySet getMinorGrid();
2933 module table {
2934 published struct BorderLine {
2935 ::com::sun::star::util::Color Color;
2936 short InnerLineWidth;
2937 short OuterLineWidth;
2938 short LineDistance;
2940 published struct BorderLine2: ::com::sun::star::table::BorderLine {
2941 short LineStyle;
2942 unsigned long LineWidth;
2944 published enum ShadowLocation {
2945 NONE = 0,
2946 TOP_LEFT = 1,
2947 TOP_RIGHT = 2,
2948 BOTTOM_LEFT = 3,
2949 BOTTOM_RIGHT = 4
2951 published struct ShadowFormat {
2952 ::com::sun::star::table::ShadowLocation Location;
2953 short ShadowWidth;
2954 boolean IsTransparent;
2955 ::com::sun::star::util::Color Color;
2958 module style {
2959 published service CharacterProperties {
2960 [property] string CharFontName;
2961 [property] string CharFontStyleName;
2962 [property] short CharFontFamily;
2963 [property] short CharFontCharSet;
2964 [property] short CharFontPitch;
2965 [property] ::com::sun::star::util::Color CharColor;
2966 [property, optional] short CharEscapement;
2967 [property] float CharHeight;
2968 [property] short CharUnderline;
2969 [property] float CharWeight;
2970 [property] ::com::sun::star::awt::FontSlant CharPosture;
2971 [property, optional] boolean CharAutoKerning;
2972 [property, optional] ::com::sun::star::util::Color CharBackColor;
2973 [property, optional] long CharShadingValue;
2974 [property, optional] boolean CharBackTransparent;
2975 [property, optional] short CharCaseMap;
2976 [property, optional] boolean CharCrossedOut;
2977 [property, optional] boolean CharFlash;
2978 [property, optional] short CharStrikeout;
2979 [property, optional] boolean CharWordMode;
2980 [property, optional] short CharKerning;
2981 [property] ::com::sun::star::lang::Locale CharLocale;
2982 [property, optional] boolean CharKeepTogether;
2983 [property, optional] boolean CharNoLineBreak;
2984 [property, optional] boolean CharShadowed;
2985 [property, optional] short CharFontType;
2986 [property, optional] string CharStyleName;
2987 [property, optional] boolean CharContoured;
2988 [property, optional] boolean CharCombineIsOn;
2989 [property, optional] string CharCombinePrefix;
2990 [property, optional] string CharCombineSuffix;
2991 [property, optional] short CharEmphasis;
2992 [property, optional] short CharRelief;
2993 [property, optional] string RubyText;
2994 [property, optional] short RubyAdjust;
2995 [property, optional] string RubyCharStyleName;
2996 [property, optional] boolean RubyIsAbove;
2997 [property, optional] short CharRotation;
2998 [property, optional] boolean CharRotationIsFitToLine;
2999 [property, optional] short CharScaleWidth;
3000 [property, optional] string HyperLinkURL;
3001 [property, optional] string HyperLinkTarget;
3002 [property, optional] string HyperLinkName;
3003 [property, optional] string VisitedCharStyleName;
3004 [property, optional] string UnvisitedCharStyleName;
3005 [property, optional] byte CharEscapementHeight;
3006 [property, optional] boolean CharNoHyphenation;
3007 [property] ::com::sun::star::util::Color CharUnderlineColor;
3008 [property] boolean CharUnderlineHasColor;
3009 [property, optional] sequence< string > CharStyleNames;
3010 [property, optional] boolean CharHidden;
3011 [property, optional] ::com::sun::star::container::XNameContainer TextUserDefinedAttributes;
3012 [property, optional] ::com::sun::star::table::BorderLine2 CharLeftBorder;
3013 [property, optional] ::com::sun::star::table::BorderLine2 CharRightBorder;
3014 [property, optional] ::com::sun::star::table::BorderLine2 CharTopBorder;
3015 [property, optional] ::com::sun::star::table::BorderLine2 CharBottomBorder;
3016 [property, optional] long CharBorderDistance;
3017 [property, optional] long CharLeftBorderDistance;
3018 [property, optional] long CharRightBorderDistance;
3019 [property, optional] long CharTopBorderDistance;
3020 [property, optional] long CharBottomBorderDistance;
3021 [property, optional] ::com::sun::star::table::ShadowFormat CharShadowFormat;
3022 [property, optional] ::com::sun::star::util::Color CharHighlight;
3023 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > CharInteropGrabBag;
3026 module chart {
3027 published service ChartAxis {
3028 service ::com::sun::star::drawing::LineProperties;
3029 service ::com::sun::star::style::CharacterProperties;
3030 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
3031 interface ::com::sun::star::beans::XPropertySet;
3032 [optional] interface ::com::sun::star::chart::XAxis;
3033 [property, optional] double Max;
3034 [property, optional] double Min;
3035 [property, optional] double StepMain;
3036 [property, optional] long StepHelpCount;
3037 /** @deprecated */ [property, optional] double StepHelp;
3038 [property, optional] boolean AutoMax;
3039 [property, optional] boolean AutoMin;
3040 [property, optional] boolean AutoStepMain;
3041 [property, optional] boolean AutoStepHelp;
3042 [property, optional] boolean Logarithmic;
3043 [property, optional] long AxisType;
3044 [property, maybevoid, optional] ::com::sun::star::chart::TimeIncrement TimeIncrement;
3045 [property, optional] boolean ReverseDirection;
3046 [property, optional] ::com::sun::star::chart::ChartAxisPosition CrossoverPosition;
3047 [property, optional] double CrossoverValue;
3048 [property, optional] double Origin;
3049 [property, optional] boolean AutoOrigin;
3050 [property] long Marks;
3051 [property] long HelpMarks;
3052 [property, optional] ::com::sun::star::chart::ChartAxisMarkPosition MarkPosition;
3053 [property] boolean DisplayLabels;
3054 [property] long NumberFormat;
3055 [property, optional] boolean LinkNumberFormatToSource;
3056 [property, optional] ::com::sun::star::chart::ChartAxisLabelPosition LabelPosition;
3057 [property] long TextRotation;
3058 [property] ::com::sun::star::chart::ChartAxisArrangeOrderType ArrangeOrder;
3059 [property] boolean TextBreak;
3060 [property] boolean TextCanOverlap;
3061 [property] long Overlap;
3062 [property] long GapWidth;
3064 published constants ChartAxisAssign {
3065 const long PRIMARY_Y = 2;
3066 const long SECONDARY_Y = 4;
3068 published constants ChartAxisMarks {
3069 const long INNER = 1;
3070 const long NONE = 0;
3071 const long OUTER = 2;
3073 published constants ChartAxisType {
3074 const long AUTOMATIC = 0;
3075 const long CATEGORY = 1;
3076 const long DATE = 2;
3078 published interface XChartDataChangeEventListener;
3079 published interface XChartData {
3080 interface ::com::sun::star::uno::XInterface;
3081 void addChartDataChangeEventListener([in] ::com::sun::star::chart::XChartDataChangeEventListener aListener);
3082 void removeChartDataChangeEventListener([in] ::com::sun::star::chart::XChartDataChangeEventListener aListener);
3083 double getNotANumber();
3084 boolean isNotANumber([in] double nNumber);
3086 published service ChartData {
3087 interface ::com::sun::star::chart::XChartData;
3089 published interface XChartDataArray {
3090 interface ::com::sun::star::chart::XChartData;
3091 sequence< sequence< double > > getData();
3092 void setData([in] sequence< sequence< double > > aData);
3093 sequence< string > getRowDescriptions();
3094 void setRowDescriptions([in] sequence< string > aRowDescriptions);
3095 sequence< string > getColumnDescriptions();
3096 void setColumnDescriptions([in] sequence< string > aColumnDescriptions);
3098 published service ChartDataArray {
3099 service ::com::sun::star::chart::ChartData;
3100 interface ::com::sun::star::chart::XChartDataArray;
3102 published constants ChartDataCaption {
3103 /** @deprecated */ const long FORMAT = 8;
3104 const long NONE = 0;
3105 const long PERCENT = 2;
3106 const long SYMBOL = 16;
3107 const long TEXT = 4;
3108 const long VALUE = 1;
3110 published enum ChartDataChangeType {
3111 ALL = 0,
3112 DATA_RANGE = 1,
3113 COLUMN_INSERTED = 2,
3114 ROW_INSERTED = 3,
3115 COLUMN_DELETED = 4,
3116 ROW_DELETED = 5
3118 published struct ChartDataChangeEvent: ::com::sun::star::lang::EventObject {
3119 ::com::sun::star::chart::ChartDataChangeType Type;
3120 short StartColumn;
3121 short EndColumn;
3122 short StartRow;
3123 short EndRow;
3125 /** @deprecated */ published struct ChartDataValue {
3126 double Value;
3127 double HighError;
3128 double LowError;
3130 /** @deprecated */ published typedef sequence< ::com::sun::star::chart::ChartDataValue > ChartDataPoint;
3131 published service ChartDataPointProperties {
3132 service ::com::sun::star::drawing::LineProperties;
3133 service ::com::sun::star::style::CharacterProperties;
3134 [optional] service ::com::sun::star::drawing::FillProperties;
3135 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
3136 [optional] service ::com::sun::star::chart::Chart3DBarProperties;
3137 interface ::com::sun::star::beans::XPropertySet;
3138 [property] long DataCaption;
3139 [property, optional] string LabelSeparator;
3140 [property, optional] long NumberFormat;
3141 [property, optional] long PercentageNumberFormat;
3142 [property, optional] long LabelPlacement;
3143 [property, optional] long SymbolType;
3144 [property, optional] string SymbolBitmapURL;
3145 [property, optional] long SegmentOffset;
3146 [property, optional] boolean TextWordWrap;
3148 /** @deprecated */ published struct ChartDataRow {
3149 string Name;
3150 sequence< sequence< ::com::sun::star::chart::ChartDataValue > > Points;
3152 published service ChartDataRowProperties {
3153 service ::com::sun::star::chart::ChartDataPointProperties;
3154 [optional] service ::com::sun::star::chart::ChartStatistics;
3155 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
3156 interface ::com::sun::star::beans::XPropertySet;
3157 [property] long Axis;
3158 [property, optional, readonly] ::com::sun::star::beans::XPropertySet DataRegressionProperties;
3159 [property, optional, readonly] ::com::sun::star::beans::XPropertySet DataErrorProperties;
3160 [property, optional, readonly] ::com::sun::star::beans::XPropertySet DataMeanValueProperties;
3163 module frame {
3164 published interface XController;
3165 published interface XModel {
3166 interface ::com::sun::star::lang::XComponent;
3167 boolean attachResource([in] string URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments);
3168 string getURL();
3169 sequence< ::com::sun::star::beans::PropertyValue > getArgs();
3170 void connectController([in] ::com::sun::star::frame::XController Controller);
3171 void disconnectController([in] ::com::sun::star::frame::XController Controller);
3172 void lockControllers();
3173 void unlockControllers();
3174 boolean hasControllersLocked();
3175 ::com::sun::star::frame::XController getCurrentController();
3176 void setCurrentController([in] ::com::sun::star::frame::XController Controller) raises (::com::sun::star::container::NoSuchElementException);
3177 ::com::sun::star::uno::XInterface getCurrentSelection();
3180 module chart {
3181 published interface XChartDocument {
3182 interface ::com::sun::star::frame::XModel;
3183 ::com::sun::star::drawing::XShape getTitle();
3184 ::com::sun::star::drawing::XShape getSubTitle();
3185 ::com::sun::star::drawing::XShape getLegend();
3186 ::com::sun::star::beans::XPropertySet getArea();
3187 ::com::sun::star::chart::XDiagram getDiagram();
3188 void setDiagram([in] ::com::sun::star::chart::XDiagram xDiagram);
3189 ::com::sun::star::chart::XChartData getData();
3190 void attachData([in] ::com::sun::star::chart::XChartData xData);
3193 module drawing {
3194 published interface XDrawPage;
3195 /** @deprecated */ published interface XDrawPageSupplier {
3196 interface ::com::sun::star::uno::XInterface;
3197 ::com::sun::star::drawing::XDrawPage getDrawPage();
3200 module chart {
3201 published service ChartDocument {
3202 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
3203 interface ::com::sun::star::chart::XChartDocument;
3204 interface ::com::sun::star::beans::XPropertySet;
3205 [optional] interface ::com::sun::star::drawing::XDrawPageSupplier;
3206 [property] boolean HasMainTitle;
3207 [property] boolean HasSubTitle;
3208 [property] boolean HasLegend;
3210 published service ChartGrid {
3211 service ::com::sun::star::drawing::LineProperties;
3212 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
3213 interface ::com::sun::star::beans::XPropertySet;
3215 published enum ChartLegendPosition {
3216 NONE = 0,
3217 LEFT = 1,
3218 TOP = 2,
3219 RIGHT = 3,
3220 BOTTOM = 4
3223 module drawing {
3224 published struct HomogenMatrixLine3 {
3225 double Column1;
3226 double Column2;
3227 double Column3;
3229 published struct HomogenMatrix3 {
3230 ::com::sun::star::drawing::HomogenMatrixLine3 Line1;
3231 ::com::sun::star::drawing::HomogenMatrixLine3 Line2;
3232 ::com::sun::star::drawing::HomogenMatrixLine3 Line3;
3234 published interface XGluePointsSupplier {
3235 interface ::com::sun::star::uno::XInterface;
3236 ::com::sun::star::container::XIndexContainer getGluePoints();
3239 module style {
3240 published interface XStyle;
3242 module drawing {
3243 published service Shape {
3244 interface ::com::sun::star::beans::XPropertySet;
3245 interface ::com::sun::star::drawing::XShape;
3246 interface ::com::sun::star::lang::XComponent;
3247 interface ::com::sun::star::drawing::XShapeDescriptor;
3248 [optional] interface ::com::sun::star::drawing::XGluePointsSupplier;
3249 [optional] interface ::com::sun::star::beans::XTolerantMultiPropertySet;
3250 [property, optional] long ZOrder;
3251 [property, optional] short LayerID;
3252 [property, optional] string LayerName;
3253 [property, optional] boolean Visible;
3254 [property, optional] boolean Printable;
3255 [property, optional] boolean MoveProtect;
3256 [property, optional] string Name;
3257 [property, optional] boolean SizeProtect;
3258 [property, optional] ::com::sun::star::style::XStyle Style;
3259 [property, optional] ::com::sun::star::drawing::HomogenMatrix3 Transformation;
3260 [property, optional] ::com::sun::star::container::XNameContainer ShapeUserDefinedAttributes;
3261 [property, optional] long NavigationOrder;
3262 [property, optional] string Hyperlink;
3263 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > InteropGrabBag;
3264 [property, optional] short RelativeHeight;
3265 [property, optional] short RelativeWidth;
3266 [property, optional] short RelativeHeightRelation;
3267 [property, optional] short RelativeWidthRelation;
3270 module chart {
3271 published service ChartLegend {
3272 service ::com::sun::star::drawing::Shape;
3273 service ::com::sun::star::style::CharacterProperties;
3274 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
3275 [property, optional] boolean AutomaticPosition;
3276 [property] ::com::sun::star::chart::ChartLegendPosition Alignment;
3278 published service ChartLine {
3279 service ::com::sun::star::drawing::LineProperties;
3280 interface ::com::sun::star::beans::XPropertySet;
3282 published service ChartPieSegmentProperties {
3283 service ::com::sun::star::chart::ChartDataPointProperties;
3284 interface ::com::sun::star::beans::XPropertySet;
3285 [property] long SegmentOffset;
3287 published struct ChartSeriesAddress {
3288 string DataRangeAddress;
3289 string LabelAddress;
3290 sequence< string > DomainRangeAddresses;
3292 published constants ChartSolidType {
3293 const long CONE = 2;
3294 const long CYLINDER = 1;
3295 const long PYRAMID = 3;
3296 const long RECTANGULAR_SOLID = 0;
3298 published constants ChartSymbolType {
3299 const long AUTO = -2;
3300 const long BITMAPURL = -1;
3301 const long NONE = -3;
3302 const long SYMBOL0 = 0;
3303 const long SYMBOL1 = 1;
3304 const long SYMBOL2 = 2;
3305 const long SYMBOL3 = 3;
3306 const long SYMBOL4 = 4;
3307 const long SYMBOL5 = 5;
3308 const long SYMBOL6 = 6;
3309 const long SYMBOL7 = 7;
3311 published service ChartTableAddressSupplier {
3312 [property] string CategoriesRangeAddress;
3313 [property] sequence< ::com::sun::star::chart::ChartSeriesAddress > SeriesAddresses;
3314 [property, optional] string MainTitleAddress;
3315 [property, optional] string SubTitleAddress;
3317 published service ChartTitle {
3318 service ::com::sun::star::drawing::Shape;
3319 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
3320 [property, optional] boolean AutomaticPosition;
3321 [property] long TextRotation;
3322 [property] string String;
3324 published interface XTwoAxisXSupplier {
3325 interface ::com::sun::star::chart::XAxisXSupplier;
3326 ::com::sun::star::beans::XPropertySet getSecondaryXAxis();
3328 published service ChartTwoAxisXSupplier {
3329 service ::com::sun::star::chart::ChartAxisXSupplier;
3330 interface ::com::sun::star::chart::XTwoAxisXSupplier;
3331 [property] boolean HasSecondaryXAxis;
3332 [property] boolean HasSecondaryXAxisDescription;
3333 [property, optional] boolean HasSecondaryXAxisTitle;
3335 published constants DataLabelPlacement {
3336 const long AVOID_OVERLAP = 0;
3337 const long BOTTOM = 6;
3338 const long BOTTOM_LEFT = 5;
3339 const long BOTTOM_RIGHT = 7;
3340 const long CENTER = 1;
3341 const long INSIDE = 10;
3342 const long LEFT = 4;
3343 const long NEAR_ORIGIN = 12;
3344 const long OUTSIDE = 11;
3345 const long RIGHT = 8;
3346 const long TOP = 2;
3347 const long TOP_LEFT = 3;
3348 const long TOP_RIGHT = 9;
3350 published service DonutDiagram {
3351 service ::com::sun::star::chart::Diagram;
3353 published constants ErrorBarStyle {
3354 const long ABSOLUTE = 3;
3355 const long ERROR_MARGIN = 5;
3356 const long FROM_DATA = 7;
3357 const long NONE = 0;
3358 const long RELATIVE = 4;
3359 const long STANDARD_DEVIATION = 2;
3360 const long STANDARD_ERROR = 6;
3361 const long VARIANCE = 1;
3363 published service FilledNetDiagram {
3364 service ::com::sun::star::chart::Diagram;
3365 service ::com::sun::star::chart::ChartAxisXSupplier;
3366 service ::com::sun::star::chart::ChartAxisYSupplier;
3367 service ::com::sun::star::chart::StackableDiagram;
3369 published service LineDiagram {
3370 service ::com::sun::star::chart::Diagram;
3371 service ::com::sun::star::chart::ChartStatistics;
3372 service ::com::sun::star::chart::ChartAxisXSupplier;
3373 service ::com::sun::star::chart::ChartTwoAxisYSupplier;
3374 service ::com::sun::star::chart::ChartAxisZSupplier;
3375 service ::com::sun::star::chart::Dim3DDiagram;
3376 service ::com::sun::star::chart::StackableDiagram;
3377 [property] long SymbolType;
3378 [property, optional] ::com::sun::star::awt::Size SymbolSize;
3379 /** @deprecated */ [property, optional] string SymbolBitmapURL;
3380 [property] boolean Lines;
3381 [property] long SplineType;
3382 [property, optional] long SplineOrder;
3383 [property, optional] long SplineResolution;
3385 published constants MissingValueTreatment {
3386 const long CONTINUE = 2;
3387 const long LEAVE_GAP = 0;
3388 const long USE_ZERO = 1;
3390 published service NetDiagram {
3391 service ::com::sun::star::chart::Diagram;
3392 service ::com::sun::star::chart::StackableDiagram;
3393 service ::com::sun::star::chart::ChartAxisYSupplier;
3395 published service PieDiagram {
3396 service ::com::sun::star::chart::Diagram;
3397 service ::com::sun::star::chart::Dim3DDiagram;
3399 published interface XStatisticDisplay {
3400 interface ::com::sun::star::uno::XInterface;
3401 ::com::sun::star::beans::XPropertySet getUpBar();
3402 ::com::sun::star::beans::XPropertySet getDownBar();
3403 ::com::sun::star::beans::XPropertySet getMinMaxLine();
3405 published service StockDiagram {
3406 service ::com::sun::star::chart::ChartStatistics;
3407 service ::com::sun::star::chart::Diagram;
3408 service ::com::sun::star::chart::ChartAxisXSupplier;
3409 service ::com::sun::star::chart::ChartTwoAxisYSupplier;
3410 interface ::com::sun::star::chart::XStatisticDisplay;
3411 [property] boolean Volume;
3412 [property] boolean UpDown;
3414 published struct TimeInterval {
3415 long Number;
3416 long TimeUnit;
3418 published constants TimeUnit {
3419 const long DAY = 0;
3420 const long MONTH = 1;
3421 const long YEAR = 2;
3423 published interface XChartDataChangeEventListener {
3424 interface ::com::sun::star::lang::XEventListener;
3425 void chartDataChanged([in] ::com::sun::star::chart::ChartDataChangeEvent aEvent);
3427 published interface XComplexDescriptionAccess {
3428 interface ::com::sun::star::chart::XChartDataArray;
3429 sequence< sequence< string > > getComplexRowDescriptions();
3430 void setComplexRowDescriptions([in] sequence< sequence< string > > rRowDescriptions);
3431 sequence< sequence< string > > getComplexColumnDescriptions();
3432 void setComplexColumnDescriptions([in] sequence< sequence< string > > rColumnDescriptions);
3434 published interface XDateCategories {
3435 interface ::com::sun::star::uno::XInterface;
3436 void setDateCategories([in] sequence< double > rDates);
3437 sequence< double > getDateCategories();
3439 published service XYDiagram {
3440 service ::com::sun::star::chart::Diagram;
3441 service ::com::sun::star::chart::ChartStatistics;
3442 service ::com::sun::star::chart::ChartAxisXSupplier;
3443 service ::com::sun::star::chart::ChartTwoAxisYSupplier;
3444 service ::com::sun::star::chart::LineDiagram;
3447 module style {
3448 published service CharacterPropertiesAsian {
3449 [property] float CharHeightAsian;
3450 [property] float CharWeightAsian;
3451 [property] string CharFontNameAsian;
3452 [property] string CharFontStyleNameAsian;
3453 [property] short CharFontFamilyAsian;
3454 [property] short CharFontCharSetAsian;
3455 [property] short CharFontPitchAsian;
3456 [property] ::com::sun::star::awt::FontSlant CharPostureAsian;
3457 [property] ::com::sun::star::lang::Locale CharLocaleAsian;
3459 published service CharacterPropertiesComplex {
3460 [property] float CharHeightComplex;
3461 [property] float CharWeightComplex;
3462 [property] string CharFontNameComplex;
3463 [property] string CharFontStyleNameComplex;
3464 [property] short CharFontFamilyComplex;
3465 [property] short CharFontCharSetComplex;
3466 [property] short CharFontPitchComplex;
3467 [property] ::com::sun::star::awt::FontSlant CharPostureComplex;
3468 [property] ::com::sun::star::lang::Locale CharLocaleComplex;
3471 module util {
3472 published exception CloseVetoException: ::com::sun::star::uno::Exception {
3475 module style {
3476 published interface XStyleFamiliesSupplier {
3477 interface ::com::sun::star::uno::XInterface;
3478 ::com::sun::star::container::XNameAccess getStyleFamilies();
3481 module util {
3482 published interface XNumberFormats;
3483 published interface XNumberFormatsSupplier {
3484 interface ::com::sun::star::uno::XInterface;
3485 ::com::sun::star::beans::XPropertySet getNumberFormatSettings();
3486 ::com::sun::star::util::XNumberFormats getNumberFormats();
3489 module drawing {
3490 published enum Alignment {
3491 TOP_LEFT = 0,
3492 TOP = 1,
3493 TOP_RIGHT = 2,
3494 LEFT = 3,
3495 CENTER = 4,
3496 RIGHT = 5,
3497 BOTTOM_LEFT = 6,
3498 BOTTOM = 7,
3499 BOTTOM_RIGHT = 8
3501 published struct Direction3D {
3502 double DirectionX;
3503 double DirectionY;
3504 double DirectionZ;
3507 module style {
3508 published interface XStyle {
3509 interface ::com::sun::star::container::XNamed;
3510 boolean isUserDefined();
3511 boolean isInUse();
3512 string getParentStyle();
3513 void setParentStyle([in] string aParentStyle) raises (::com::sun::star::container::NoSuchElementException);
3515 published service Style {
3516 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
3517 interface ::com::sun::star::style::XStyle;
3518 interface ::com::sun::star::beans::XPropertySet;
3519 [optional] interface ::com::sun::star::beans::XMultiPropertySet;
3520 [optional] interface ::com::sun::star::beans::XMultiPropertyStates;
3521 [property, optional, readonly] boolean IsPhysical;
3522 [property, optional] string FollowStyle;
3523 [property, optional, readonly] string DisplayName;
3524 [property, optional] string IsAutoUpdate;
3525 [property, optional] sequence< ::com::sun::star::beans::NamedValue > ParaStyleConditions;
3526 [property, optional] boolean Hidden;
3527 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > StyleInteropGrabBag;
3529 published interface XDefaultsSupplier {
3530 interface ::com::sun::star::uno::XInterface;
3531 ::com::sun::star::beans::XPropertySet getDefaults();
3533 published enum BreakType {
3534 NONE = 0,
3535 COLUMN_BEFORE = 1,
3536 COLUMN_AFTER = 2,
3537 COLUMN_BOTH = 3,
3538 PAGE_BEFORE = 4,
3539 PAGE_AFTER = 5,
3540 PAGE_BOTH = 6
3542 published struct DropCapFormat {
3543 byte Lines;
3544 byte Count;
3545 short Distance;
3547 published enum GraphicLocation {
3548 NONE = 0,
3549 LEFT_TOP = 1,
3550 MIDDLE_TOP = 2,
3551 RIGHT_TOP = 3,
3552 LEFT_MIDDLE = 4,
3553 MIDDLE_MIDDLE = 5,
3554 RIGHT_MIDDLE = 6,
3555 LEFT_BOTTOM = 7,
3556 MIDDLE_BOTTOM = 8,
3557 RIGHT_BOTTOM = 9,
3558 AREA = 10,
3559 TILED = 11
3561 published struct LineSpacing {
3562 short Mode;
3563 short Height;
3565 published enum ParagraphAdjust {
3566 LEFT = 0,
3567 RIGHT = 1,
3568 BLOCK = 2,
3569 CENTER = 3,
3570 STRETCH = 4
3572 published enum TabAlign {
3573 LEFT = 0,
3574 CENTER = 1,
3575 RIGHT = 2,
3576 DECIMAL = 3,
3577 DEFAULT = 4
3579 published struct TabStop {
3580 long Position;
3581 ::com::sun::star::style::TabAlign Alignment;
3582 char DecimalChar;
3583 char FillChar;
3585 published service ParagraphProperties {
3586 [property] ::com::sun::star::style::ParagraphAdjust ParaAdjust;
3587 [property, optional] ::com::sun::star::style::LineSpacing ParaLineSpacing;
3588 [property, optional] ::com::sun::star::util::Color ParaBackColor;
3589 [property, optional] boolean ParaBackTransparent;
3590 [property, optional] string ParaBackGraphicURL;
3591 [property, optional] string ParaBackGraphicFilter;
3592 [property, optional] ::com::sun::star::style::GraphicLocation ParaBackGraphicLocation;
3593 [property] short ParaLastLineAdjust;
3594 [property, optional] boolean ParaExpandSingleWord;
3595 [property] long ParaLeftMargin;
3596 [property] long ParaRightMargin;
3597 [property] long ParaTopMargin;
3598 [property] long ParaBottomMargin;
3599 [property, optional] boolean ParaContextMargin;
3600 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > ParaInteropGrabBag;
3601 [property, optional] boolean ParaLineNumberCount;
3602 [property, optional] long ParaLineNumberStartValue;
3603 [property, optional] string PageDescName;
3604 [property, optional] short PageNumberOffset;
3605 [property, optional] boolean ParaRegisterModeActive;
3606 [property, optional] sequence< ::com::sun::star::style::TabStop > ParaTabStops;
3607 [property, optional] string ParaStyleName;
3608 [property, maybevoid, optional, readonly] string PageStyleName;
3609 [property, optional] ::com::sun::star::style::DropCapFormat DropCapFormat;
3610 [property, optional] boolean DropCapWholeWord;
3611 [property, optional] boolean ParaKeepTogether;
3612 [property, optional] boolean ParaSplit;
3613 [property, optional] short NumberingLevel;
3614 [property, optional] ::com::sun::star::container::XIndexReplace NumberingRules;
3615 [property, optional] short NumberingStartValue;
3616 [property, optional] boolean ParaIsNumberingRestart;
3617 [property, optional] string NumberingStyleName;
3618 [property, optional] byte ParaOrphans;
3619 [property, optional] byte ParaWidows;
3620 [property, optional] ::com::sun::star::table::ShadowFormat ParaShadowFormat;
3621 [property, optional] ::com::sun::star::table::BorderLine LeftBorder;
3622 [property, optional] ::com::sun::star::table::BorderLine RightBorder;
3623 [property, optional] ::com::sun::star::table::BorderLine TopBorder;
3624 [property, optional] ::com::sun::star::table::BorderLine BottomBorder;
3625 [property, optional] long BorderDistance;
3626 [property, optional] long LeftBorderDistance;
3627 [property, optional] long RightBorderDistance;
3628 [property, optional] long TopBorderDistance;
3629 [property, optional] long BottomBorderDistance;
3630 [property, optional] ::com::sun::star::style::BreakType BreakType;
3631 [property, optional] string DropCapCharStyleName;
3632 [property, optional] long ParaFirstLineIndent;
3633 [property, optional] boolean ParaIsAutoFirstLineIndent;
3634 [property] boolean ParaIsHyphenation;
3635 [property, optional] short ParaHyphenationMaxHyphens;
3636 [property, optional] short ParaHyphenationMaxLeadingChars;
3637 [property, optional] short ParaHyphenationMaxTrailingChars;
3638 [property, optional] short ParaVertAlignment;
3639 [property, optional] ::com::sun::star::container::XNameContainer ParaUserDefinedAttributes;
3640 [property, maybevoid, optional] boolean NumberingIsNumber;
3641 [property, maybevoid, optional] boolean ParaIsConnectBorder;
3642 [property, optional] string ListId;
3643 [property, optional] short OutlineLevel;
3646 module util {
3647 published interface XModifyListener;
3648 published interface XModifyBroadcaster {
3649 interface ::com::sun::star::uno::XInterface;
3650 void addModifyListener([in] ::com::sun::star::util::XModifyListener aListener);
3651 void removeModifyListener([in] ::com::sun::star::util::XModifyListener aListener);
3654 module sdbc {
3655 published exception SQLException: ::com::sun::star::uno::Exception {
3656 string SQLState;
3657 long ErrorCode;
3658 any NextException;
3661 module util {
3662 published struct DateTime {
3663 unsigned long NanoSeconds;
3664 unsigned short Seconds;
3665 unsigned short Minutes;
3666 unsigned short Hours;
3667 unsigned short Day;
3668 unsigned short Month;
3669 short Year;
3670 boolean IsUTC;
3673 module sdbc {
3674 published interface XArray;
3675 published interface XBlob;
3676 published interface XClob;
3677 published interface XRef;
3678 published interface XParameters {
3679 interface ::com::sun::star::uno::XInterface;
3680 void setNull([in] long parameterIndex, [in] long sqlType) raises (::com::sun::star::sdbc::SQLException);
3681 void setObjectNull([in] long parameterIndex, [in] long sqlType, [in] string typeName) raises (::com::sun::star::sdbc::SQLException);
3682 void setBoolean([in] long parameterIndex, [in] boolean x) raises (::com::sun::star::sdbc::SQLException);
3683 void setByte([in] long parameterIndex, [in] byte x) raises (::com::sun::star::sdbc::SQLException);
3684 void setShort([in] long parameterIndex, [in] short x) raises (::com::sun::star::sdbc::SQLException);
3685 void setInt([in] long parameterIndex, [in] long x) raises (::com::sun::star::sdbc::SQLException);
3686 void setLong([in] long parameterIndex, [in] hyper x) raises (::com::sun::star::sdbc::SQLException);
3687 void setFloat([in] long parameterIndex, [in] float x) raises (::com::sun::star::sdbc::SQLException);
3688 void setDouble([in] long parameterIndex, [in] double x) raises (::com::sun::star::sdbc::SQLException);
3689 void setString([in] long parameterIndex, [in] string x) raises (::com::sun::star::sdbc::SQLException);
3690 void setBytes([in] long parameterIndex, [in] sequence< byte > x) raises (::com::sun::star::sdbc::SQLException);
3691 void setDate([in] long parameterIndex, [in] ::com::sun::star::util::Date x) raises (::com::sun::star::sdbc::SQLException);
3692 void setTime([in] long parameterIndex, [in] ::com::sun::star::util::Time x) raises (::com::sun::star::sdbc::SQLException);
3693 void setTimestamp([in] long parameterIndex, [in] ::com::sun::star::util::DateTime x) raises (::com::sun::star::sdbc::SQLException);
3694 void setBinaryStream([in] long parameterIndex, [in] ::com::sun::star::io::XInputStream x, [in] long length) raises (::com::sun::star::sdbc::SQLException);
3695 void setCharacterStream([in] long parameterIndex, [in] ::com::sun::star::io::XInputStream x, [in] long length) raises (::com::sun::star::sdbc::SQLException);
3696 void setObject([in] long parameterIndex, [in] any x) raises (::com::sun::star::sdbc::SQLException);
3697 void setObjectWithInfo([in] long parameterIndex, [in] any x, [in] long targetSqlType, [in] long scale) raises (::com::sun::star::sdbc::SQLException);
3698 void setRef([in] long parameterIndex, [in] ::com::sun::star::sdbc::XRef x) raises (::com::sun::star::sdbc::SQLException);
3699 void setBlob([in] long parameterIndex, [in] ::com::sun::star::sdbc::XBlob x) raises (::com::sun::star::sdbc::SQLException);
3700 void setClob([in] long parameterIndex, [in] ::com::sun::star::sdbc::XClob x) raises (::com::sun::star::sdbc::SQLException);
3701 void setArray([in] long parameterIndex, [in] ::com::sun::star::sdbc::XArray x) raises (::com::sun::star::sdbc::SQLException);
3702 void clearParameters() raises (::com::sun::star::sdbc::SQLException);
3704 published interface XResultSet {
3705 interface ::com::sun::star::uno::XInterface;
3706 boolean next() raises (::com::sun::star::sdbc::SQLException);
3707 boolean isBeforeFirst() raises (::com::sun::star::sdbc::SQLException);
3708 boolean isAfterLast() raises (::com::sun::star::sdbc::SQLException);
3709 boolean isFirst() raises (::com::sun::star::sdbc::SQLException);
3710 boolean isLast() raises (::com::sun::star::sdbc::SQLException);
3711 void beforeFirst() raises (::com::sun::star::sdbc::SQLException);
3712 void afterLast() raises (::com::sun::star::sdbc::SQLException);
3713 boolean first() raises (::com::sun::star::sdbc::SQLException);
3714 boolean last() raises (::com::sun::star::sdbc::SQLException);
3715 long getRow() raises (::com::sun::star::sdbc::SQLException);
3716 boolean absolute([in] long row) raises (::com::sun::star::sdbc::SQLException);
3717 boolean relative([in] long rows) raises (::com::sun::star::sdbc::SQLException);
3718 boolean previous() raises (::com::sun::star::sdbc::SQLException);
3719 void refreshRow() raises (::com::sun::star::sdbc::SQLException);
3720 boolean rowUpdated() raises (::com::sun::star::sdbc::SQLException);
3721 boolean rowInserted() raises (::com::sun::star::sdbc::SQLException);
3722 boolean rowDeleted() raises (::com::sun::star::sdbc::SQLException);
3723 ::com::sun::star::uno::XInterface getStatement() raises (::com::sun::star::sdbc::SQLException);
3725 published interface XRowSetListener;
3726 published interface XRowSet {
3727 interface ::com::sun::star::sdbc::XResultSet;
3728 void execute() raises (::com::sun::star::sdbc::SQLException);
3729 void addRowSetListener([in] ::com::sun::star::sdbc::XRowSetListener listener);
3730 void removeRowSetListener([in] ::com::sun::star::sdbc::XRowSetListener listener);
3733 module view {
3734 published interface XSelectionChangeListener {
3735 interface ::com::sun::star::lang::XEventListener;
3736 void selectionChanged([in] ::com::sun::star::lang::EventObject aEvent);
3739 module configuration {
3740 published service HierarchyElement {
3741 interface ::com::sun::star::container::XHierarchicalName;
3742 interface ::com::sun::star::container::XNamed;
3743 [optional] interface ::com::sun::star::beans::XProperty;
3744 [optional] interface ::com::sun::star::beans::XPropertyWithState;
3745 [optional] interface ::com::sun::star::container::XChild;
3748 module util {
3749 published interface XChangesListener;
3750 published interface XChangesNotifier {
3751 interface ::com::sun::star::uno::XInterface;
3752 void addChangesListener([in] ::com::sun::star::util::XChangesListener aListener);
3753 void removeChangesListener([in] ::com::sun::star::util::XChangesListener aListener);
3756 module configuration {
3757 published service AccessRootElement {
3758 service ::com::sun::star::configuration::HierarchyElement;
3759 interface ::com::sun::star::lang::XComponent;
3760 interface ::com::sun::star::util::XChangesNotifier;
3761 [optional] interface ::com::sun::star::lang::XLocalizable;
3763 published service AdministrationProvider {
3764 interface ::com::sun::star::lang::XMultiServiceFactory;
3765 interface ::com::sun::star::lang::XComponent;
3767 published exception CannotLoadConfigurationException: ::com::sun::star::uno::Exception {
3769 published service HierarchyAccess {
3770 interface ::com::sun::star::container::XNameAccess;
3771 interface ::com::sun::star::container::XHierarchicalNameAccess;
3772 interface ::com::sun::star::container::XContainer;
3773 interface ::com::sun::star::beans::XExactName;
3774 [optional] interface ::com::sun::star::beans::XPropertySetInfo;
3775 [optional] interface ::com::sun::star::beans::XPropertyState;
3776 [optional] interface ::com::sun::star::beans::XMultiPropertyStates;
3778 published service PropertyHierarchy {
3779 interface ::com::sun::star::beans::XPropertySet;
3780 interface ::com::sun::star::beans::XMultiPropertySet;
3781 interface ::com::sun::star::beans::XHierarchicalPropertySet;
3782 interface ::com::sun::star::beans::XMultiHierarchicalPropertySet;
3784 published service GroupAccess {
3785 service ::com::sun::star::configuration::HierarchyAccess;
3786 service ::com::sun::star::configuration::PropertyHierarchy;
3787 [optional] interface ::com::sun::star::beans::XPropertyState;
3788 [optional] interface ::com::sun::star::beans::XMultiPropertyStates;
3790 published service GroupElement {
3791 service ::com::sun::star::configuration::HierarchyElement;
3792 interface ::com::sun::star::container::XChild;
3794 published interface XTemplateContainer {
3795 interface ::com::sun::star::uno::XInterface;
3796 string getElementTemplateName();
3799 module util {
3800 published interface XStringEscape {
3801 interface ::com::sun::star::uno::XInterface;
3802 string escapeString([in] string aString) raises (::com::sun::star::lang::IllegalArgumentException);
3803 string unescapeString([in] string aEscapedString) raises (::com::sun::star::lang::IllegalArgumentException);
3806 module configuration {
3807 published service SimpleSetAccess {
3808 interface ::com::sun::star::container::XNameAccess;
3809 [optional] interface ::com::sun::star::configuration::XTemplateContainer;
3810 [optional] interface ::com::sun::star::util::XStringEscape;
3811 [optional] interface ::com::sun::star::container::XContainer;
3813 published service SetAccess {
3814 service ::com::sun::star::configuration::HierarchyAccess;
3815 service ::com::sun::star::configuration::SimpleSetAccess;
3816 interface ::com::sun::star::container::XContainer;
3818 published interface XTemplateInstance {
3819 interface ::com::sun::star::uno::XInterface;
3820 string getTemplateName();
3822 published service SetElement {
3823 service ::com::sun::star::configuration::HierarchyElement;
3824 interface ::com::sun::star::container::XChild;
3825 interface ::com::sun::star::lang::XComponent;
3826 interface ::com::sun::star::configuration::XTemplateInstance;
3828 published service ConfigurationAccess {
3829 service ::com::sun::star::configuration::HierarchyAccess;
3830 service ::com::sun::star::configuration::HierarchyElement;
3831 [optional] service ::com::sun::star::configuration::SetAccess;
3832 [optional] service ::com::sun::star::configuration::GroupAccess;
3833 [optional] service ::com::sun::star::configuration::AccessRootElement;
3834 [optional] service ::com::sun::star::configuration::SetElement;
3835 [optional] service ::com::sun::star::configuration::GroupElement;
3837 /** @deprecated */ published service ConfigurationProvider {
3838 interface ::com::sun::star::lang::XMultiServiceFactory;
3839 interface ::com::sun::star::lang::XComponent;
3842 module util {
3843 published interface XFlushListener;
3844 published interface XFlushable {
3845 interface ::com::sun::star::uno::XInterface;
3846 void flush();
3847 void addFlushListener([in] ::com::sun::star::util::XFlushListener l);
3848 void removeFlushListener([in] ::com::sun::star::util::XFlushListener l);
3851 module configuration {
3852 published service ConfigurationRegistry {
3853 interface ::com::sun::star::registry::XSimpleRegistry;
3854 interface ::com::sun::star::util::XFlushable;
3856 published service GroupUpdate {
3857 service ::com::sun::star::configuration::GroupAccess;
3858 interface ::com::sun::star::container::XNameReplace;
3860 published service SimpleSetUpdate {
3861 service ::com::sun::star::configuration::SimpleSetAccess;
3862 interface ::com::sun::star::container::XNameContainer;
3863 [optional] interface ::com::sun::star::lang::XSingleServiceFactory;
3864 [optional] interface ::com::sun::star::lang::XMultiServiceFactory;
3866 published service SetUpdate {
3867 service ::com::sun::star::configuration::SetAccess;
3868 service ::com::sun::star::configuration::SimpleSetUpdate;
3871 module util {
3872 published struct ElementChange {
3873 any Accessor;
3874 any Element;
3875 any ReplacedElement;
3877 published typedef sequence< ::com::sun::star::util::ElementChange > ChangesSet;
3878 published interface XChangesBatch {
3879 interface ::com::sun::star::uno::XInterface;
3880 void commitChanges() raises (::com::sun::star::lang::WrappedTargetException);
3881 boolean hasPendingChanges();
3882 ::com::sun::star::util::ChangesSet getPendingChanges();
3885 module configuration {
3886 published service UpdateRootElement {
3887 service ::com::sun::star::configuration::AccessRootElement;
3888 interface ::com::sun::star::util::XChangesBatch;
3890 published service ConfigurationUpdateAccess {
3891 service ::com::sun::star::configuration::ConfigurationAccess;
3892 [optional] service ::com::sun::star::configuration::SetUpdate;
3893 [optional] service ::com::sun::star::configuration::GroupUpdate;
3894 [optional] service ::com::sun::star::configuration::UpdateRootElement;
3896 published exception CorruptedConfigurationException: ::com::sun::star::uno::RuntimeException {
3897 string Details;
3899 published exception CorruptedUIConfigurationException: ::com::sun::star::configuration::CorruptedConfigurationException {
3902 module util {
3903 published interface XRefreshListener;
3904 published interface XRefreshable {
3905 interface ::com::sun::star::uno::XInterface;
3906 void refresh();
3907 void addRefreshListener([in] ::com::sun::star::util::XRefreshListener l);
3908 void removeRefreshListener([in] ::com::sun::star::util::XRefreshListener l);
3911 module configuration {
3912 published service DefaultProvider {
3913 service ::com::sun::star::configuration::ConfigurationProvider;
3914 [optional] interface ::com::sun::star::util::XRefreshable;
3915 [optional] interface ::com::sun::star::util::XFlushable;
3916 [optional] interface ::com::sun::star::lang::XLocalizable;
3917 [property, optional] boolean EnableAsync;
3919 published exception InstallationIncompleteException: ::com::sun::star::configuration::CannotLoadConfigurationException {
3921 published exception InvalidBootstrapFileException: ::com::sun::star::configuration::CannotLoadConfigurationException {
3922 string BootstrapFileURL;
3924 published exception MissingBootstrapFileException: ::com::sun::star::configuration::CannotLoadConfigurationException {
3925 string BootstrapFileURL;
3927 module backend {
3928 published exception BackendSetupException: ::com::sun::star::configuration::CannotLoadConfigurationException {
3929 any BackendException;
3931 published exception AuthenticationFailedException: ::com::sun::star::configuration::backend::BackendSetupException {
3933 published exception BackendAccessException: ::com::sun::star::lang::WrappedTargetException {
3935 published interface XLayer;
3936 published interface XUpdateHandler;
3937 published interface XBackend {
3938 interface ::com::sun::star::uno::XInterface;
3939 sequence< ::com::sun::star::configuration::backend::XLayer > listOwnLayers([in] string aComponent) raises (::com::sun::star::configuration::backend::BackendAccessException, ::com::sun::star::lang::IllegalArgumentException);
3940 ::com::sun::star::configuration::backend::XUpdateHandler getOwnUpdateHandler([in] string aComponent) raises (::com::sun::star::configuration::backend::BackendAccessException, ::com::sun::star::lang::NoSupportException, ::com::sun::star::lang::IllegalArgumentException);
3941 sequence< ::com::sun::star::configuration::backend::XLayer > listLayers([in] string aComponent, [in] string aEntity) raises (::com::sun::star::configuration::backend::BackendAccessException, ::com::sun::star::lang::IllegalArgumentException);
3942 ::com::sun::star::configuration::backend::XUpdateHandler getUpdateHandler([in] string aComponent, [in] string aEntity) raises (::com::sun::star::configuration::backend::BackendAccessException, ::com::sun::star::lang::NoSupportException, ::com::sun::star::lang::IllegalArgumentException);
3944 published interface XBackendEntities {
3945 interface ::com::sun::star::uno::XInterface;
3946 string getOwnerEntity();
3947 string getAdminEntity();
3948 boolean supportsEntity([in] string aEntity) raises (::com::sun::star::configuration::backend::BackendAccessException);
3949 boolean isEqualEntity([in] string aEntity, [in] string aOtherEntity) raises (::com::sun::star::configuration::backend::BackendAccessException, ::com::sun::star::lang::IllegalArgumentException);
3951 published interface XSchema;
3952 published interface XSchemaSupplier {
3953 interface ::com::sun::star::uno::XInterface;
3954 ::com::sun::star::configuration::backend::XSchema getComponentSchema([in] string aComponent) raises (::com::sun::star::configuration::backend::BackendAccessException, ::com::sun::star::lang::IllegalArgumentException);
3956 published service Backend {
3957 interface ::com::sun::star::configuration::backend::XSchemaSupplier;
3958 interface ::com::sun::star::configuration::backend::XBackend;
3959 [optional] interface ::com::sun::star::configuration::backend::XBackendEntities;
3961 published service BackendAdapter {
3962 service ::com::sun::star::configuration::backend::Backend;
3963 interface ::com::sun::star::configuration::backend::XBackendEntities;
3964 [optional] interface ::com::sun::star::lang::XInitialization;
3966 published exception CannotConnectException: ::com::sun::star::configuration::backend::BackendSetupException {
3968 published exception ConnectionLostException: ::com::sun::star::configuration::backend::BackendAccessException {
3970 published exception MalformedDataException: ::com::sun::star::uno::Exception {
3971 any ErrorDetails;
3973 published interface XLayer;
3974 published interface XLayerImporter {
3975 interface ::com::sun::star::uno::XInterface;
3976 ::com::sun::star::configuration::backend::XBackend getTargetBackend();
3977 void setTargetBackend([in] ::com::sun::star::configuration::backend::XBackend aBackend) raises (::com::sun::star::lang::NullPointerException);
3978 void importLayer([in] ::com::sun::star::configuration::backend::XLayer aLayer) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::NullPointerException, ::com::sun::star::lang::WrappedTargetException);
3979 void importLayerForEntity([in] ::com::sun::star::configuration::backend::XLayer aLayer, [in] string aEntity) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::NullPointerException, ::com::sun::star::lang::WrappedTargetException);
3981 published service Importer {
3982 interface ::com::sun::star::configuration::backend::XLayerImporter;
3983 [optional] interface ::com::sun::star::lang::XInitialization;
3985 published service CopyImporter {
3986 service ::com::sun::star::configuration::backend::Importer;
3987 interface ::com::sun::star::lang::XInitialization;
3991 module task {
3992 published interface XJob {
3993 interface ::com::sun::star::uno::XInterface;
3994 any execute([in] sequence< ::com::sun::star::beans::NamedValue > Arguments) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::Exception);
3997 module configuration {
3998 module backend {
3999 published service DataImporter {
4000 interface ::com::sun::star::task::XJob;
4002 published service HierarchyBrowser {
4003 interface ::com::sun::star::task::XJob;
4005 published exception InsufficientAccessRightsException: ::com::sun::star::configuration::backend::BackendAccessException {
4007 published service InteractionHandler {
4008 interface ::com::sun::star::task::XInteractionHandler;
4009 interface ::com::sun::star::lang::XInitialization;
4011 published exception InvalidAuthenticationMechanismException: ::com::sun::star::configuration::backend::BackendSetupException {
4013 published interface XLayerHandler;
4014 published interface XLayer {
4015 interface ::com::sun::star::uno::XInterface;
4016 void readData([in] ::com::sun::star::configuration::backend::XLayerHandler aHandler) raises (::com::sun::star::lang::NullPointerException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::configuration::backend::MalformedDataException);
4018 published interface XLayerHandler;
4019 published interface XCompositeLayer {
4020 interface ::com::sun::star::configuration::backend::XLayer;
4021 sequence< string > listSubLayerIds() raises (::com::sun::star::lang::WrappedTargetException);
4022 void readSubLayerData([in] ::com::sun::star::configuration::backend::XLayerHandler aHandler, [in] string aSubLayerId) raises (::com::sun::star::lang::NullPointerException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::configuration::backend::MalformedDataException);
4026 module util {
4027 published interface XTimeStamped {
4028 interface ::com::sun::star::uno::XInterface;
4029 string getTimestamp();
4032 module configuration {
4033 module backend {
4034 published service Layer {
4035 interface ::com::sun::star::configuration::backend::XLayer;
4036 [optional] interface ::com::sun::star::configuration::backend::XCompositeLayer;
4037 [optional] interface ::com::sun::star::util::XTimeStamped;
4038 [property, optional, readonly] string URL;
4040 published service LayerFilter {
4041 interface ::com::sun::star::configuration::backend::XLayer;
4042 interface ::com::sun::star::lang::XInitialization;
4044 published struct TemplateIdentifier {
4045 string Name;
4046 string Component;
4048 published interface XUpdateHandler {
4049 interface ::com::sun::star::uno::XInterface;
4050 void startUpdate() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::IllegalAccessException, ::com::sun::star::lang::WrappedTargetException);
4051 void endUpdate() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::IllegalAccessException, ::com::sun::star::lang::WrappedTargetException);
4052 void modifyNode([in] string aName, [in] short aAttributes, [in] short aAttributeMask, [in] boolean bReset) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4053 void addOrReplaceNode([in] string aName, [in] short aAttributes) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4054 void addOrReplaceNodeFromTemplate([in] string aName, [in] short aAttributes, [in] ::com::sun::star::configuration::backend::TemplateIdentifier aTemplate) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4055 void endNode() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4056 void removeNode([in] string aName) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4057 void modifyProperty([in] string aName, [in] short aAttributes, [in] short aAttributeMask, [in] type aType) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4058 void setPropertyValue([in] any aValue) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4059 void setPropertyValueForLocale([in] any aValue, [in] string aLocale) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4060 void resetPropertyValue() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4061 void resetPropertyValueForLocale([in] string aLocale) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4062 void endProperty() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4063 void resetProperty([in] string aName) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4064 void addOrReplaceProperty([in] string aName, [in] short aAttributes, [in] type aType) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4065 void addOrReplacePropertyWithValue([in] string aName, [in] short aAttributes, [in] any aValue) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4066 void removeProperty([in] string aName) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4068 published service LayerUpdateMerger {
4069 interface ::com::sun::star::configuration::backend::XUpdateHandler;
4070 interface ::com::sun::star::lang::XInitialization;
4072 published interface XUpdatableLayer;
4073 published interface XMultiLayerStratum {
4074 interface ::com::sun::star::uno::XInterface;
4075 sequence< string > listLayerIds([in] string aComponent, [in] string aEntity) raises (::com::sun::star::configuration::backend::BackendAccessException, ::com::sun::star::lang::IllegalArgumentException);
4076 string getUpdateLayerId([in] string aComponent, [in] string aEntity) raises (::com::sun::star::configuration::backend::BackendAccessException, ::com::sun::star::lang::NoSupportException, ::com::sun::star::lang::IllegalArgumentException);
4077 ::com::sun::star::configuration::backend::XLayer getLayer([in] string aLayerId, [in] string aTimestamp) raises (::com::sun::star::configuration::backend::BackendAccessException, ::com::sun::star::lang::IllegalArgumentException);
4078 sequence< ::com::sun::star::configuration::backend::XLayer > getLayers([in] sequence< string > aLayerIds, [in] string aTimestamp) raises (::com::sun::star::configuration::backend::BackendAccessException, ::com::sun::star::lang::IllegalArgumentException);
4079 sequence< ::com::sun::star::configuration::backend::XLayer > getMultipleLayers([in] sequence< string > aLayerIds, [in] sequence< string > aTimestamps) raises (::com::sun::star::configuration::backend::BackendAccessException, ::com::sun::star::lang::IllegalArgumentException);
4080 ::com::sun::star::configuration::backend::XUpdatableLayer getUpdatableLayer([in] string aLayerId) raises (::com::sun::star::configuration::backend::BackendAccessException, ::com::sun::star::lang::NoSupportException, ::com::sun::star::lang::IllegalArgumentException);
4082 published service SingleBackend {
4083 interface ::com::sun::star::configuration::backend::XSchemaSupplier;
4084 interface ::com::sun::star::configuration::backend::XMultiLayerStratum;
4085 interface ::com::sun::star::configuration::backend::XBackendEntities;
4087 published service LdapSingleBackend {
4088 service ::com::sun::star::configuration::backend::SingleBackend;
4090 published interface XUpdatableLayer;
4091 published interface XSingleLayerStratum {
4092 interface ::com::sun::star::uno::XInterface;
4093 ::com::sun::star::configuration::backend::XLayer getLayer([in] string aComponent, [in] string aTimestamp) raises (::com::sun::star::configuration::backend::BackendAccessException, ::com::sun::star::lang::IllegalArgumentException);
4094 ::com::sun::star::configuration::backend::XUpdatableLayer getUpdatableLayer([in] string aComponent) raises (::com::sun::star::configuration::backend::BackendAccessException, ::com::sun::star::lang::NoSupportException, ::com::sun::star::lang::IllegalArgumentException);
4096 published service LocalDataImporter {
4097 service ::com::sun::star::configuration::backend::DataImporter;
4099 published service LocalHierarchyBrowser {
4100 service ::com::sun::star::configuration::backend::HierarchyBrowser;
4102 published service LocalSingleBackend {
4103 service ::com::sun::star::configuration::backend::SingleBackend;
4105 published service MergeImporter {
4106 service ::com::sun::star::configuration::backend::Importer;
4108 published constants NodeAttribute {
4109 const short FINALIZED = 256;
4110 const short FUSE = 2048;
4111 const short MANDATORY = 512;
4112 const short MASK = 32512;
4113 const short READONLY = 1024;
4115 published service OfflineBackend {
4116 service ::com::sun::star::configuration::backend::BackendAdapter;
4118 published service OnlineBackend {
4119 service ::com::sun::star::configuration::backend::BackendAdapter;
4121 published interface XSchemaHandler;
4122 published interface XSchema {
4123 interface ::com::sun::star::uno::XInterface;
4124 void readSchema([in] ::com::sun::star::configuration::backend::XSchemaHandler aHandler) raises (::com::sun::star::lang::NullPointerException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::configuration::backend::MalformedDataException);
4125 void readComponent([in] ::com::sun::star::configuration::backend::XSchemaHandler aHandler) raises (::com::sun::star::lang::NullPointerException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::configuration::backend::MalformedDataException);
4126 void readTemplates([in] ::com::sun::star::configuration::backend::XSchemaHandler aHandler) raises (::com::sun::star::lang::NullPointerException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::configuration::backend::MalformedDataException);
4128 published service Schema {
4129 interface ::com::sun::star::configuration::backend::XSchema;
4130 [property, optional, readonly] string URL;
4132 published constants SchemaAttribute {
4133 const short EXTENSIBLE = 4;
4134 const short LOCALIZED = 2;
4135 const short MASK = 255;
4136 const short REQUIRED = 1;
4138 published service SingleBackendAdapter {
4139 service ::com::sun::star::configuration::backend::BackendAdapter;
4141 published interface XUpdatableLayer {
4142 interface ::com::sun::star::configuration::backend::XLayer;
4143 void replaceWith([in] ::com::sun::star::configuration::backend::XLayer aNewLayer) raises (::com::sun::star::lang::NullPointerException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::configuration::backend::MalformedDataException);
4145 published service UpdatableLayer {
4146 service ::com::sun::star::configuration::backend::Layer;
4147 interface ::com::sun::star::configuration::backend::XUpdatableLayer;
4149 published interface XLayerHandler {
4150 interface ::com::sun::star::uno::XInterface;
4151 void startLayer() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4152 void endLayer() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4153 void overrideNode([in] string aName, [in] short aAttributes, [in] boolean bClear) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4154 void addOrReplaceNode([in] string aName, [in] short aAttributes) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4155 void addOrReplaceNodeFromTemplate([in] string aName, [in] ::com::sun::star::configuration::backend::TemplateIdentifier aTemplate, [in] short aAttributes) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4156 void endNode() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4157 void dropNode([in] string aName) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4158 void overrideProperty([in] string aName, [in] short aAttributes, [in] type aType, [in] boolean bClear) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4159 void setPropertyValue([in] any aValue) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4160 void setPropertyValueForLocale([in] any aValue, [in] string aLocale) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4161 void endProperty() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4162 void addProperty([in] string aName, [in] short aAttributes, [in] type aType) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4163 void addPropertyWithValue([in] string aName, [in] short aAttributes, [in] any aValue) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4165 published interface XSchemaHandler {
4166 interface ::com::sun::star::uno::XInterface;
4167 void startSchema() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4168 void endSchema() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4169 void importComponent([in] string aName) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4170 void startComponent([in] string aName) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4171 void endComponent() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4172 void startGroupTemplate([in] ::com::sun::star::configuration::backend::TemplateIdentifier aTemplate, [in] short aAttributes) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4173 void startSetTemplate([in] ::com::sun::star::configuration::backend::TemplateIdentifier aTemplate, [in] short aAttributes, [in] ::com::sun::star::configuration::backend::TemplateIdentifier aItemType) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4174 void endTemplate() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4175 void startGroup([in] string aName, [in] short aAttributes) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4176 void startSet([in] string aName, [in] short aAttributes, [in] ::com::sun::star::configuration::backend::TemplateIdentifier aItemType) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4177 void endNode() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4178 void addProperty([in] string aName, [in] short aAttributes, [in] type aType) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4179 void addPropertyWithDefault([in] string aName, [in] short aAttributes, [in] any aDefaultValue) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4180 void addInstance([in] string aName, [in] ::com::sun::star::configuration::backend::TemplateIdentifier aTemplate) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4181 void addItemType([in] ::com::sun::star::configuration::backend::TemplateIdentifier aItemType) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4183 module xml {
4184 published service LayerParser {
4185 interface ::com::sun::star::configuration::backend::XLayer;
4186 interface ::com::sun::star::io::XActiveDataSink;
4187 interface ::com::sun::star::lang::XInitialization;
4189 published service LayerWriter {
4190 interface ::com::sun::star::configuration::backend::XLayerHandler;
4191 interface ::com::sun::star::io::XActiveDataSource;
4192 interface ::com::sun::star::lang::XInitialization;
4194 published service SchemaParser {
4195 interface ::com::sun::star::configuration::backend::XSchema;
4196 interface ::com::sun::star::io::XActiveDataSink;
4197 interface ::com::sun::star::lang::XInitialization;
4201 module bootstrap {
4202 /** @deprecated */ published service BootstrapContext {
4203 interface ::com::sun::star::uno::XComponentContext;
4206 published singleton theDefaultProvider: ::com::sun::star::lang::XMultiServiceFactory;
4208 module ui {
4209 module dialogs {
4210 published interface XExecutableDialog {
4211 interface ::com::sun::star::uno::XInterface;
4212 void setTitle([in] string aTitle);
4213 short execute();
4217 module datatransfer {
4218 published struct DataFlavor {
4219 string MimeType;
4220 string HumanPresentableName;
4221 type DataType;
4223 published interface XDataFormatTranslator {
4224 interface ::com::sun::star::uno::XInterface;
4225 any getSystemDataTypeFromDataFlavor([in] ::com::sun::star::datatransfer::DataFlavor aDataFlavor);
4226 ::com::sun::star::datatransfer::DataFlavor getDataFlavorFromSystemDataType([in] any aSysDataType);
4228 published service DataFormatTranslator: ::com::sun::star::datatransfer::XDataFormatTranslator;
4229 published interface XMimeContentType;
4230 published interface XMimeContentTypeFactory {
4231 interface ::com::sun::star::uno::XInterface;
4232 ::com::sun::star::datatransfer::XMimeContentType createMimeContentType([in] string aContentType) raises (::com::sun::star::lang::IllegalArgumentException);
4234 published service MimeContentTypeFactory: ::com::sun::star::datatransfer::XMimeContentTypeFactory;
4235 published exception UnsupportedFlavorException: ::com::sun::star::uno::Exception {
4237 published interface XMimeContentType {
4238 interface ::com::sun::star::uno::XInterface;
4239 string getMediaType();
4240 string getMediaSubtype();
4241 string getFullMediaType();
4242 sequence< string > getParameters();
4243 boolean hasParameter([in] string aName);
4244 string getParameterValue([in] string aName) raises (::com::sun::star::container::NoSuchElementException);
4246 published interface XSystemTransferable {
4247 interface ::com::sun::star::uno::XInterface;
4248 any getData([in] sequence< byte > aProcessId);
4250 published interface XTransferDataAccess {
4251 interface ::com::sun::star::uno::XInterface;
4252 hyper queryDataSize([in] sequence< ::com::sun::star::datatransfer::DataFlavor > aFlavorList);
4253 sequence< any > getData([in] sequence< ::com::sun::star::datatransfer::DataFlavor > aFlavorList);
4255 published interface XTransferable {
4256 interface ::com::sun::star::uno::XInterface;
4257 any getTransferData([in] ::com::sun::star::datatransfer::DataFlavor aFlavor) raises (::com::sun::star::datatransfer::UnsupportedFlavorException, ::com::sun::star::io::IOException);
4258 sequence< ::com::sun::star::datatransfer::DataFlavor > getTransferDataFlavors();
4259 boolean isDataFlavorSupported([in] ::com::sun::star::datatransfer::DataFlavor aFlavor);
4261 published interface XTransferableEx {
4262 interface ::com::sun::star::uno::XInterface;
4263 sequence< ::com::sun::star::datatransfer::DataFlavor > queryTransferDataFlavors([in] sequence< ::com::sun::star::datatransfer::DataFlavor > requestedFlavors);
4265 published interface XTransferableSource {
4266 interface ::com::sun::star::uno::XInterface;
4267 string getDataSourceDescription();
4269 interface XTransferableSupplier {
4270 interface ::com::sun::star::uno::XInterface;
4271 ::com::sun::star::datatransfer::XTransferable getTransferable();
4272 void insertTransferable([in] ::com::sun::star::datatransfer::XTransferable xTrans) raises (::com::sun::star::datatransfer::UnsupportedFlavorException);
4274 module clipboard {
4275 published struct ClipboardEvent: ::com::sun::star::lang::EventObject {
4276 ::com::sun::star::datatransfer::XTransferable Contents;
4278 published interface XClipboard;
4279 published interface XClipboardManager {
4280 interface ::com::sun::star::uno::XInterface;
4281 ::com::sun::star::datatransfer::clipboard::XClipboard getClipboard([in] string aName) raises (::com::sun::star::container::NoSuchElementException);
4282 void addClipboard([in] ::com::sun::star::datatransfer::clipboard::XClipboard xClipboard) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::ElementExistException);
4283 void removeClipboard([in] string aName);
4284 sequence< string > listClipboardNames();
4286 published service ClipboardManager {
4287 interface ::com::sun::star::datatransfer::clipboard::XClipboardManager;
4288 interface ::com::sun::star::lang::XComponent;
4290 published interface XClipboardOwner;
4291 published interface XClipboard {
4292 interface ::com::sun::star::uno::XInterface;
4293 ::com::sun::star::datatransfer::XTransferable getContents();
4294 void setContents([in] ::com::sun::star::datatransfer::XTransferable xTrans, [in] ::com::sun::star::datatransfer::clipboard::XClipboardOwner xClipboardOwner);
4295 string getName();
4297 published interface XClipboardEx {
4298 interface ::com::sun::star::datatransfer::clipboard::XClipboard;
4299 byte getRenderingCapabilities();
4301 published interface XClipboardListener;
4302 published interface XClipboardNotifier {
4303 interface ::com::sun::star::uno::XInterface;
4304 void addClipboardListener([in] ::com::sun::star::datatransfer::clipboard::XClipboardListener listener);
4305 void removeClipboardListener([in] ::com::sun::star::datatransfer::clipboard::XClipboardListener listener);
4307 published service GenericClipboard {
4308 interface ::com::sun::star::datatransfer::clipboard::XClipboardEx;
4309 interface ::com::sun::star::datatransfer::clipboard::XClipboardNotifier;
4310 interface ::com::sun::star::lang::XInitialization;
4311 interface ::com::sun::star::lang::XComponent;
4313 published constants RenderingCapabilities {
4314 const byte Delayed = 1;
4315 const byte Persistant = 2;
4317 published interface XFlushableClipboard {
4318 interface ::com::sun::star::uno::XInterface;
4319 void flushClipboard();
4321 published interface XSystemClipboard {
4322 interface ::com::sun::star::datatransfer::clipboard::XClipboardEx;
4323 interface ::com::sun::star::datatransfer::clipboard::XClipboardNotifier;
4324 interface ::com::sun::star::lang::XComponent;
4325 [optional] interface ::com::sun::star::datatransfer::clipboard::XFlushableClipboard;
4327 published service SystemClipboard: ::com::sun::star::datatransfer::clipboard::XSystemClipboard;
4328 published interface XClipboardFactory {
4329 interface ::com::sun::star::uno::XInterface;
4330 ::com::sun::star::datatransfer::clipboard::XClipboard createClipboard([in] string aName) raises (::com::sun::star::lang::IllegalArgumentException);
4332 published interface XClipboardListener {
4333 interface ::com::sun::star::lang::XEventListener;
4334 void changedContents([in] ::com::sun::star::datatransfer::clipboard::ClipboardEvent event);
4336 published interface XClipboardOwner {
4337 interface ::com::sun::star::uno::XInterface;
4338 void lostOwnership([in] ::com::sun::star::datatransfer::clipboard::XClipboard xClipboard, [in] ::com::sun::star::datatransfer::XTransferable xTrans);
4341 module dnd {
4342 published constants DNDConstants {
4343 const byte ACTION_COPY = 1;
4344 const byte ACTION_COPY_OR_MOVE = 3;
4345 const byte ACTION_DEFAULT = -128;
4346 const byte ACTION_LINK = 4;
4347 const byte ACTION_MOVE = 2;
4348 const byte ACTION_NONE = 0;
4349 const byte ACTION_REFERENCE = 4;
4351 published interface XDragSource;
4352 published struct DragGestureEvent: ::com::sun::star::lang::EventObject {
4353 byte DragAction;
4354 long DragOriginX;
4355 long DragOriginY;
4356 ::com::sun::star::datatransfer::dnd::XDragSource DragSource;
4357 any Event;
4359 published interface XDragSource;
4360 published interface XDragSourceContext;
4361 published struct DragSourceEvent: ::com::sun::star::lang::EventObject {
4362 ::com::sun::star::datatransfer::dnd::XDragSourceContext DragSourceContext;
4363 ::com::sun::star::datatransfer::dnd::XDragSource DragSource;
4365 published struct DragSourceDragEvent: ::com::sun::star::datatransfer::dnd::DragSourceEvent {
4366 byte DropAction;
4367 byte UserAction;
4369 published struct DragSourceDropEvent: ::com::sun::star::datatransfer::dnd::DragSourceEvent {
4370 byte DropAction;
4371 boolean DropSuccess;
4373 published struct DropTargetEvent: ::com::sun::star::lang::EventObject {
4374 byte Dummy;
4376 published interface XDropTargetDragContext;
4377 published struct DropTargetDragEvent: ::com::sun::star::datatransfer::dnd::DropTargetEvent {
4378 ::com::sun::star::datatransfer::dnd::XDropTargetDragContext Context;
4379 byte DropAction;
4380 long LocationX;
4381 long LocationY;
4382 byte SourceActions;
4384 published struct DropTargetDragEnterEvent: ::com::sun::star::datatransfer::dnd::DropTargetDragEvent {
4385 sequence< ::com::sun::star::datatransfer::DataFlavor > SupportedDataFlavors;
4387 published interface XDropTargetDropContext;
4388 published struct DropTargetDropEvent: ::com::sun::star::datatransfer::dnd::DropTargetEvent {
4389 ::com::sun::star::datatransfer::dnd::XDropTargetDropContext Context;
4390 byte DropAction;
4391 long LocationX;
4392 long LocationY;
4393 byte SourceActions;
4394 ::com::sun::star::datatransfer::XTransferable Transferable;
4396 published exception InvalidDNDOperationException: ::com::sun::star::uno::RuntimeException {
4398 published interface XDragSourceListener;
4399 published interface XDragSource {
4400 interface ::com::sun::star::uno::XInterface;
4401 boolean isDragImageSupported();
4402 long getDefaultCursor([in] byte dragAction) raises (::com::sun::star::lang::IllegalArgumentException);
4403 void startDrag([in] ::com::sun::star::datatransfer::dnd::DragGestureEvent trigger, [in] byte sourceActions, [in] long cursor, [in] long image, [in] ::com::sun::star::datatransfer::XTransferable trans, [in] ::com::sun::star::datatransfer::dnd::XDragSourceListener listener);
4405 published service OleDragSource {
4406 interface ::com::sun::star::datatransfer::dnd::XDragSource;
4407 interface ::com::sun::star::lang::XInitialization;
4408 interface ::com::sun::star::lang::XComponent;
4410 published interface XDropTargetListener;
4411 published interface XDropTarget {
4412 interface ::com::sun::star::uno::XInterface;
4413 void addDropTargetListener([in] ::com::sun::star::datatransfer::dnd::XDropTargetListener dtl);
4414 void removeDropTargetListener([in] ::com::sun::star::datatransfer::dnd::XDropTargetListener dtl);
4415 boolean isActive();
4416 void setActive([in] boolean active);
4417 byte getDefaultActions();
4418 void setDefaultActions([in] byte actions);
4420 published service OleDropTarget {
4421 interface ::com::sun::star::datatransfer::dnd::XDropTarget;
4422 interface ::com::sun::star::lang::XInitialization;
4423 interface ::com::sun::star::lang::XComponent;
4425 published service X11DragSource {
4426 interface ::com::sun::star::datatransfer::dnd::XDragSource;
4427 interface ::com::sun::star::lang::XInitialization;
4428 interface ::com::sun::star::lang::XComponent;
4430 published service X11DropTarget {
4431 interface ::com::sun::star::datatransfer::dnd::XDropTarget;
4432 interface ::com::sun::star::lang::XInitialization;
4433 interface ::com::sun::star::lang::XComponent;
4435 published interface XAutoscroll {
4436 interface ::com::sun::star::uno::XInterface;
4437 void autoscroll([in] long cursorLocationX, [in] long cursorLocationY);
4438 any getAutoscrollRegion();
4440 published interface XDragGestureListener {
4441 interface ::com::sun::star::lang::XEventListener;
4442 void dragGestureRecognized([in] ::com::sun::star::datatransfer::dnd::DragGestureEvent dge);
4444 published interface XDragGestureRecognizer {
4445 interface ::com::sun::star::uno::XInterface;
4446 void addDragGestureListener([in] ::com::sun::star::datatransfer::dnd::XDragGestureListener dgl);
4447 void removeDragGestureListener([in] ::com::sun::star::datatransfer::dnd::XDragGestureListener dgl);
4448 void resetRecognizer();
4450 published interface XDragSourceContext {
4451 interface ::com::sun::star::uno::XInterface;
4452 long getCurrentCursor();
4453 void setCursor([in] long cursorId);
4454 void setImage([in] long imageId);
4455 void transferablesFlavorsChanged();
4457 published interface XDragSourceListener {
4458 interface ::com::sun::star::lang::XEventListener;
4459 void dragDropEnd([in] ::com::sun::star::datatransfer::dnd::DragSourceDropEvent dsde);
4460 void dragEnter([in] ::com::sun::star::datatransfer::dnd::DragSourceDragEvent dsde);
4461 void dragExit([in] ::com::sun::star::datatransfer::dnd::DragSourceEvent dse);
4462 void dragOver([in] ::com::sun::star::datatransfer::dnd::DragSourceDragEvent dsde);
4463 void dropActionChanged([in] ::com::sun::star::datatransfer::dnd::DragSourceDragEvent dsde);
4465 published interface XDropTargetDragContext {
4466 interface ::com::sun::star::uno::XInterface;
4467 void acceptDrag([in] byte dragOperation);
4468 void rejectDrag();
4470 published interface XDropTargetDropContext {
4471 interface ::com::sun::star::uno::XInterface;
4472 void acceptDrop([in] byte dragOperation);
4473 void rejectDrop();
4474 void dropComplete([in] boolean success);
4476 published interface XDropTargetListener {
4477 interface ::com::sun::star::lang::XEventListener;
4478 void drop([in] ::com::sun::star::datatransfer::dnd::DropTargetDropEvent dtde);
4479 void dragEnter([in] ::com::sun::star::datatransfer::dnd::DropTargetDragEnterEvent dtdee);
4480 void dragExit([in] ::com::sun::star::datatransfer::dnd::DropTargetEvent dte);
4481 void dragOver([in] ::com::sun::star::datatransfer::dnd::DropTargetDragEvent dtde);
4482 void dropActionChanged([in] ::com::sun::star::datatransfer::dnd::DropTargetDragEvent dtde);
4486 module ucb {
4487 published exception CommandAbortedException: ::com::sun::star::uno::Exception {
4489 published exception CommandFailedException: ::com::sun::star::uno::Exception {
4490 any Reason;
4492 published enum ContentCreationError {
4493 UNKNOWN = 0,
4494 /** @deprecated */ NO_CONTENT_BROKER = 1,
4495 /** @deprecated */ NO_IDENTIFIER_FACTORY = 2,
4496 IDENTIFIER_CREATION_FAILED = 3,
4497 NO_CONTENT_PROVIDER = 4,
4498 CONTENT_CREATION_FAILED = 5
4500 published exception ContentCreationException: ::com::sun::star::uno::Exception {
4501 ::com::sun::star::ucb::ContentCreationError eError;
4503 published interface XProgressHandler;
4504 published interface XCommandEnvironment {
4505 interface ::com::sun::star::uno::XInterface;
4506 ::com::sun::star::task::XInteractionHandler getInteractionHandler();
4507 ::com::sun::star::ucb::XProgressHandler getProgressHandler();
4510 module document {
4511 published exception AmbigousFilterRequest: ::com::sun::star::uno::Exception {
4512 string URL;
4513 string SelectedFilter;
4514 string DetectedFilter;
4516 published exception BrokenPackageRequest: ::com::sun::star::uno::Exception {
4517 string aName;
4519 published exception ChangedByOthersRequest: ::com::sun::star::uno::Exception {
4521 published exception CorruptedFilterConfigurationException: ::com::sun::star::uno::RuntimeException {
4522 string Details;
4525 module embed {
4526 published interface XStorage;
4528 module document {
4529 published interface XDocumentProperties {
4530 interface ::com::sun::star::uno::XInterface;
4531 [attribute] string Author;
4532 [attribute] string Generator;
4533 [attribute] ::com::sun::star::util::DateTime CreationDate;
4534 [attribute] string Title;
4535 [attribute] string Subject;
4536 [attribute] string Description;
4537 [attribute] sequence< string > Keywords;
4538 [attribute] ::com::sun::star::lang::Locale Language;
4539 [attribute] string ModifiedBy;
4540 [attribute] ::com::sun::star::util::DateTime ModificationDate;
4541 [attribute] string PrintedBy;
4542 [attribute] ::com::sun::star::util::DateTime PrintDate;
4543 [attribute] string TemplateName;
4544 [attribute] string TemplateURL;
4545 [attribute] ::com::sun::star::util::DateTime TemplateDate;
4546 [attribute] string AutoloadURL;
4547 [attribute] long AutoloadSecs {
4548 set raises (::com::sun::star::lang::IllegalArgumentException);
4550 [attribute] string DefaultTarget;
4551 [attribute] sequence< ::com::sun::star::beans::NamedValue > DocumentStatistics;
4552 [attribute] short EditingCycles {
4553 set raises (::com::sun::star::lang::IllegalArgumentException);
4555 [attribute] long EditingDuration {
4556 set raises (::com::sun::star::lang::IllegalArgumentException);
4558 void resetUserData([in] string Author);
4559 ::com::sun::star::beans::XPropertyContainer getUserDefinedProperties();
4560 void loadFromStorage([in] ::com::sun::star::embed::XStorage Storage, [in] sequence< ::com::sun::star::beans::PropertyValue > Medium) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::io::WrongFormatException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::io::IOException);
4561 void loadFromMedium([in] string URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Medium) raises (::com::sun::star::io::WrongFormatException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::io::IOException);
4562 void storeToStorage([in] ::com::sun::star::embed::XStorage Storage, [in] sequence< ::com::sun::star::beans::PropertyValue > Medium) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::io::IOException);
4563 void storeToMedium([in] string URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Medium) raises (::com::sun::star::lang::WrappedTargetException, ::com::sun::star::io::IOException);
4565 published service DocumentProperties: ::com::sun::star::document::XDocumentProperties {
4566 create();
4568 published service EventDescriptor {
4569 [property] string EventType;
4570 [property] string Script;
4572 /** @deprecated */ published struct EventObject: ::com::sun::star::lang::EventObject {
4573 string EventName;
4575 published service Events {
4576 interface ::com::sun::star::container::XNameReplace;
4578 published interface XExporter {
4579 interface ::com::sun::star::uno::XInterface;
4580 void setSourceDocument([in] ::com::sun::star::lang::XComponent Document) raises (::com::sun::star::lang::IllegalArgumentException);
4582 published interface XFilter {
4583 interface ::com::sun::star::uno::XInterface;
4584 boolean filter([in] sequence< ::com::sun::star::beans::PropertyValue > aDescriptor);
4585 void cancel();
4587 published service ExportFilter {
4588 interface ::com::sun::star::document::XExporter;
4589 interface ::com::sun::star::document::XFilter;
4590 [optional] interface ::com::sun::star::lang::XInitialization;
4591 [optional] interface ::com::sun::star::container::XNamed;
4593 published interface XExtendedFilterDetection {
4594 interface ::com::sun::star::uno::XInterface;
4595 string detect([inout] sequence< ::com::sun::star::beans::PropertyValue > Descriptor);
4597 published service ExtendedTypeDetection {
4598 interface ::com::sun::star::document::XExtendedFilterDetection;
4600 published service ExtendedTypeDetectionFactory {
4601 interface ::com::sun::star::lang::XMultiServiceFactory;
4602 interface ::com::sun::star::container::XNameAccess;
4603 [optional] interface ::com::sun::star::container::XNameContainer;
4604 [optional] interface ::com::sun::star::container::XContainerQuery;
4605 [optional] interface ::com::sun::star::util::XFlushable;
4607 published interface XFilterAdapter {
4608 interface ::com::sun::star::uno::XInterface;
4609 void convert([in] ::com::sun::star::io::XInputStream xml, [in] ::com::sun::star::io::XOutputStream device, [in] boolean convertToOffice, [in] string pluginUrl, [in] string fileName);
4611 published service FilterAdapter {
4612 interface ::com::sun::star::document::XFilterAdapter;
4614 published service FilterFactory {
4615 interface ::com::sun::star::lang::XMultiServiceFactory;
4616 interface ::com::sun::star::container::XNameAccess;
4617 interface ::com::sun::star::container::XContainerQuery;
4618 [optional] interface ::com::sun::star::container::XNameContainer;
4619 [optional] interface ::com::sun::star::util::XFlushable;
4621 published exception FilterOptionsRequest: ::com::sun::star::uno::Exception {
4622 ::com::sun::star::frame::XModel rModel;
4623 sequence< ::com::sun::star::beans::PropertyValue > rProperties;
4625 published interface XGraphicObjectResolver {
4626 interface ::com::sun::star::uno::XInterface;
4627 string resolveGraphicObjectURL([in] string aURL);
4629 published service HeaderFooterSettings {
4630 interface ::com::sun::star::beans::XPropertySet;
4631 [property, optional] boolean IsPrintPageName;
4632 [property, optional] boolean IsPrintDate;
4633 [property, optional] boolean IsPrintTime;
4635 published interface XImporter {
4636 interface ::com::sun::star::uno::XInterface;
4637 void setTargetDocument([in] ::com::sun::star::lang::XComponent Document) raises (::com::sun::star::lang::IllegalArgumentException);
4639 published service ImportFilter {
4640 interface ::com::sun::star::document::XImporter;
4641 interface ::com::sun::star::document::XFilter;
4642 [optional] interface ::com::sun::star::lang::XInitialization;
4643 [optional] interface ::com::sun::star::container::XNamed;
4645 published interface XLinkTargetSupplier {
4646 interface ::com::sun::star::uno::XInterface;
4647 ::com::sun::star::container::XNameAccess getLinks();
4649 published service LinkTarget {
4650 interface ::com::sun::star::beans::XPropertySet;
4651 [optional] interface ::com::sun::star::document::XLinkTargetSupplier;
4652 [property, readonly] string LinkDisplayName;
4654 published service LinkTargets {
4655 interface ::com::sun::star::container::XNameAccess;
4657 published constants LinkUpdateModes {
4658 const long AUTO = 2;
4659 const long GLOBAL_SETTING = 3;
4660 const long MANUAL = 1;
4661 const long NEVER = 0;
4663 published exception LockFileIgnoreRequest: ::com::sun::star::io::IOException {
4665 published exception LockedDocumentRequest: ::com::sun::star::uno::Exception {
4666 string DocumentURL;
4667 string UserInfo;
4669 published exception LockedOnSavingRequest: ::com::sun::star::uno::Exception {
4670 string DocumentURL;
4671 string UserInfo;
4673 published constants MacroExecMode {
4674 const short ALWAYS_EXECUTE = 2;
4675 const short ALWAYS_EXECUTE_NO_WARN = 4;
4676 const short FROM_LIST = 1;
4677 const short FROM_LIST_AND_SIGNED_NO_WARN = 9;
4678 const short FROM_LIST_AND_SIGNED_WARN = 8;
4679 const short FROM_LIST_NO_WARN = 7;
4680 const short NEVER_EXECUTE = 0;
4681 const short USE_CONFIG = 3;
4682 const short USE_CONFIG_APPROVE_CONFIRMATION = 6;
4683 const short USE_CONFIG_REJECT_CONFIRMATION = 5;
4685 published exception NoSuchFilterRequest: ::com::sun::star::uno::Exception {
4686 string URL;
4689 module xml {
4690 module sax {
4691 published exception SAXException: ::com::sun::star::uno::Exception {
4692 any WrappedException;
4696 module document {
4697 interface XDocumentEventListener;
4699 module frame {
4700 interface XController2;
4702 module document {
4703 interface XDocumentEventBroadcaster {
4704 interface ::com::sun::star::uno::XInterface;
4705 void addDocumentEventListener([in] ::com::sun::star::document::XDocumentEventListener Listener);
4706 void removeDocumentEventListener([in] ::com::sun::star::document::XDocumentEventListener Listener);
4707 void notifyDocumentEvent([in] string EventName, [in] ::com::sun::star::frame::XController2 ViewController, [in] any Supplement) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::NoSupportException);
4709 published interface XDocumentPropertiesSupplier {
4710 interface ::com::sun::star::uno::XInterface;
4711 ::com::sun::star::document::XDocumentProperties getDocumentProperties();
4714 module script {
4715 interface XStorageBasedLibraryContainer;
4717 module document {
4718 interface XEmbeddedScripts {
4719 interface ::com::sun::star::uno::XInterface;
4720 [attribute, readonly] ::com::sun::star::script::XStorageBasedLibraryContainer BasicLibraries;
4721 [attribute, readonly] ::com::sun::star::script::XStorageBasedLibraryContainer DialogLibraries;
4722 [attribute, readonly] boolean AllowMacroExecution;
4724 published interface XEventListener;
4725 /** @deprecated */ published interface XEventBroadcaster {
4726 interface ::com::sun::star::uno::XInterface;
4727 void addEventListener([in] ::com::sun::star::document::XEventListener Listener);
4728 void removeEventListener([in] ::com::sun::star::document::XEventListener Listener);
4730 published interface XEventsSupplier {
4731 interface ::com::sun::star::uno::XInterface;
4732 ::com::sun::star::container::XNameReplace getEvents();
4734 interface XUndoManager;
4735 interface XUndoManagerSupplier {
4736 interface ::com::sun::star::uno::XInterface;
4737 ::com::sun::star::document::XUndoManager getUndoManager();
4739 published interface XViewDataSupplier {
4740 interface ::com::sun::star::uno::XInterface;
4741 ::com::sun::star::container::XIndexAccess getViewData();
4742 void setViewData([in] ::com::sun::star::container::XIndexAccess Data);
4745 module frame {
4746 published interface XStorable {
4747 interface ::com::sun::star::uno::XInterface;
4748 boolean hasLocation();
4749 string getLocation();
4750 boolean isReadonly();
4751 void store() raises (::com::sun::star::io::IOException);
4752 void storeAsURL([in] string sURL, [in] sequence< ::com::sun::star::beans::PropertyValue > lArguments) raises (::com::sun::star::io::IOException);
4753 void storeToURL([in] string sURL, [in] sequence< ::com::sun::star::beans::PropertyValue > lArguments) raises (::com::sun::star::io::IOException);
4756 module util {
4757 published interface XModifiable {
4758 interface ::com::sun::star::util::XModifyBroadcaster;
4759 boolean isModified();
4760 void setModified([in] boolean bModified) raises (::com::sun::star::beans::PropertyVetoException);
4763 module view {
4764 published interface XPrintJobListener;
4765 published interface XPrintJobBroadcaster {
4766 interface ::com::sun::star::uno::XInterface;
4767 void addPrintJobListener([in] ::com::sun::star::view::XPrintJobListener xListener);
4768 void removePrintJobListener([in] ::com::sun::star::view::XPrintJobListener xListener);
4770 published interface XPrintable {
4771 interface ::com::sun::star::uno::XInterface;
4772 sequence< ::com::sun::star::beans::PropertyValue > getPrinter();
4773 void setPrinter([in] sequence< ::com::sun::star::beans::PropertyValue > aPrinter) raises (::com::sun::star::lang::IllegalArgumentException);
4774 void print([in] sequence< ::com::sun::star::beans::PropertyValue > xOptions) raises (::com::sun::star::lang::IllegalArgumentException);
4777 module document {
4778 published service OfficeDocument {
4779 interface ::com::sun::star::frame::XModel;
4780 interface ::com::sun::star::util::XModifiable;
4781 interface ::com::sun::star::frame::XStorable;
4782 interface ::com::sun::star::view::XPrintable;
4783 /** @deprecated */ [optional] interface ::com::sun::star::document::XEventBroadcaster;
4784 [optional] interface ::com::sun::star::document::XDocumentEventBroadcaster;
4785 [optional] interface ::com::sun::star::document::XEventsSupplier;
4786 [optional] interface ::com::sun::star::document::XViewDataSupplier;
4787 [optional] interface ::com::sun::star::view::XPrintJobBroadcaster;
4788 [optional] interface ::com::sun::star::document::XEmbeddedScripts;
4789 [optional] interface ::com::sun::star::document::XDocumentPropertiesSupplier;
4790 [optional] interface ::com::sun::star::document::XUndoManagerSupplier;
4791 [property, optional] boolean AutomaticControlFocus;
4792 [property, optional] boolean ApplyFormDesignMode;
4793 [property, optional, readonly] string RuntimeUID;
4794 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > InteropGrabBag;
4796 published service OleEmbeddedServerRegistration: ::com::sun::star::uno::XInterface;
4797 published exception OwnLockOnDocumentRequest: ::com::sun::star::uno::Exception {
4798 string DocumentURL;
4799 string TimeInfo;
4800 boolean IsStoring;
4803 module ui {
4804 module dialogs {
4805 published service FilterOptionsDialog {
4806 interface ::com::sun::star::beans::XPropertyAccess;
4807 interface ::com::sun::star::ui::dialogs::XExecutableDialog;
4811 module document {
4812 published constants PrinterIndependentLayout {
4813 const short DISABLED = 1;
4814 /** @deprecated */ const short ENABLED = 2;
4815 const short HIGH_RESOLUTION = 3;
4816 const short LOW_RESOLUTION = 2;
4818 published constants RedlineDisplayType {
4819 const short INSERTED = 1;
4820 const short INSERTED_AND_REMOVED = 2;
4821 const short NONE = 0;
4822 const short REMOVED = 3;
4825 module i18n {
4826 published interface XForbiddenCharacters;
4828 module document {
4829 published service Settings {
4830 interface ::com::sun::star::beans::XPropertySet;
4831 [property, optional] ::com::sun::star::i18n::XForbiddenCharacters ForbiddenCharacters;
4832 [property, optional] short LinkUpdateMode;
4833 [property] string PrinterName;
4834 [property] sequence< byte > PrinterSetup;
4835 [property, optional] boolean IsKernAsianPunctuation;
4836 [property, optional] short CharacterCompressionType;
4837 [property, optional] boolean ApplyUserData;
4838 [property, optional] boolean SaveVersionOnClose;
4839 [property, optional] boolean UpdateFromTemplate;
4840 [property, optional] boolean FieldAutoUpdate;
4841 [property, optional] string CurrentDatabaseDataSource;
4842 [property, optional] string CurrentDatabaseCommand;
4843 [property, optional] long CurrentDatabaseCommandType;
4844 [property, optional] long DefaultTabStop;
4845 [property, optional] boolean IsPrintBooklet;
4846 [property, optional] boolean IsPrintBookletFront;
4847 [property, optional] boolean IsPrintBookletBack;
4848 [property, optional] long PrintQuality;
4849 [property, optional] string ColorTableURL;
4850 [property, optional] string DashTableURL;
4851 [property, optional] string LineEndTableURL;
4852 [property, optional] string HatchTableURL;
4853 [property, optional] string GradientTableURL;
4854 [property, optional] string BitmapTableURL;
4855 [property, optional] boolean AutoCalculate;
4856 [property, optional] short PrinterIndependentLayout;
4857 [property, optional] boolean AddExternalLeading;
4858 [property, optional] boolean EmbedFonts;
4859 [property, optional] boolean EmbedSystemFonts;
4861 published interface XTypeDetection {
4862 interface ::com::sun::star::uno::XInterface;
4863 string queryTypeByURL([in] string URL);
4864 string queryTypeByDescriptor([inout] sequence< ::com::sun::star::beans::PropertyValue > Descriptor, [in] boolean AllowDeep);
4866 published service TypeDetection {
4867 interface ::com::sun::star::document::XTypeDetection;
4868 interface ::com::sun::star::container::XNameAccess;
4869 [optional] interface ::com::sun::star::container::XNameContainer;
4870 [optional] interface ::com::sun::star::container::XContainerQuery;
4871 [optional] interface ::com::sun::star::util::XFlushable;
4873 published constants UpdateDocMode {
4874 const short ACCORDING_TO_CONFIG = 2;
4875 const short FULL_UPDATE = 3;
4876 const short NO_UPDATE = 0;
4877 const short QUIET_UPDATE = 1;
4879 published interface XActionLockable {
4880 interface ::com::sun::star::uno::XInterface;
4881 boolean isActionLocked();
4882 void addActionLock();
4883 void removeActionLock();
4884 void setActionLocks([in] short nLock);
4885 short resetActionLocks();
4887 published interface XBinaryStreamResolver {
4888 interface ::com::sun::star::uno::XInterface;
4889 ::com::sun::star::io::XInputStream getInputStream([in] string aURL);
4890 ::com::sun::star::io::XOutputStream createOutputStream();
4891 string resolveOutputStream([in] ::com::sun::star::io::XOutputStream aBinaryStream);
4893 published interface XDocumentInsertable {
4894 interface ::com::sun::star::uno::XInterface;
4895 void insertDocumentFromURL([in] string aURL, [in] sequence< ::com::sun::star::beans::PropertyValue > aOptions) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::io::IOException);
4897 published interface XEmbeddedObjectResolver {
4898 interface ::com::sun::star::uno::XInterface;
4899 string resolveEmbeddedObjectURL([in] string aURL);
4901 published interface XEmbeddedObjectSupplier {
4902 interface ::com::sun::star::uno::XInterface;
4903 ::com::sun::star::lang::XComponent getEmbeddedObject();
4905 /** @deprecated */ published interface XEventListener {
4906 interface ::com::sun::star::lang::XEventListener;
4907 void notifyEvent([in] ::com::sun::star::document::EventObject Event);
4909 published interface XInteractionFilterOptions {
4910 interface ::com::sun::star::task::XInteractionContinuation;
4911 void setFilterOptions([in] sequence< ::com::sun::star::beans::PropertyValue > rProperties);
4912 sequence< ::com::sun::star::beans::PropertyValue > getFilterOptions();
4914 published interface XInteractionFilterSelect {
4915 interface ::com::sun::star::task::XInteractionContinuation;
4916 void setFilter([in] string Name);
4917 string getFilter();
4919 published interface XXMLBasicExporter {
4920 interface ::com::sun::star::document::XExporter;
4921 interface ::com::sun::star::document::XFilter;
4924 module xml {
4925 module sax {
4926 published interface XDocumentHandler;
4929 module document {
4930 published service XMLBasicExporter: ::com::sun::star::document::XXMLBasicExporter {
4931 createWithHandler([in] ::com::sun::star::xml::sax::XDocumentHandler DocumentHandler);
4934 module xml {
4935 module sax {
4936 published interface XAttributeList;
4937 published interface XLocator;
4938 published interface XDocumentHandler {
4939 interface ::com::sun::star::uno::XInterface;
4940 void startDocument() raises (::com::sun::star::xml::sax::SAXException);
4941 void endDocument() raises (::com::sun::star::xml::sax::SAXException);
4942 void startElement([in] string aName, [in] ::com::sun::star::xml::sax::XAttributeList xAttribs) raises (::com::sun::star::xml::sax::SAXException);
4943 void endElement([in] string aName) raises (::com::sun::star::xml::sax::SAXException);
4944 void characters([in] string aChars) raises (::com::sun::star::xml::sax::SAXException);
4945 void ignorableWhitespace([in] string aWhitespaces) raises (::com::sun::star::xml::sax::SAXException);
4946 void processingInstruction([in] string aTarget, [in] string aData) raises (::com::sun::star::xml::sax::SAXException);
4947 void setDocumentLocator([in] ::com::sun::star::xml::sax::XLocator xLocator) raises (::com::sun::star::xml::sax::SAXException);
4951 module document {
4952 published service XMLBasicImporter {
4953 interface ::com::sun::star::document::XImporter;
4954 interface ::com::sun::star::xml::sax::XDocumentHandler;
4956 published service XMLOasisBasicExporter: ::com::sun::star::document::XXMLBasicExporter {
4957 createWithHandler([in] ::com::sun::star::xml::sax::XDocumentHandler DocumentHandler);
4959 published interface XXMLOasisBasicImporter {
4960 interface ::com::sun::star::document::XImporter;
4961 interface ::com::sun::star::xml::sax::XDocumentHandler;
4963 published service XMLOasisBasicImporter: ::com::sun::star::document::XXMLOasisBasicImporter;
4964 published interface XMimeTypeInfo {
4965 interface ::com::sun::star::uno::XInterface;
4966 boolean supportsMimeType([in] string MimeTypeName);
4967 sequence< string > getSupportedMimeTypeNames();
4969 published interface XRedlinesSupplier {
4970 interface ::com::sun::star::uno::XInterface;
4971 ::com::sun::star::container::XEnumerationAccess getRedlines();
4974 module frame {
4975 published exception DoubleInitializationException: ::com::sun::star::uno::Exception {
4978 module drawing {
4979 published service AppletShape {
4980 service ::com::sun::star::drawing::Shape;
4981 [property] string AppletCodeBase;
4982 [property] string AppletName;
4983 [property] string AppletCode;
4984 [property] sequence< ::com::sun::star::beans::PropertyValue > AppletCommands;
4985 [property, readonly] boolean AppletIsScript;
4987 /** @deprecated */ published enum Arrangement {
4988 FRONT = 0,
4989 MORE_FRONT = 1,
4990 MORE_BACK = 2,
4991 BACK = 3
4993 published service Background {
4994 service ::com::sun::star::drawing::FillProperties;
4996 /** @deprecated */ published struct BezierPoint {
4997 ::com::sun::star::awt::Point Position;
4998 ::com::sun::star::awt::Point ControlPoint1;
4999 ::com::sun::star::awt::Point ControlPoint2;
5001 published service BitmapTable {
5002 interface ::com::sun::star::container::XNameContainer;
5004 published struct Position3D {
5005 double PositionX;
5006 double PositionY;
5007 double PositionZ;
5009 published struct BoundVolume {
5010 ::com::sun::star::drawing::Position3D min;
5011 ::com::sun::star::drawing::Position3D max;
5013 published struct CameraGeometry {
5014 ::com::sun::star::drawing::Position3D vrp;
5015 ::com::sun::star::drawing::Direction3D vpn;
5016 ::com::sun::star::drawing::Direction3D vup;
5018 published constants CaptionEscapeDirection {
5019 const short auto = 2;
5020 const short horizontal = 0;
5021 const short vertical = 1;
5023 /** @deprecated */ published service RotationDescriptor {
5024 /** @deprecated */ [property] long RotateAngle;
5025 /** @deprecated */ [property, optional] long ShearAngle;
5027 published service ShadowProperties {
5028 [property] boolean Shadow;
5029 [property] ::com::sun::star::util::Color ShadowColor;
5030 [property] short ShadowTransparence;
5031 [property] long ShadowXDistance;
5032 [property] long ShadowYDistance;
5034 published enum TextAnimationDirection {
5035 LEFT = 0,
5036 RIGHT = 1,
5037 UP = 2,
5038 DOWN = 3
5040 published enum TextAnimationKind {
5041 NONE = 0,
5042 BLINK = 1,
5043 SCROLL = 2,
5044 ALTERNATE = 3,
5045 SLIDE = 4
5047 published enum TextFitToSizeType {
5048 NONE = 0,
5049 PROPORTIONAL = 1,
5050 ALLLINES = 2,
5051 AUTOFIT = 3
5053 published enum TextHorizontalAdjust {
5054 LEFT = 0,
5055 CENTER = 1,
5056 RIGHT = 2,
5057 BLOCK = 3
5059 published enum TextVerticalAdjust {
5060 TOP = 0,
5061 CENTER = 1,
5062 BOTTOM = 2,
5063 BLOCK = 3
5066 module style {
5067 published service ParagraphPropertiesAsian {
5068 [property] boolean ParaIsHangingPunctuation;
5069 [property] boolean ParaIsCharacterDistance;
5070 [property] boolean ParaIsForbiddenRules;
5072 published service ParagraphPropertiesComplex {
5073 [property] short WritingMode;
5076 module text {
5077 /** @deprecated */ published enum WritingMode {
5078 LR_TB = 0,
5079 RL_TB = 1,
5080 TB_RL = 2
5083 module drawing {
5084 published service TextProperties {
5085 service ::com::sun::star::style::CharacterProperties;
5086 service ::com::sun::star::style::ParagraphProperties;
5087 [optional] service ::com::sun::star::style::CharacterPropertiesAsian;
5088 [optional] service ::com::sun::star::style::CharacterPropertiesComplex;
5089 [optional] service ::com::sun::star::style::ParagraphPropertiesAsian;
5090 [optional] service ::com::sun::star::style::ParagraphPropertiesComplex;
5091 [property, optional] boolean IsNumbering;
5092 [property, optional] ::com::sun::star::container::XIndexReplace NumberingRules;
5093 [property] boolean TextAutoGrowHeight;
5094 [property] boolean TextAutoGrowWidth;
5095 [property] boolean TextContourFrame;
5096 [property] ::com::sun::star::drawing::TextFitToSizeType TextFitToSize;
5097 [property] ::com::sun::star::drawing::TextHorizontalAdjust TextHorizontalAdjust;
5098 [property] ::com::sun::star::drawing::TextVerticalAdjust TextVerticalAdjust;
5099 [property] long TextLeftDistance;
5100 [property] long TextRightDistance;
5101 [property] long TextUpperDistance;
5102 [property] long TextLowerDistance;
5103 [property] long TextMaximumFrameHeight;
5104 [property] long TextMaximumFrameWidth;
5105 [property] long TextMinimumFrameHeight;
5106 [property] long TextMinimumFrameWidth;
5107 [property] short TextAnimationAmount;
5108 [property] short TextAnimationCount;
5109 [property] short TextAnimationDelay;
5110 [property] ::com::sun::star::drawing::TextAnimationDirection TextAnimationDirection;
5111 [property] ::com::sun::star::drawing::TextAnimationKind TextAnimationKind;
5112 [property] boolean TextAnimationStartInside;
5113 [property] boolean TextAnimationStopInside;
5114 [property] ::com::sun::star::text::WritingMode TextWritingMode;
5117 module text {
5118 published interface XText;
5119 published interface XTextRange {
5120 interface ::com::sun::star::uno::XInterface;
5121 ::com::sun::star::text::XText getText();
5122 ::com::sun::star::text::XTextRange getStart();
5123 ::com::sun::star::text::XTextRange getEnd();
5124 string getString();
5125 void setString([in] string aString);
5127 published interface XTextCursor;
5128 published interface XSimpleText {
5129 interface ::com::sun::star::text::XTextRange;
5130 ::com::sun::star::text::XTextCursor createTextCursor();
5131 ::com::sun::star::text::XTextCursor createTextCursorByRange([in] ::com::sun::star::text::XTextRange aTextPosition);
5132 void insertString([in] ::com::sun::star::text::XTextRange xRange, [in] string aString, [in] boolean bAbsorb);
5133 void insertControlCharacter([in] ::com::sun::star::text::XTextRange xRange, [in] short nControlCharacter, [in] boolean bAbsorb) raises (::com::sun::star::lang::IllegalArgumentException);
5135 published interface XTextContent;
5136 published interface XText {
5137 interface ::com::sun::star::text::XSimpleText;
5138 void insertTextContent([in] ::com::sun::star::text::XTextRange xRange, [in] ::com::sun::star::text::XTextContent xContent, [in] boolean bAbsorb) raises (::com::sun::star::lang::IllegalArgumentException);
5139 void removeTextContent([in] ::com::sun::star::text::XTextContent xContent) raises (::com::sun::star::container::NoSuchElementException);
5142 module drawing {
5143 published service Text {
5144 service ::com::sun::star::drawing::TextProperties;
5145 interface ::com::sun::star::text::XText;
5147 published service CaptionShape {
5148 service ::com::sun::star::drawing::Shape;
5149 service ::com::sun::star::drawing::FillProperties;
5150 service ::com::sun::star::drawing::LineProperties;
5151 service ::com::sun::star::drawing::ShadowProperties;
5152 service ::com::sun::star::drawing::Text;
5153 service ::com::sun::star::drawing::RotationDescriptor;
5154 [property] long CornerRadius;
5155 [property] ::com::sun::star::awt::Point CaptionPoint;
5156 [property] short CaptionType;
5157 [property] boolean CaptionIsFixedAngle;
5158 [property] long CaptionAngle;
5159 [property] long CaptionGap;
5160 [property] long CaptionEscapeDirection;
5161 [property] boolean CaptionIsEscapeRelative;
5162 [property] long CaptionEscapeRelative;
5163 [property] long CaptionEscapeAbsolute;
5164 [property] long CaptionLineLength;
5165 [property] boolean CaptionIsFitLineLength;
5167 published constants CaptionType {
5168 const short angled = 1;
5169 const short connector = 2;
5170 const short straight = 0;
5172 published enum CircleKind {
5173 FULL = 0,
5174 SECTION = 1,
5175 CUT = 2,
5176 ARC = 3
5178 published enum PolygonKind {
5179 LINE = 0,
5180 POLY = 1,
5181 PLIN = 2,
5182 PATHLINE = 3,
5183 PATHFILL = 4,
5184 FREELINE = 5,
5185 FREEFILL = 6,
5186 PATHPOLY = 7,
5187 PATHPLIN = 8
5189 published service PolyPolygonBezierDescriptor {
5190 [property, readonly] ::com::sun::star::drawing::PolygonKind PolygonKind;
5191 [property] ::com::sun::star::drawing::PolyPolygonBezierCoords PolyPolygonBezier;
5192 [property] ::com::sun::star::drawing::PolyPolygonBezierCoords Geometry;
5194 published service ClosedBezierShape {
5195 service ::com::sun::star::drawing::Shape;
5196 service ::com::sun::star::drawing::LineProperties;
5197 service ::com::sun::star::drawing::FillProperties;
5198 service ::com::sun::star::drawing::PolyPolygonBezierDescriptor;
5199 service ::com::sun::star::drawing::Text;
5200 service ::com::sun::star::drawing::ShadowProperties;
5201 service ::com::sun::star::drawing::RotationDescriptor;
5203 published enum ColorMode {
5204 STANDARD = 0,
5205 GREYS = 1,
5206 MONO = 2,
5207 WATERMARK = 3
5209 published service ColorTable: ::com::sun::star::container::XNameContainer;
5210 published enum ConnectionType {
5211 AUTO = 0,
5212 LEFT = 1,
5213 TOP = 2,
5214 RIGHT = 3,
5215 BOTTOM = 4,
5216 SPECIAL = 5
5218 published enum ConnectorType {
5219 STANDARD = 0,
5220 CURVE = 1,
5221 LINE = 2,
5222 LINES = 3
5224 published service ConnectorProperties {
5225 [property] ::com::sun::star::drawing::ConnectorType EdgeKind;
5226 [property] long EdgeNode1HorzDist;
5227 [property] long EdgeNode1VertDist;
5228 [property] long EdgeNode2HorzDist;
5229 [property] long EdgeNode2VertDist;
5231 published service ConnectorShape {
5232 service ::com::sun::star::drawing::Shape;
5233 service ::com::sun::star::drawing::LineProperties;
5234 service ::com::sun::star::drawing::ConnectorProperties;
5235 service ::com::sun::star::drawing::ShadowProperties;
5236 service ::com::sun::star::drawing::Text;
5237 service ::com::sun::star::drawing::RotationDescriptor;
5238 [property] ::com::sun::star::drawing::XShape StartShape;
5239 [property] long StartGluePointIndex;
5240 [property] ::com::sun::star::awt::Point StartPosition;
5241 [property] ::com::sun::star::drawing::XShape EndShape;
5242 [property] ::com::sun::star::awt::Point EndPosition;
5243 [property] long EndGluePointIndex;
5244 [property] long EdgeLine1Delta;
5245 [property] long EdgeLine2Delta;
5246 [property] long EdgeLine3Delta;
5248 published interface XControlShape {
5249 interface ::com::sun::star::drawing::XShape;
5250 ::com::sun::star::awt::XControlModel getControl();
5251 void setControl([in] ::com::sun::star::awt::XControlModel xControl);
5253 published service ControlShape {
5254 service ::com::sun::star::drawing::Shape;
5255 interface ::com::sun::star::drawing::XControlShape;
5257 published typedef sequence< long > CoordinateSequence;
5258 published typedef sequence< ::com::sun::star::drawing::CoordinateSequence > CoordinateSequenceSequence;
5259 published service DashTable {
5260 interface ::com::sun::star::container::XNameContainer;
5262 /** @deprecated */ published enum MeasureKind {
5263 STANDARD = 0,
5264 RADIUS = 1
5266 published enum MeasureTextHorzPos {
5267 AUTO = 0,
5268 LEFTOUTSIDE = 1,
5269 INSIDE = 2,
5270 RIGHTOUTSIDE = 3
5272 published enum MeasureTextVertPos {
5273 AUTO = 0,
5274 EAST = 1,
5275 BREAKEDLINE = 2,
5276 WEST = 3,
5277 CENTERED = 4
5279 published service MeasureProperties {
5280 [property] boolean MeasureBelowReferenceEdge;
5281 [property] long MeasureHelpLine1Length;
5282 [property] long MeasureHelpLine2Length;
5283 [property] long MeasureHelpLineDistance;
5284 [property] long MeasureHelpLineOverhang;
5285 [property] ::com::sun::star::drawing::MeasureKind MeasureKind;
5286 [property] long MeasureLineDistance;
5287 [property] long MeasureOverhang;
5288 [property] boolean MeasureShowUnit;
5289 [property] boolean MeasureTextAutoAngle;
5290 [property] long MeasureTextAutoAngleView;
5291 [property] long MeasureTextFixedAngle;
5292 [property] ::com::sun::star::drawing::MeasureTextHorzPos MeasureTextHorizontalPosition;
5293 [property] ::com::sun::star::drawing::MeasureTextVertPos MeasureTextVerticalPosition;
5294 [property] boolean MeasureTextIsFixedAngle;
5295 [property] boolean MeasureTextRotate90;
5296 [property] boolean MeasureTextUpsideDown;
5297 [property, optional] short MeasureDecimalPlaces;
5299 published service Defaults {
5300 service ::com::sun::star::drawing::TextProperties;
5301 service ::com::sun::star::drawing::LineProperties;
5302 service ::com::sun::star::drawing::FillProperties;
5303 service ::com::sun::star::drawing::ShadowProperties;
5304 service ::com::sun::star::drawing::ConnectorProperties;
5305 service ::com::sun::star::drawing::MeasureProperties;
5307 published service DocumentSettings {
5308 service ::com::sun::star::document::Settings;
5309 [optional] service ::com::sun::star::document::HeaderFooterSettings;
5310 interface ::com::sun::star::beans::XPropertySet;
5311 [property, optional] short MeasureUnit;
5312 [property, optional] long ScaleNumerator;
5313 [property, optional] long ScaleDenominator;
5314 [property, optional] boolean IsPrintFitPage;
5315 [property, optional] boolean IsPrintTilePage;
5316 [property, optional] long PageNumberFormat;
5317 [property, optional] boolean ParagraphSummation;
5319 published typedef sequence< double > DoubleSequence;
5320 published typedef sequence< ::com::sun::star::drawing::DoubleSequence > DoubleSequenceSequence;
5321 published interface XShapes;
5322 published interface XShapeBinder {
5323 interface ::com::sun::star::uno::XInterface;
5324 ::com::sun::star::drawing::XShape bind([in] ::com::sun::star::drawing::XShapes xShapes);
5325 void unbind([in] ::com::sun::star::drawing::XShape xShape);
5327 published interface XShapes;
5328 published interface XShapeCombiner {
5329 interface ::com::sun::star::uno::XInterface;
5330 ::com::sun::star::drawing::XShape combine([in] ::com::sun::star::drawing::XShapes xShapes);
5331 void split([in] ::com::sun::star::drawing::XShape Group);
5333 published interface XShapeGroup;
5334 published interface XShapes;
5335 published interface XShapeGrouper {
5336 interface ::com::sun::star::uno::XInterface;
5337 ::com::sun::star::drawing::XShapeGroup group([in] ::com::sun::star::drawing::XShapes xShapes);
5338 void ungroup([in] ::com::sun::star::drawing::XShapeGroup aGroup);
5340 published interface XShapes {
5341 interface ::com::sun::star::container::XIndexAccess;
5342 void add([in] ::com::sun::star::drawing::XShape xShape);
5343 void remove([in] ::com::sun::star::drawing::XShape xShape);
5346 module view {
5347 published enum PaperOrientation {
5348 PORTRAIT = 0,
5349 LANDSCAPE = 1
5352 module drawing {
5353 published service GenericDrawPage {
5354 interface ::com::sun::star::drawing::XShapes;
5355 interface ::com::sun::star::drawing::XShapeGrouper;
5356 [optional] interface ::com::sun::star::drawing::XShapeCombiner;
5357 [optional] interface ::com::sun::star::drawing::XShapeBinder;
5358 [optional] interface ::com::sun::star::container::XNamed;
5359 [optional] interface ::com::sun::star::beans::XPropertySet;
5360 [property, optional] long BorderBottom;
5361 [property, optional] long BorderLeft;
5362 [property, optional] long BorderRight;
5363 [property, optional] long BorderTop;
5364 [property, optional] long Height;
5365 [property, optional] long Width;
5366 [property, optional, readonly] short Number;
5367 [property, optional] ::com::sun::star::view::PaperOrientation Orientation;
5368 [property, optional] ::com::sun::star::container::XNameContainer UserDefinedAttributes;
5369 [property, optional, readonly] boolean IsBackgroundDark;
5370 [property, optional] ::com::sun::star::container::XIndexAccess NavigationOrder;
5372 published interface XDrawPage;
5373 published interface XMasterPageTarget {
5374 interface ::com::sun::star::uno::XInterface;
5375 ::com::sun::star::drawing::XDrawPage getMasterPage();
5376 void setMasterPage([in] ::com::sun::star::drawing::XDrawPage xMasterPage);
5379 module form {
5380 published interface XFormsSupplier {
5381 interface ::com::sun::star::uno::XInterface;
5382 ::com::sun::star::container::XNameContainer getForms();
5385 module drawing {
5386 published service DrawPage {
5387 service ::com::sun::star::drawing::GenericDrawPage;
5388 interface ::com::sun::star::drawing::XMasterPageTarget;
5389 [optional] interface ::com::sun::star::form::XFormsSupplier;
5391 published interface XDrawPage;
5392 published interface XDrawPages;
5393 /** @deprecated */ published interface XDrawPageExpander {
5394 interface ::com::sun::star::uno::XInterface;
5395 ::com::sun::star::drawing::XDrawPages expand([in] ::com::sun::star::drawing::XDrawPage xPage);
5397 published interface XDrawPage;
5398 published interface XDrawPages;
5399 /** @deprecated */ published interface XDrawPageSummarizer {
5400 interface ::com::sun::star::uno::XInterface;
5401 ::com::sun::star::drawing::XDrawPage summarize([in] ::com::sun::star::drawing::XDrawPages xPages);
5403 published interface XDrawPage;
5404 published interface XDrawPages {
5405 interface ::com::sun::star::container::XIndexAccess;
5406 ::com::sun::star::drawing::XDrawPage insertNewByIndex([in] long nIndex);
5407 void remove([in] ::com::sun::star::drawing::XDrawPage xPage);
5409 published service DrawPages {
5410 interface ::com::sun::star::drawing::XDrawPages;
5411 [optional] interface ::com::sun::star::drawing::XDrawPageSummarizer;
5412 [optional] interface ::com::sun::star::drawing::XDrawPageExpander;
5414 /** @deprecated */ published enum DrawViewMode {
5415 DRAW = 0,
5416 NOTES = 1,
5417 HANDOUT = 2
5419 published interface XDrawPage;
5420 published interface XDrawPageDuplicator {
5421 interface ::com::sun::star::uno::XInterface;
5422 ::com::sun::star::drawing::XDrawPage duplicate([in] ::com::sun::star::drawing::XDrawPage xPage);
5424 published interface XDrawPagesSupplier {
5425 interface ::com::sun::star::uno::XInterface;
5426 ::com::sun::star::drawing::XDrawPages getDrawPages();
5428 published interface XLayerSupplier {
5429 interface ::com::sun::star::uno::XInterface;
5430 ::com::sun::star::container::XNameAccess getLayerManager();
5432 published interface XMasterPagesSupplier {
5433 interface ::com::sun::star::uno::XInterface;
5434 ::com::sun::star::drawing::XDrawPages getMasterPages();
5436 published interface XDrawPage;
5437 published interface XDrawView {
5438 interface ::com::sun::star::uno::XInterface;
5439 void setCurrentPage([in] ::com::sun::star::drawing::XDrawPage xPage);
5440 ::com::sun::star::drawing::XDrawPage getCurrentPage();
5443 module frame {
5444 published interface XFrame;
5445 published interface XController {
5446 interface ::com::sun::star::lang::XComponent;
5447 void attachFrame([in] ::com::sun::star::frame::XFrame Frame);
5448 boolean attachModel([in] ::com::sun::star::frame::XModel Model);
5449 boolean suspend([in] boolean Suspend);
5450 any getViewData();
5451 void restoreViewData([in] any Data);
5452 ::com::sun::star::frame::XModel getModel();
5453 ::com::sun::star::frame::XFrame getFrame();
5456 module util {
5457 published struct URL {
5458 string Complete;
5459 string Main;
5460 string Protocol;
5461 string User;
5462 string Password;
5463 string Server;
5464 short Port;
5465 string Path;
5466 string Name;
5467 string Arguments;
5468 string Mark;
5471 module frame {
5472 published struct DispatchDescriptor {
5473 ::com::sun::star::util::URL FeatureURL;
5474 string FrameName;
5475 long SearchFlags;
5477 published interface XDispatch;
5478 published interface XDispatchProvider {
5479 interface ::com::sun::star::uno::XInterface;
5480 ::com::sun::star::frame::XDispatch queryDispatch([in] ::com::sun::star::util::URL URL, [in] string TargetFrameName, [in] long SearchFlags);
5481 sequence< ::com::sun::star::frame::XDispatch > queryDispatches([in] sequence< ::com::sun::star::frame::DispatchDescriptor > Requests);
5484 module ui {
5485 published interface XContextMenuInterceptor;
5486 published interface XContextMenuInterception {
5487 interface ::com::sun::star::uno::XInterface;
5488 void registerContextMenuInterceptor([in] ::com::sun::star::ui::XContextMenuInterceptor Interceptor);
5489 void releaseContextMenuInterceptor([in] ::com::sun::star::ui::XContextMenuInterceptor Interceptor);
5492 module frame {
5493 published service Controller {
5494 interface ::com::sun::star::frame::XController;
5495 interface ::com::sun::star::frame::XDispatchProvider;
5496 [optional] interface ::com::sun::star::ui::XContextMenuInterception;
5497 [optional] interface ::com::sun::star::awt::XUserInputInterception;
5498 [optional] interface ::com::sun::star::view::XSelectionSupplier;
5499 [optional] interface ::com::sun::star::datatransfer::XTransferableSupplier;
5502 module view {
5503 published interface XControlAccess {
5504 interface ::com::sun::star::uno::XInterface;
5505 ::com::sun::star::awt::XControl getControl([in] ::com::sun::star::awt::XControlModel xModel) raises (::com::sun::star::container::NoSuchElementException);
5508 module form {
5509 published interface XForm;
5510 module runtime {
5511 interface XFormController;
5514 module view {
5515 interface XFormLayerAccess {
5516 interface ::com::sun::star::view::XControlAccess;
5517 ::com::sun::star::form::runtime::XFormController getFormController([in] ::com::sun::star::form::XForm Form);
5518 boolean isFormDesignMode();
5519 void setFormDesignMode([in] boolean DesignMode);
5522 module drawing {
5523 published interface XDrawPage;
5524 published service DrawingDocumentDrawView {
5525 service ::com::sun::star::frame::Controller;
5526 interface ::com::sun::star::drawing::XDrawView;
5527 interface ::com::sun::star::beans::XPropertySet;
5528 interface ::com::sun::star::view::XSelectionSupplier;
5529 [optional] interface ::com::sun::star::awt::XWindow;
5530 [optional] interface ::com::sun::star::view::XFormLayerAccess;
5531 [property] boolean IsMasterPageMode;
5532 [property] boolean IsLayerMode;
5533 [property] ::com::sun::star::drawing::XDrawPage CurrentPage;
5534 [property, readonly] ::com::sun::star::awt::Rectangle VisibleArea;
5535 [property, optional] short ZoomType;
5536 [property, optional] short ZoomValue;
5537 [property, optional] ::com::sun::star::awt::Point ViewOffset;
5539 /** @deprecated */ published service DrawingDocumentFactory {
5540 /** @deprecated */ interface ::com::sun::star::lang::XMultiServiceFactory;
5542 published service EllipseShape {
5543 service ::com::sun::star::drawing::Shape;
5544 service ::com::sun::star::drawing::LineProperties;
5545 service ::com::sun::star::drawing::FillProperties;
5546 service ::com::sun::star::drawing::Text;
5547 service ::com::sun::star::drawing::ShadowProperties;
5548 service ::com::sun::star::drawing::RotationDescriptor;
5549 [property] ::com::sun::star::drawing::CircleKind CircleKind;
5550 [property] long CircleStartAngle;
5551 [property] long CircleEndAngle;
5553 published enum ProjectionMode {
5554 PARALLEL = 0,
5555 PERSPECTIVE = 1
5557 published enum ShadeMode {
5558 FLAT = 0,
5559 PHONG = 1,
5560 SMOOTH = 2,
5561 DRAFT = 3
5563 published enum EscapeDirection {
5564 SMART = 0,
5565 LEFT = 1,
5566 RIGHT = 2,
5567 UP = 3,
5568 DOWN = 4,
5569 HORIZONTAL = 5,
5570 VERTICAL = 6
5572 /** @deprecated */ published struct GluePoint {
5573 ::com::sun::star::awt::Point Position;
5574 short EscapeDirection;
5575 boolean PositionAbsolute;
5576 short Alignment;
5578 published struct GluePoint2 {
5579 ::com::sun::star::awt::Point Position;
5580 boolean IsRelative;
5581 ::com::sun::star::drawing::Alignment PositionAlignment;
5582 ::com::sun::star::drawing::EscapeDirection Escape;
5583 boolean IsUserDefined;
5585 published service GradientTable {
5586 interface ::com::sun::star::container::XNameContainer;
5588 published interface XGraphicExportFilter {
5589 interface ::com::sun::star::document::XFilter;
5590 interface ::com::sun::star::document::XExporter;
5591 interface ::com::sun::star::document::XMimeTypeInfo;
5593 published service GraphicExportFilter: ::com::sun::star::drawing::XGraphicExportFilter;
5595 module graphic {
5596 published interface XGraphic;
5598 module drawing {
5599 published service GraphicObjectShape {
5600 service ::com::sun::star::drawing::Shape;
5601 service ::com::sun::star::drawing::Text;
5602 service ::com::sun::star::drawing::ShadowProperties;
5603 service ::com::sun::star::drawing::RotationDescriptor;
5604 [property] string GraphicURL;
5605 [property] string GraphicStreamURL;
5606 [property, optional] ::com::sun::star::awt::XBitmap GraphicObjectFillBitmap;
5607 [property] short AdjustLuminance;
5608 [property] short AdjustContrast;
5609 [property] short AdjustRed;
5610 [property] short AdjustGreen;
5611 [property] short AdjustBlue;
5612 [property] double Gamma;
5613 [property] short Transparency;
5614 [property] ::com::sun::star::drawing::ColorMode GraphicColorMode;
5615 [property, optional] ::com::sun::star::container::XIndexContainer ImageMap;
5616 [property, optional] ::com::sun::star::graphic::XGraphic Graphic;
5618 /** @deprecated */ published interface XShapeGroup {
5619 interface ::com::sun::star::drawing::XShape;
5620 void enterGroup();
5621 void leaveGroup();
5623 published service GroupShape {
5624 service ::com::sun::star::drawing::Shape;
5625 interface ::com::sun::star::drawing::XShapeGroup;
5626 interface ::com::sun::star::drawing::XShapes;
5628 published service HatchTable {
5629 interface ::com::sun::star::container::XNameContainer;
5631 published struct HomogenMatrixLine {
5632 double Column1;
5633 double Column2;
5634 double Column3;
5635 double Column4;
5637 published struct HomogenMatrix {
5638 ::com::sun::star::drawing::HomogenMatrixLine Line1;
5639 ::com::sun::star::drawing::HomogenMatrixLine Line2;
5640 ::com::sun::star::drawing::HomogenMatrixLine Line3;
5641 ::com::sun::star::drawing::HomogenMatrixLine Line4;
5643 published struct HomogenMatrixLine4 {
5644 double Column1;
5645 double Column2;
5646 double Column3;
5647 double Column4;
5649 published struct HomogenMatrix4 {
5650 ::com::sun::star::drawing::HomogenMatrixLine4 Line1;
5651 ::com::sun::star::drawing::HomogenMatrixLine4 Line2;
5652 ::com::sun::star::drawing::HomogenMatrixLine4 Line3;
5653 ::com::sun::star::drawing::HomogenMatrixLine4 Line4;
5655 published enum HorizontalDimensioning {
5656 AUTO = 0,
5657 LEFT = 1,
5658 CENTERED = 2,
5659 RIGHT = 3
5661 published service Layer {
5662 interface ::com::sun::star::beans::XPropertySet;
5663 [property] string Name;
5664 [property] boolean IsVisible;
5665 [property] boolean IsPrintable;
5666 [property] boolean IsLocked;
5668 published interface XLayer;
5669 published interface XLayerManager {
5670 interface ::com::sun::star::container::XIndexAccess;
5671 ::com::sun::star::drawing::XLayer insertNewByIndex([in] long nIndex);
5672 void remove([in] ::com::sun::star::drawing::XLayer xLayer) raises (::com::sun::star::container::NoSuchElementException);
5673 void attachShapeToLayer([in] ::com::sun::star::drawing::XShape xShape, [in] ::com::sun::star::drawing::XLayer xLayer);
5674 ::com::sun::star::drawing::XLayer getLayerForShape([in] ::com::sun::star::drawing::XShape xShape);
5676 published service LayerManager {
5677 interface ::com::sun::star::drawing::XLayerManager;
5678 interface ::com::sun::star::container::XNameAccess;
5680 published enum LayerType {
5681 LAYOUT = 0,
5682 CONTROLSA = 1,
5683 DIMENSIONIANG_LINES = 2,
5684 USER_DEFINED = 3
5686 /** @deprecated */ published enum LineEndType {
5687 NONE = 0,
5688 ARROW = 1,
5689 CIRCLE = 2,
5690 SQUARE = 3,
5691 SPECIAL = 4
5693 published service PolyPolygonDescriptor {
5694 [property, readonly] ::com::sun::star::drawing::PolygonKind PolygonKind;
5695 [property] ::com::sun::star::drawing::PointSequenceSequence PolyPolygon;
5696 [property] ::com::sun::star::drawing::PointSequenceSequence Geometry;
5698 published service LineShape {
5699 service ::com::sun::star::drawing::Shape;
5700 service ::com::sun::star::drawing::LineProperties;
5701 service ::com::sun::star::drawing::PolyPolygonDescriptor;
5702 service ::com::sun::star::drawing::Text;
5703 service ::com::sun::star::drawing::ShadowProperties;
5704 service ::com::sun::star::drawing::RotationDescriptor;
5706 published service MarkerTable {
5707 interface ::com::sun::star::container::XNameContainer;
5709 published service MasterPage {
5710 service ::com::sun::star::drawing::GenericDrawPage;
5712 published service MasterPages {
5713 interface ::com::sun::star::drawing::XDrawPages;
5715 published service MeasureShape {
5716 service ::com::sun::star::drawing::Shape;
5717 service ::com::sun::star::drawing::MeasureProperties;
5718 service ::com::sun::star::drawing::LineProperties;
5719 service ::com::sun::star::drawing::Text;
5720 service ::com::sun::star::drawing::ShadowProperties;
5721 service ::com::sun::star::drawing::RotationDescriptor;
5722 [property] ::com::sun::star::awt::Point StartPosition;
5723 [property] ::com::sun::star::awt::Point EndPosition;
5725 published enum MirrorAxis {
5726 VERTICAL = 0,
5727 HORIZONTAL = 1
5729 published enum NormalsKind {
5730 SPECIFIC = 0,
5731 FLAT = 1,
5732 SPHERE = 2
5734 published service OLE2Shape {
5735 service ::com::sun::star::drawing::Shape;
5736 [property] string CLSID;
5737 [property] string PersistName;
5738 [property, readonly] ::com::sun::star::frame::XModel Model;
5739 [property, readonly] boolean IsInternal;
5741 published service OpenBezierShape {
5742 service ::com::sun::star::drawing::Shape;
5743 service ::com::sun::star::drawing::LineProperties;
5744 service ::com::sun::star::drawing::PolyPolygonBezierDescriptor;
5745 service ::com::sun::star::drawing::Text;
5746 service ::com::sun::star::drawing::ShadowProperties;
5747 service ::com::sun::star::drawing::RotationDescriptor;
5749 published service PageShape {
5750 service ::com::sun::star::drawing::Shape;
5751 [property, optional] long PageNumber;
5753 published service PluginShape {
5754 service ::com::sun::star::drawing::Shape;
5755 [property] string PluginMimeType;
5756 [property] string PluginURL;
5757 [property] sequence< ::com::sun::star::beans::PropertyValue > PluginCommands;
5759 published service PolyLineShape {
5760 service ::com::sun::star::drawing::Shape;
5761 service ::com::sun::star::drawing::LineProperties;
5762 service ::com::sun::star::drawing::PolyPolygonDescriptor;
5763 service ::com::sun::star::drawing::Text;
5764 service ::com::sun::star::drawing::ShadowProperties;
5765 service ::com::sun::star::drawing::RotationDescriptor;
5767 published service PolyPolygonBezierShape {
5768 service ::com::sun::star::drawing::Shape;
5769 service ::com::sun::star::drawing::LineProperties;
5770 service ::com::sun::star::drawing::FillProperties;
5771 service ::com::sun::star::drawing::PolyPolygonBezierDescriptor;
5772 service ::com::sun::star::drawing::Text;
5773 service ::com::sun::star::drawing::ShadowProperties;
5774 service ::com::sun::star::drawing::RotationDescriptor;
5776 published service PolyPolygonShape {
5777 service ::com::sun::star::drawing::Shape;
5778 service ::com::sun::star::drawing::LineProperties;
5779 service ::com::sun::star::drawing::FillProperties;
5780 service ::com::sun::star::drawing::PolyPolygonDescriptor;
5781 service ::com::sun::star::drawing::Text;
5782 service ::com::sun::star::drawing::ShadowProperties;
5783 service ::com::sun::star::drawing::RotationDescriptor;
5785 published struct PolyPolygonShape3D {
5786 ::com::sun::star::drawing::DoubleSequenceSequence SequenceX;
5787 ::com::sun::star::drawing::DoubleSequenceSequence SequenceY;
5788 ::com::sun::star::drawing::DoubleSequenceSequence SequenceZ;
5790 published service RectangleShape {
5791 service ::com::sun::star::drawing::Shape;
5792 service ::com::sun::star::drawing::FillProperties;
5793 service ::com::sun::star::drawing::LineProperties;
5794 service ::com::sun::star::drawing::Text;
5795 service ::com::sun::star::drawing::ShadowProperties;
5796 service ::com::sun::star::drawing::RotationDescriptor;
5797 [property] long CornerRadius;
5799 published service ShapeCollection: ::com::sun::star::drawing::XShapes;
5800 published service Shapes {
5801 interface ::com::sun::star::drawing::XShapes;
5803 /** @deprecated */ published enum SnapObjectType {
5804 POINT = 0,
5805 VERTICAL = 1,
5806 HORIZONTAL = 2
5808 /** @deprecated */ published enum TextAdjust {
5809 LEFT = 0,
5810 CENTER = 1,
5811 RIGHT = 2,
5812 BLOCK = 3,
5813 STRETCH = 4
5815 published service TextShape {
5816 service ::com::sun::star::drawing::Shape;
5817 service ::com::sun::star::drawing::FillProperties;
5818 service ::com::sun::star::drawing::LineProperties;
5819 service ::com::sun::star::drawing::ShadowProperties;
5820 service ::com::sun::star::drawing::Text;
5821 service ::com::sun::star::drawing::RotationDescriptor;
5822 [property] long CornerRadius;
5824 /** @deprecated */ published enum TextureKind {
5825 LUMINANCE = 0,
5826 COLOR = 1
5828 published enum TextureKind2 {
5829 LUMINANCE = 0,
5830 INTENSITY = 1,
5831 COLOR = 2
5833 published enum TextureMode {
5834 REPLACE = 0,
5835 MODULATE = 1,
5836 BLEND = 2
5838 published enum TextureProjectionMode {
5839 OBJECTSPECIFIC = 0,
5840 PARALLEL = 1,
5841 SPHERE = 2
5843 published service TransparencyGradientTable {
5844 interface ::com::sun::star::container::XNameContainer;
5846 published enum VerticalDimensioning {
5847 AUTO = 0,
5848 TOP = 1,
5849 CENTERED = 2,
5850 BOTTOM = 3
5852 /** @deprecated */ published interface XConnectableShape {
5853 interface ::com::sun::star::uno::XInterface;
5854 boolean canConnect([in] ::com::sun::star::awt::Point nPos, [in] boolean bCreateGluePoint, [in] long nMaxDist);
5855 boolean doConnect([in] ::com::sun::star::awt::Point nPos, [in] boolean bCreateGluePoint, [in] long nMaxDist);
5857 /** @deprecated */ published interface XConnectorShape {
5858 interface ::com::sun::star::drawing::XShape;
5859 void connectStart([in] ::com::sun::star::drawing::XConnectableShape xShape, [in] ::com::sun::star::drawing::ConnectionType nPos);
5860 void connectEnd([in] ::com::sun::star::drawing::XConnectableShape xShape, [in] ::com::sun::star::drawing::ConnectionType nPos);
5861 void disconnectBegin([in] ::com::sun::star::drawing::XConnectableShape xShape);
5862 void disconnectEnd([in] ::com::sun::star::drawing::XConnectableShape xShape);
5864 published interface XDrawPage {
5865 interface ::com::sun::star::drawing::XShapes;
5867 published interface XLayer {
5868 interface ::com::sun::star::beans::XPropertySet;
5871 module frame {
5872 published interface XStatusListener;
5873 published interface XDispatch {
5874 interface ::com::sun::star::uno::XInterface;
5875 void dispatch([in] ::com::sun::star::util::URL URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments);
5876 void addStatusListener([in] ::com::sun::star::frame::XStatusListener Control, [in] ::com::sun::star::util::URL URL);
5877 void removeStatusListener([in] ::com::sun::star::frame::XStatusListener Control, [in] ::com::sun::star::util::URL URL);
5880 module drawing {
5881 published interface XSelectionFunction {
5882 interface ::com::sun::star::lang::XComponent;
5883 interface ::com::sun::star::lang::XServiceInfo;
5884 interface ::com::sun::star::frame::XDispatch;
5885 interface ::com::sun::star::awt::XKeyHandler;
5886 interface ::com::sun::star::awt::XMouseClickHandler;
5887 interface ::com::sun::star::awt::XMouseMotionHandler;
5888 interface ::com::sun::star::view::XSelectionChangeListener;
5890 /** @deprecated */ published interface XShapeAligner {
5891 interface ::com::sun::star::uno::XInterface;
5892 void alignShapes([inout] ::com::sun::star::drawing::XShapes aShapes, [in] ::com::sun::star::drawing::Alignment eType);
5894 /** @deprecated */ published interface XShapeArranger {
5895 interface ::com::sun::star::uno::XInterface;
5896 void arrange([in] ::com::sun::star::drawing::XShapes xShapes, [in] ::com::sun::star::drawing::Arrangement eType);
5897 void bringToFront([in] ::com::sun::star::drawing::XShapes xShapes, [in] short nSteps);
5898 void sendToBack([in] ::com::sun::star::drawing::XShapes xShapes, [in] short nSteps);
5899 void setBehindShape([in] ::com::sun::star::drawing::XShapes xShapes, [in] ::com::sun::star::drawing::XShape xShape);
5900 void setInFrontOf([in] ::com::sun::star::drawing::XShapes xShapes, [in] ::com::sun::star::drawing::XShape xShape);
5901 void reverseOrder([in] ::com::sun::star::drawing::XShapes xShapes);
5903 /** @deprecated */ published interface XShapeMirror {
5904 interface ::com::sun::star::uno::XInterface;
5905 void mirror([inout] ::com::sun::star::drawing::XShapes aShapes, [in] ::com::sun::star::drawing::MirrorAxis eAxis);
5906 void mirrorAtAxis([inout] ::com::sun::star::drawing::XShapes aShapes, [in] ::com::sun::star::drawing::XShape aLine);
5908 /** @deprecated */ published interface XUniversalShapeDescriptor {
5909 interface ::com::sun::star::drawing::XShapeDescriptor;
5910 void setShapeType([in] string aShapeTypeName);
5913 module embed {
5914 published constants Actions {
5915 const long PREVENT_CLOSE = 1;
5916 const long PREVENT_TERMINATION = 2;
5918 published constants Aspects {
5919 const hyper MSOLE_CONTENT = 1;
5920 const hyper MSOLE_DOCPRINT = 8;
5921 const hyper MSOLE_ICON = 4;
5922 const hyper MSOLE_THUMBNAIL = 2;
5924 published exception InvalidStorageException: ::com::sun::star::io::IOException {
5926 published exception StorageWrappedTargetException: ::com::sun::star::lang::WrappedTargetException {
5929 module packages {
5930 published exception NoEncryptionException: ::com::sun::star::uno::Exception {
5932 published exception WrongPasswordException: ::com::sun::star::uno::Exception {
5935 module embed {
5936 published interface XStorage {
5937 interface ::com::sun::star::container::XNameAccess;
5938 interface ::com::sun::star::lang::XComponent;
5939 void copyToStorage([in] ::com::sun::star::embed::XStorage xDest) raises (::com::sun::star::embed::InvalidStorageException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::io::IOException, ::com::sun::star::embed::StorageWrappedTargetException);
5940 ::com::sun::star::io::XStream openStreamElement([in] string sStreamName, [in] long nOpenMode) raises (::com::sun::star::embed::InvalidStorageException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::packages::WrongPasswordException, ::com::sun::star::io::IOException, ::com::sun::star::embed::StorageWrappedTargetException);
5941 ::com::sun::star::io::XStream openEncryptedStreamElement([in] string sStreamName, [in] long nOpenMode, [in] string sPassword) raises (::com::sun::star::embed::InvalidStorageException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::packages::NoEncryptionException, ::com::sun::star::packages::WrongPasswordException, ::com::sun::star::io::IOException, ::com::sun::star::embed::StorageWrappedTargetException);
5942 ::com::sun::star::embed::XStorage openStorageElement([in] string sStorName, [in] long nOpenMode) raises (::com::sun::star::embed::InvalidStorageException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::io::IOException, ::com::sun::star::embed::StorageWrappedTargetException);
5943 ::com::sun::star::io::XStream cloneStreamElement([in] string sStreamName) raises (::com::sun::star::embed::InvalidStorageException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::packages::WrongPasswordException, ::com::sun::star::io::IOException, ::com::sun::star::embed::StorageWrappedTargetException);
5944 ::com::sun::star::io::XStream cloneEncryptedStreamElement([in] string sStreamName, [in] string sPassword) raises (::com::sun::star::embed::InvalidStorageException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::packages::NoEncryptionException, ::com::sun::star::packages::WrongPasswordException, ::com::sun::star::io::IOException, ::com::sun::star::embed::StorageWrappedTargetException);
5945 void copyLastCommitTo([in] ::com::sun::star::embed::XStorage xTargetStorage) raises (::com::sun::star::embed::InvalidStorageException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::io::IOException, ::com::sun::star::embed::StorageWrappedTargetException);
5946 void copyStorageElementLastCommitTo([in] string sStorName, [in] ::com::sun::star::embed::XStorage xTargetStorage) raises (::com::sun::star::embed::InvalidStorageException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::io::IOException, ::com::sun::star::embed::StorageWrappedTargetException);
5947 boolean isStreamElement([in] string sElementName) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::embed::InvalidStorageException);
5948 boolean isStorageElement([in] string sElementName) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::embed::InvalidStorageException);
5949 void removeElement([in] string sElementName) raises (::com::sun::star::embed::InvalidStorageException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException, ::com::sun::star::io::IOException, ::com::sun::star::embed::StorageWrappedTargetException);
5950 void renameElement([in] string sElementName, [in] string sNewName) raises (::com::sun::star::embed::InvalidStorageException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException, ::com::sun::star::container::ElementExistException, ::com::sun::star::io::IOException, ::com::sun::star::embed::StorageWrappedTargetException);
5951 void copyElementTo([in] string sElementName, [in] ::com::sun::star::embed::XStorage xDest, [in] string sNewName) raises (::com::sun::star::embed::InvalidStorageException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException, ::com::sun::star::container::ElementExistException, ::com::sun::star::io::IOException, ::com::sun::star::embed::StorageWrappedTargetException);
5952 void moveElementTo([in] string sElementName, [in] ::com::sun::star::embed::XStorage xDest, [in] string sNewName) raises (::com::sun::star::embed::InvalidStorageException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException, ::com::sun::star::container::ElementExistException, ::com::sun::star::io::IOException, ::com::sun::star::embed::StorageWrappedTargetException);
5954 published service BaseStorage {
5955 interface ::com::sun::star::embed::XStorage;
5956 interface ::com::sun::star::beans::XPropertySet;
5957 [property, readonly] long OpenMode;
5958 [property, optional, readonly] string URL;
5961 module frame {
5962 published interface XFrame;
5964 module embed {
5965 published service DocumentCloser: ::com::sun::star::lang::XComponent {
5966 DocumentCloserCtor1([in] ::com::sun::star::frame::XFrame xFrame) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::frame::DoubleInitializationException, ::com::sun::star::uno::Exception);
5968 published constants ElementModes {
5969 const long NOCREATE = 16;
5970 const long READ = 1;
5971 const long READWRITE = 7;
5972 const long SEEKABLE = 2;
5973 const long SEEKABLEREAD = 3;
5974 const long TRUNCATE = 8;
5975 const long WRITE = 4;
5977 published constants EmbedMapUnits {
5978 const long ONE_1000TH_INCH = 4;
5979 const long ONE_100TH_INCH = 5;
5980 const long ONE_100TH_MM = 0;
5981 const long ONE_10TH_INCH = 6;
5982 const long ONE_10TH_MM = 1;
5983 const long ONE_CM = 3;
5984 const long ONE_INCH = 7;
5985 const long ONE_MM = 2;
5986 const long PIXEL = 10;
5987 const long POINT = 8;
5988 const long TWIP = 9;
5990 published constants EmbedMisc {
5991 const hyper EMBED_ACTIVATEIMMEDIATELY = 4294967296;
5992 const hyper EMBED_NEEDSSIZEONLOAD = 17179869184;
5993 const hyper EMBED_NEVERRESIZE = 8589934592;
5994 const hyper MS_EMBED_ACTIVATEWHENVISIBLE = 256;
5995 const hyper MS_EMBED_ACTSLIKEBUTTON = 4096;
5996 const hyper MS_EMBED_ACTSLIKELABEL = 8192;
5997 const hyper MS_EMBED_ALIGNABLE = 32768;
5998 const hyper MS_EMBED_ALWAYSRUN = 2048;
5999 const hyper MS_EMBED_CANLINKBYOLE1 = 32;
6000 const hyper MS_EMBED_CANTLINKINSIDE = 16;
6001 const hyper MS_EMBED_IGNOREACTIVATEWHENVISIBLE = 524288;
6002 const hyper MS_EMBED_IMEMODE = 262144;
6003 const hyper MS_EMBED_INSERTNOTREPLACE = 4;
6004 const hyper MS_EMBED_INSIDEOUT = 128;
6005 const hyper MS_EMBED_INVISIBLEATRUNTIME = 1024;
6006 const hyper MS_EMBED_ISLINKOBJECT = 64;
6007 const hyper MS_EMBED_NOUIACTIVATE = 16384;
6008 const hyper MS_EMBED_ONLYICONIC = 2;
6009 const hyper MS_EMBED_RECOMPOSEONRESIZE = 1;
6010 const hyper MS_EMBED_RENDERINGISDEVICEINDEPENDENT = 512;
6011 const hyper MS_EMBED_SETCLIENTSITEFIRST = 131072;
6012 const hyper MS_EMBED_SIMPLEFRAME = 65536;
6013 const hyper MS_EMBED_STATIC = 8;
6014 const hyper MS_EMBED_SUPPORTSMULTILEVELUNDO = 2097152;
6015 const hyper MS_EMBED_WANTSTOMENUMERGE = 1048576;
6017 published constants EmbedStates {
6018 const long ACTIVE = 2;
6019 const long INPLACE_ACTIVE = 3;
6020 const long LOADED = 0;
6021 const long RUNNING = 1;
6022 const long UI_ACTIVE = 4;
6024 published constants EmbedUpdateModes {
6025 const long ALWAYS_UPDATE = 0;
6026 const long EXPLICIT_UPDATE = 1;
6028 published constants EmbedVerbs {
6029 const long MS_OLEVERB_DISCARDUNDOSTATE = -6;
6030 const long MS_OLEVERB_HIDE = -3;
6031 const long MS_OLEVERB_IPACTIVATE = -5;
6032 const long MS_OLEVERB_OPEN = -2;
6033 const long MS_OLEVERB_PRIMARY = 0;
6034 const long MS_OLEVERB_SHOW = -1;
6035 const long MS_OLEVERB_UIACTIVATE = -4;
6037 published interface XEmbedObjectCreator {
6038 interface ::com::sun::star::uno::XInterface;
6039 ::com::sun::star::uno::XInterface createInstanceInitNew([in] sequence< byte > aClassID, [in] string sClassName, [in] ::com::sun::star::embed::XStorage xStorage, [in] string sEntryName, [in] sequence< ::com::sun::star::beans::PropertyValue > aObjectArgs) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
6040 ::com::sun::star::uno::XInterface createInstanceInitFromEntry([in] ::com::sun::star::embed::XStorage xStorage, [in] string sEntryName, [in] sequence< ::com::sun::star::beans::PropertyValue > aMediaDescriptor, [in] sequence< ::com::sun::star::beans::PropertyValue > aObjectArgs) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException, ::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
6041 ::com::sun::star::uno::XInterface createInstanceInitFromMediaDescriptor([in] ::com::sun::star::embed::XStorage xStorage, [in] string sEntryName, [in] sequence< ::com::sun::star::beans::PropertyValue > aMediaDescriptor, [in] sequence< ::com::sun::star::beans::PropertyValue > aObjectArgs) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
6043 published interface XEmbedObjectFactory {
6044 interface ::com::sun::star::uno::XInterface;
6045 ::com::sun::star::uno::XInterface createInstanceUserInit([in] sequence< byte > aClassID, [in] string sClassName, [in] ::com::sun::star::embed::XStorage xStorage, [in] string sEntName, [in] long nEntryConnectionMode, [in] sequence< ::com::sun::star::beans::PropertyValue > aArgs, [in] sequence< ::com::sun::star::beans::PropertyValue > aObjectArgs) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
6047 published interface XLinkCreator {
6048 interface ::com::sun::star::uno::XInterface;
6049 ::com::sun::star::uno::XInterface createInstanceLink([in] ::com::sun::star::embed::XStorage xStorage, [in] string sEntryName, [in] sequence< ::com::sun::star::beans::PropertyValue > aArgs, [in] sequence< ::com::sun::star::beans::PropertyValue > aObjectArgs) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
6051 published interface XLinkFactory {
6052 interface ::com::sun::star::uno::XInterface;
6053 ::com::sun::star::uno::XInterface createInstanceLinkUserInit([in] sequence< byte > aClassID, [in] string ClassName, [in] ::com::sun::star::embed::XStorage xStorage, [in] string sEntryName, [in] sequence< ::com::sun::star::beans::PropertyValue > aArgs, [in] sequence< ::com::sun::star::beans::PropertyValue > aObjectArgs) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
6056 module frame {
6057 published interface XDispatchProviderInterceptor;
6059 module embed {
6060 published service EmbeddedObjectDescriptor {
6061 [property, optional] boolean StoreVisualReplacement;
6062 [property, optional] ::com::sun::star::frame::XDispatchProviderInterceptor OutplaceDispatchInterceptor;
6063 [property, optional] ::com::sun::star::embed::XStorage RecoveryStorage;
6065 published constants EntryInitModes {
6066 const long DEFAULT_INIT = 0;
6067 const long MEDIA_DESCRIPTOR_INIT = 3;
6068 const long NO_INIT = 2;
6069 const long TRUNCATE_INIT = 1;
6070 const long URL_LINK_INIT = 4;
6072 published service FileSystemStorage {
6073 service ::com::sun::star::embed::BaseStorage;
6075 published service FileSystemStorageFactory: ::com::sun::star::lang::XSingleServiceFactory;
6076 published interface XHatchWindow;
6077 published interface XHatchWindowFactory {
6078 interface ::com::sun::star::uno::XInterface;
6079 ::com::sun::star::embed::XHatchWindow createHatchWindowInstance([in] ::com::sun::star::awt::XWindowPeer xParent, [in] ::com::sun::star::awt::Rectangle aBounds, [in] ::com::sun::star::awt::Size aSize) raises (::com::sun::star::lang::IllegalArgumentException);
6081 published interface XEmbeddedObject;
6082 published struct InsertedObjectInfo {
6083 ::com::sun::star::embed::XEmbeddedObject Object;
6084 sequence< ::com::sun::star::beans::NamedValue > Options;
6086 published interface XActionsApproval;
6087 published service InstanceLocker: ::com::sun::star::lang::XComponent {
6088 InstanceLockerCtor1([in] ::com::sun::star::uno::XInterface xInstance, [in] long nActions) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::frame::DoubleInitializationException, ::com::sun::star::uno::Exception);
6089 InstanceLockerCtor2([in] ::com::sun::star::uno::XInterface xInstance, [in] long nActions, [in] ::com::sun::star::embed::XActionsApproval xApprove) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::frame::DoubleInitializationException, ::com::sun::star::uno::Exception);
6091 published exception LinkageMisuseException: ::com::sun::star::uno::Exception {
6093 published interface XEmbedObjectClipboardCreator {
6094 interface ::com::sun::star::uno::XInterface;
6095 ::com::sun::star::embed::InsertedObjectInfo createInstanceInitFromClipboard([in] ::com::sun::star::embed::XStorage xStorage, [in] string sEntryName, [in] sequence< ::com::sun::star::beans::PropertyValue > aObjectArgs) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
6097 published exception WrongStateException: ::com::sun::star::uno::Exception {
6099 published exception NeedsRunningStateException: ::com::sun::star::embed::WrongStateException {
6101 published exception NoVisualAreaSizeException: ::com::sun::star::uno::Exception {
6103 published interface XClassifiedObject {
6104 interface ::com::sun::star::uno::XInterface;
6105 sequence< byte > getClassID();
6106 string getClassName();
6107 void setClassInfo([in] sequence< byte > aClassID, [in] string sClassName) raises (::com::sun::star::lang::NoSupportException);
6109 published interface XTransactedObject {
6110 interface ::com::sun::star::uno::XInterface;
6111 void commit() raises (::com::sun::star::io::IOException, ::com::sun::star::lang::WrappedTargetException);
6112 void revert() raises (::com::sun::star::io::IOException, ::com::sun::star::lang::WrappedTargetException);
6114 published interface XOLESimpleStorage {
6115 interface ::com::sun::star::container::XNameContainer;
6116 interface ::com::sun::star::lang::XComponent;
6117 interface ::com::sun::star::embed::XTransactedObject;
6118 interface ::com::sun::star::embed::XClassifiedObject;
6120 published service OLESimpleStorage: ::com::sun::star::embed::XOLESimpleStorage {
6121 createFromInputStream([in] ::com::sun::star::io::XInputStream xInputStream, [in] boolean bNoTempCopy);
6122 createFromStream([in] ::com::sun::star::io::XStream xStream, [in] boolean bNoTempCopy);
6124 published exception ObjectSaveVetoException: ::com::sun::star::uno::Exception {
6126 published exception StateChangeInProgressException: ::com::sun::star::embed::WrongStateException {
6127 long TargetState;
6129 published interface XEncryptionProtectedSource {
6130 interface ::com::sun::star::uno::XInterface;
6131 void setEncryptionPassword([in] string sPassword) raises (::com::sun::star::io::IOException);
6132 void removeEncryption() raises (::com::sun::star::io::IOException);
6134 published interface XTransactionListener;
6135 published interface XTransactionBroadcaster {
6136 interface ::com::sun::star::uno::XInterface;
6137 void addTransactionListener([in] ::com::sun::star::embed::XTransactionListener aListener);
6138 void removeTransactionListener([in] ::com::sun::star::embed::XTransactionListener aListener);
6140 published service Storage {
6141 service ::com::sun::star::embed::BaseStorage;
6142 interface ::com::sun::star::embed::XTransactedObject;
6143 interface ::com::sun::star::embed::XTransactionBroadcaster;
6144 [optional] interface ::com::sun::star::embed::XEncryptionProtectedSource;
6145 [property] string MediaType;
6146 [property, optional] string Version;
6147 [property, readonly] boolean MediaTypeFallbackIsUsed;
6148 [property, readonly] boolean IsRoot;
6149 [property, optional, readonly] boolean RepairPackage;
6150 [property, optional, readonly] boolean HasEncryptedEntries;
6151 [property, optional, readonly] boolean HasNonEncryptedEntries;
6153 published service StorageFactory: ::com::sun::star::lang::XSingleServiceFactory;
6154 published constants StorageFormats {
6155 const long OFOPXML = 3;
6156 const long PACKAGE = 1;
6157 const long ZIP = 2;
6159 published service StorageStream {
6160 interface ::com::sun::star::io::XStream;
6161 interface ::com::sun::star::lang::XComponent;
6162 interface ::com::sun::star::beans::XPropertySet;
6163 [optional] interface ::com::sun::star::io::XSeekable;
6164 [optional] interface ::com::sun::star::embed::XEncryptionProtectedSource;
6165 [property] string MediaType;
6166 [property] boolean IsCompressed;
6167 [property, readonly] boolean IsEncrypted;
6168 [property] boolean UseCommonStoragePasswordEncryption;
6169 [property, readonly] long Size;
6171 published exception UnreachableStateException: ::com::sun::star::uno::Exception {
6172 long CurrentState;
6173 long NextState;
6175 published exception UseBackupException: ::com::sun::star::io::IOException {
6176 string TemporaryFileURL;
6178 published constants VerbAttributes {
6179 const long MS_VERBATTR_NEVERDIRTIES = 1;
6180 const long MS_VERBATTR_ONCONTAINERMENU = 2;
6182 published struct VerbDescriptor {
6183 long VerbID;
6184 string VerbName;
6185 long VerbFlags;
6186 long VerbAttributes;
6188 published struct VisualRepresentation {
6189 ::com::sun::star::datatransfer::DataFlavor Flavor;
6190 any Data;
6192 published interface XActionsApproval {
6193 interface ::com::sun::star::uno::XInterface;
6194 boolean approveAction([in] long nAction);
6196 published interface XCommonEmbedPersist {
6197 interface ::com::sun::star::uno::XInterface;
6198 void storeOwn() raises (::com::sun::star::embed::WrongStateException, ::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
6199 boolean isReadonly() raises (::com::sun::star::embed::WrongStateException);
6200 void reload([in] sequence< ::com::sun::star::beans::PropertyValue > aMediaArgs, [in] sequence< ::com::sun::star::beans::PropertyValue > aObjectArgs) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::embed::WrongStateException, ::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
6203 module util {
6204 published interface XCloseable;
6206 module embed {
6207 published interface XComponentSupplier {
6208 interface ::com::sun::star::uno::XInterface;
6209 ::com::sun::star::util::XCloseable getComponent();
6211 published interface XEmbedPersist {
6212 interface ::com::sun::star::embed::XCommonEmbedPersist;
6213 void setPersistentEntry([in] ::com::sun::star::embed::XStorage xStorage, [in] string sEntName, [in] long nEntryConnectionMode, [in] sequence< ::com::sun::star::beans::PropertyValue > aMediaArgs, [in] sequence< ::com::sun::star::beans::PropertyValue > aObjectArgs) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::embed::WrongStateException, ::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
6214 void storeToEntry([in] ::com::sun::star::embed::XStorage xStorage, [in] string sEntName, [in] sequence< ::com::sun::star::beans::PropertyValue > aMediaArgs, [in] sequence< ::com::sun::star::beans::PropertyValue > aObjectArgs) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::embed::WrongStateException, ::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
6215 void storeAsEntry([in] ::com::sun::star::embed::XStorage xStorage, [in] string sEntName, [in] sequence< ::com::sun::star::beans::PropertyValue > aMediaArgs, [in] sequence< ::com::sun::star::beans::PropertyValue > aObjectArgs) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::embed::WrongStateException, ::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
6216 void saveCompleted([in] boolean bUseNew) raises (::com::sun::star::embed::WrongStateException, ::com::sun::star::uno::Exception);
6217 boolean hasEntry() raises (::com::sun::star::embed::WrongStateException);
6218 string getEntryName() raises (::com::sun::star::embed::WrongStateException);
6220 published interface XEmbeddedClient {
6221 interface ::com::sun::star::embed::XComponentSupplier;
6222 void saveObject() raises (::com::sun::star::embed::ObjectSaveVetoException, ::com::sun::star::uno::Exception);
6223 void visibilityChanged([in] boolean bVisible) raises (::com::sun::star::embed::WrongStateException);
6225 published interface XStateChangeListener;
6226 published interface XStateChangeBroadcaster {
6227 interface ::com::sun::star::uno::XInterface;
6228 void addStateChangeListener([in] ::com::sun::star::embed::XStateChangeListener xListener);
6229 void removeStateChangeListener([in] ::com::sun::star::embed::XStateChangeListener xListener);
6231 published interface XVisualObject {
6232 interface ::com::sun::star::uno::XInterface;
6233 void setVisualAreaSize([in] hyper nAspect, [in] ::com::sun::star::awt::Size aSize) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::embed::WrongStateException, ::com::sun::star::uno::Exception);
6234 ::com::sun::star::awt::Size getVisualAreaSize([in] hyper nAspect) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::embed::WrongStateException, ::com::sun::star::uno::Exception);
6235 ::com::sun::star::embed::VisualRepresentation getPreferredVisualRepresentation([in] hyper nAspect) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::embed::WrongStateException, ::com::sun::star::uno::Exception);
6236 long getMapUnit([in] hyper nAspect) raises (::com::sun::star::uno::Exception);
6239 module util {
6240 published interface XCloseListener;
6241 published interface XCloseBroadcaster {
6242 interface ::com::sun::star::uno::XInterface;
6243 void addCloseListener([in] ::com::sun::star::util::XCloseListener Listener);
6244 void removeCloseListener([in] ::com::sun::star::util::XCloseListener Listener);
6246 published interface XCloseable {
6247 interface ::com::sun::star::util::XCloseBroadcaster;
6248 void close([in] boolean DeliverOwnership) raises (::com::sun::star::util::CloseVetoException);
6251 module embed {
6252 published interface XEmbeddedObject {
6253 interface ::com::sun::star::embed::XVisualObject;
6254 interface ::com::sun::star::embed::XClassifiedObject;
6255 interface ::com::sun::star::embed::XComponentSupplier;
6256 interface ::com::sun::star::embed::XStateChangeBroadcaster;
6257 interface ::com::sun::star::document::XEventBroadcaster;
6258 interface ::com::sun::star::util::XCloseable;
6259 void changeState([in] long nNewState) raises (::com::sun::star::embed::UnreachableStateException, ::com::sun::star::embed::WrongStateException, ::com::sun::star::uno::Exception);
6260 sequence< long > getReachableStates() raises (::com::sun::star::embed::NeedsRunningStateException, ::com::sun::star::embed::WrongStateException);
6261 long getCurrentState() raises (::com::sun::star::embed::WrongStateException);
6262 void doVerb([in] long nVerbID) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::embed::WrongStateException, ::com::sun::star::embed::UnreachableStateException, ::com::sun::star::uno::Exception);
6263 sequence< ::com::sun::star::embed::VerbDescriptor > getSupportedVerbs() raises (::com::sun::star::embed::NeedsRunningStateException, ::com::sun::star::embed::WrongStateException);
6264 void setClientSite([in] ::com::sun::star::embed::XEmbeddedClient xClient) raises (::com::sun::star::embed::WrongStateException);
6265 ::com::sun::star::embed::XEmbeddedClient getClientSite() raises (::com::sun::star::embed::WrongStateException);
6266 void update() raises (::com::sun::star::embed::WrongStateException, ::com::sun::star::uno::Exception);
6267 void setUpdateMode([in] long nMode) raises (::com::sun::star::embed::WrongStateException);
6268 hyper getStatus([in] hyper nAspect) raises (::com::sun::star::embed::WrongStateException);
6269 void setContainerName([in] string sName);
6271 published interface XExtendedStorageStream {
6272 interface ::com::sun::star::io::XStream;
6273 interface ::com::sun::star::lang::XComponent;
6274 [optional] interface ::com::sun::star::io::XSeekable;
6275 [optional] interface ::com::sun::star::embed::XEncryptionProtectedSource;
6276 [optional] interface ::com::sun::star::beans::XPropertySet;
6277 [optional] interface ::com::sun::star::embed::XTransactedObject;
6278 [optional] interface ::com::sun::star::embed::XTransactionBroadcaster;
6280 published interface XHatchWindowController;
6281 published interface XHatchWindow {
6282 interface ::com::sun::star::lang::XComponent;
6283 [attribute] ::com::sun::star::awt::Size HatchBorderSize;
6284 void setController([in] ::com::sun::star::embed::XHatchWindowController xController);
6286 published interface XHatchWindowController {
6287 interface ::com::sun::star::uno::XInterface;
6288 void requestPositioning([in] ::com::sun::star::awt::Rectangle aRect);
6289 ::com::sun::star::awt::Rectangle calcAdjustedRectangle([in] ::com::sun::star::awt::Rectangle aRect);
6290 void activated();
6291 void deactivated();
6293 published interface XHierarchicalStorageAccess {
6294 interface ::com::sun::star::uno::XInterface;
6295 ::com::sun::star::embed::XExtendedStorageStream openStreamElementByHierarchicalName([in] string sStreamPath, [in] long nOpenMode) raises (::com::sun::star::embed::InvalidStorageException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::packages::WrongPasswordException, ::com::sun::star::io::IOException, ::com::sun::star::embed::StorageWrappedTargetException);
6296 ::com::sun::star::embed::XExtendedStorageStream openEncryptedStreamElementByHierarchicalName([in] string sStreamName, [in] long nOpenMode, [in] string sPassword) raises (::com::sun::star::embed::InvalidStorageException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::packages::NoEncryptionException, ::com::sun::star::packages::WrongPasswordException, ::com::sun::star::io::IOException, ::com::sun::star::embed::StorageWrappedTargetException);
6297 void removeStreamElementByHierarchicalName([in] string sElementPath) raises (::com::sun::star::embed::InvalidStorageException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException, ::com::sun::star::io::IOException, ::com::sun::star::embed::StorageWrappedTargetException);
6299 published interface XInplaceObject {
6300 interface ::com::sun::star::uno::XInterface;
6301 void setObjectRectangles([in] ::com::sun::star::awt::Rectangle aPosRect, [in] ::com::sun::star::awt::Rectangle aClipRect) raises (::com::sun::star::embed::WrongStateException, ::com::sun::star::uno::Exception);
6302 void enableModeless([in] boolean bEnable) raises (::com::sun::star::embed::WrongStateException, ::com::sun::star::uno::Exception);
6303 void translateAccelerators([in] sequence< ::com::sun::star::awt::KeyEvent > aKeys) raises (::com::sun::star::embed::WrongStateException);
6305 published interface XInsertObjectDialog {
6306 interface ::com::sun::star::uno::XInterface;
6307 ::com::sun::star::embed::InsertedObjectInfo createInstanceByDialog([in] ::com::sun::star::embed::XStorage xStorage, [in] string sEntName, [in] sequence< ::com::sun::star::beans::PropertyValue > lObjArgs) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
6309 published interface XLinkageSupport {
6310 interface ::com::sun::star::embed::XCommonEmbedPersist;
6311 void breakLink([in] ::com::sun::star::embed::XStorage xStorage, [in] string sEntryName) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::embed::WrongStateException, ::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
6312 boolean isLink() raises (::com::sun::star::embed::WrongStateException);
6313 string getLinkURL() raises (::com::sun::star::embed::WrongStateException, ::com::sun::star::uno::Exception);
6316 module packages {
6317 published exception NoRawFormatException: ::com::sun::star::io::IOException {
6320 module embed {
6321 published interface XOptimizedStorage {
6322 interface ::com::sun::star::uno::XInterface;
6323 void insertRawNonEncrStreamElementDirect([in] string sStreamName, [in] ::com::sun::star::io::XInputStream xInStream) raises (::com::sun::star::embed::InvalidStorageException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::packages::NoRawFormatException, ::com::sun::star::container::ElementExistException, ::com::sun::star::io::IOException, ::com::sun::star::embed::StorageWrappedTargetException);
6324 void insertStreamElementDirect([in] string sStreamName, [in] ::com::sun::star::io::XInputStream xInStream, [in] sequence< ::com::sun::star::beans::PropertyValue > aProperties) raises (::com::sun::star::embed::InvalidStorageException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::ElementExistException, ::com::sun::star::io::IOException, ::com::sun::star::embed::StorageWrappedTargetException);
6325 void copyElementDirectlyTo([in] string sSourceName, [in] ::com::sun::star::embed::XOptimizedStorage xTargetStorage, [in] string sTargetName) raises (::com::sun::star::embed::InvalidStorageException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException, ::com::sun::star::container::ElementExistException, ::com::sun::star::io::IOException, ::com::sun::star::embed::StorageWrappedTargetException);
6326 void writeAndAttachToStream([in] ::com::sun::star::io::XStream xStream) raises (::com::sun::star::embed::InvalidStorageException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::io::IOException, ::com::sun::star::embed::StorageWrappedTargetException);
6327 void attachToURL([in] string sURL, [in] boolean bReadOnly) raises (::com::sun::star::embed::InvalidStorageException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::io::IOException, ::com::sun::star::embed::StorageWrappedTargetException);
6328 any getElementPropertyValue([in] string sElementName, [in] string sPropertyName) raises (::com::sun::star::embed::InvalidStorageException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException, ::com::sun::star::io::IOException, ::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::beans::PropertyVetoException, ::com::sun::star::embed::StorageWrappedTargetException);
6329 void copyStreamElementData([in] string sStreamName, [in] ::com::sun::star::io::XStream xTargetStream) raises (::com::sun::star::embed::InvalidStorageException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::packages::WrongPasswordException, ::com::sun::star::io::IOException, ::com::sun::star::embed::StorageWrappedTargetException);
6331 published interface XPackageStructureCreator {
6332 interface ::com::sun::star::uno::XInterface;
6333 void convertToPackage([in] string sFolderURL, [in] ::com::sun::star::io::XOutputStream xTargetStream) raises (::com::sun::star::io::IOException);
6335 published interface XPersistanceHolder {
6336 interface ::com::sun::star::uno::XInterface;
6337 void disconnectPersistence() raises (::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
6338 void connectPersistance([in] ::com::sun::star::io::XStream xStream) raises (::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
6340 published interface XRelationshipAccess {
6341 interface ::com::sun::star::uno::XInterface;
6342 boolean hasByID([in] string sID) raises (::com::sun::star::io::IOException);
6343 string getTargetByID([in] string sID) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::io::IOException);
6344 string getTypeByID([in] string sID) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::io::IOException);
6345 sequence< ::com::sun::star::beans::StringPair > getRelationshipByID([in] string sID) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::io::IOException);
6346 sequence< sequence< ::com::sun::star::beans::StringPair > > getRelationshipsByType([in] string sType) raises (::com::sun::star::io::IOException);
6347 sequence< sequence< ::com::sun::star::beans::StringPair > > getAllRelationships() raises (::com::sun::star::io::IOException);
6348 void insertRelationshipByID([in] string sID, [in] sequence< ::com::sun::star::beans::StringPair > aEntry, [in] boolean bReplace) raises (::com::sun::star::container::ElementExistException, ::com::sun::star::io::IOException);
6349 void removeRelationshipByID([in] string sID) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::io::IOException);
6350 void insertRelationships([in] sequence< sequence< ::com::sun::star::beans::StringPair > > aEntries, [in] boolean bReplace) raises (::com::sun::star::container::ElementExistException, ::com::sun::star::io::IOException);
6351 void clearRelationships() raises (::com::sun::star::io::IOException);
6353 published interface XStateChangeListener {
6354 interface ::com::sun::star::lang::XEventListener;
6355 void changingState([in] ::com::sun::star::lang::EventObject aEvent, [in] long nOldState, [in] long nNewState) raises (::com::sun::star::embed::WrongStateException);
6356 void stateChanged([in] ::com::sun::star::lang::EventObject aEvent, [in] long nOldState, [in] long nNewState);
6358 published interface XStorageRawAccess {
6359 interface ::com::sun::star::uno::XInterface;
6360 ::com::sun::star::io::XInputStream getPlainRawStreamElement([in] string sStreamName) raises (::com::sun::star::embed::InvalidStorageException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException, ::com::sun::star::io::IOException, ::com::sun::star::embed::StorageWrappedTargetException);
6361 ::com::sun::star::io::XInputStream getRawEncrStreamElement([in] string sStreamName) raises (::com::sun::star::embed::InvalidStorageException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::packages::NoEncryptionException, ::com::sun::star::container::NoSuchElementException, ::com::sun::star::io::IOException, ::com::sun::star::embed::StorageWrappedTargetException);
6362 void insertRawEncrStreamElement([in] string sStreamName, [in] ::com::sun::star::io::XInputStream xInStream) raises (::com::sun::star::embed::InvalidStorageException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::packages::NoRawFormatException, ::com::sun::star::container::ElementExistException, ::com::sun::star::io::IOException, ::com::sun::star::embed::StorageWrappedTargetException);
6364 published interface XTransactionListener {
6365 interface ::com::sun::star::lang::XEventListener;
6366 void preCommit([in] ::com::sun::star::lang::EventObject aEvent) raises (::com::sun::star::uno::Exception);
6367 void commited([in] ::com::sun::star::lang::EventObject aEvent);
6368 void preRevert([in] ::com::sun::star::lang::EventObject aEvent) raises (::com::sun::star::uno::Exception);
6369 void reverted([in] ::com::sun::star::lang::EventObject aEvent);
6371 published interface XTransferableSupplier {
6372 interface ::com::sun::star::uno::XInterface;
6373 ::com::sun::star::datatransfer::XTransferable getTransferable();
6375 published interface XWindowSupplier {
6376 interface ::com::sun::star::uno::XInterface;
6377 ::com::sun::star::awt::XWindow getWindow();
6380 module form {
6381 published service ControlFontDialog: ::com::sun::star::ui::dialogs::XExecutableDialog {
6382 createWithGridModel([in] ::com::sun::star::beans::XPropertySet GridModel);
6384 published interface XFormComponent {
6385 interface ::com::sun::star::container::XChild;
6387 published service FormComponent {
6388 interface ::com::sun::star::form::XFormComponent;
6389 interface ::com::sun::star::lang::XComponent;
6390 interface ::com::sun::star::container::XNamed;
6391 interface ::com::sun::star::beans::XPropertySet;
6392 interface ::com::sun::star::io::XPersistObject;
6393 [optional] interface ::com::sun::star::beans::XPropertyBag;
6394 [property] string Name;
6396 published service FormControlModel {
6397 service ::com::sun::star::awt::UnoControlModel;
6398 service ::com::sun::star::form::FormComponent;
6399 [optional] interface ::com::sun::star::beans::XFastPropertySet;
6400 [optional] interface ::com::sun::star::beans::XPropertyState;
6401 [property, readonly] short ClassId;
6402 [property, optional] short TabIndex;
6403 [property] string Tag;
6405 published interface XUpdateListener;
6406 published interface XUpdateBroadcaster {
6407 interface ::com::sun::star::uno::XInterface;
6408 void addUpdateListener([in] ::com::sun::star::form::XUpdateListener aListener);
6409 void removeUpdateListener([in] ::com::sun::star::form::XUpdateListener aListener);
6411 published interface XBoundComponent {
6412 interface ::com::sun::star::form::XUpdateBroadcaster;
6413 boolean commit();
6415 published interface XLoadListener {
6416 interface ::com::sun::star::lang::XEventListener;
6417 void loaded([in] ::com::sun::star::lang::EventObject aEvent);
6418 void unloading([in] ::com::sun::star::lang::EventObject aEvent);
6419 void unloaded([in] ::com::sun::star::lang::EventObject aEvent);
6420 void reloading([in] ::com::sun::star::lang::EventObject aEvent);
6421 void reloaded([in] ::com::sun::star::lang::EventObject aEvent);
6423 published interface XResetListener;
6424 published interface XReset {
6425 interface ::com::sun::star::uno::XInterface;
6426 void reset();
6427 void addResetListener([in] ::com::sun::star::form::XResetListener aListener);
6428 void removeResetListener([in] ::com::sun::star::form::XResetListener aListener);
6430 published service DataAwareControlModel {
6431 service ::com::sun::star::form::FormControlModel;
6432 interface ::com::sun::star::form::XLoadListener;
6433 interface ::com::sun::star::form::XReset;
6434 [optional] interface ::com::sun::star::form::XBoundComponent;
6435 [property] string DataField;
6436 [property, optional] boolean InputRequired;
6437 [property, readonly] ::com::sun::star::beans::XPropertySet BoundField;
6438 [property] ::com::sun::star::beans::XPropertySet LabelControl;
6440 /** @deprecated */ published enum DataSelectionType {
6441 TABLE = 0,
6442 QUERY = 1,
6443 SQL = 2,
6444 SQLPASSTHROUGH = 3
6446 /** @deprecated */ published struct DatabaseDeleteEvent: ::com::sun::star::lang::EventObject {
6447 sequence< any > Bookmarks;
6449 published struct DatabaseParameterEvent: ::com::sun::star::lang::EventObject {
6450 ::com::sun::star::container::XIndexAccess Parameters;
6452 /** @deprecated */ published struct ErrorEvent: ::com::sun::star::lang::EventObject {
6453 any Reason;
6455 published enum FormButtonType {
6456 PUSH = 0,
6457 SUBMIT = 1,
6458 RESET = 2,
6459 URL = 3
6461 published constants FormComponentType {
6462 const short CHECKBOX = 5;
6463 const short COMBOBOX = 7;
6464 const short COMMANDBUTTON = 2;
6465 const short CONTROL = 1;
6466 const short CURRENCYFIELD = 18;
6467 const short DATEFIELD = 15;
6468 const short FILECONTROL = 12;
6469 const short FIXEDTEXT = 10;
6470 const short GRIDCONTROL = 11;
6471 const short GROUPBOX = 8;
6472 const short HIDDENCONTROL = 13;
6473 const short IMAGEBUTTON = 4;
6474 const short IMAGECONTROL = 14;
6475 const short LISTBOX = 6;
6476 const short NAVIGATIONBAR = 22;
6477 const short NUMERICFIELD = 17;
6478 const short PATTERNFIELD = 19;
6479 const short RADIOBUTTON = 3;
6480 const short SCROLLBAR = 20;
6481 const short SPINBUTTON = 21;
6482 const short TEXTFIELD = 9;
6483 const short TIMEFIELD = 16;
6485 published service FormComponents {
6486 interface ::com::sun::star::container::XContainer;
6487 interface ::com::sun::star::container::XNameContainer;
6488 interface ::com::sun::star::container::XIndexContainer;
6489 interface ::com::sun::star::container::XEnumerationAccess;
6490 interface ::com::sun::star::script::XEventAttacherManager;
6492 /** @deprecated */ published service FormControllerDispatcher {
6493 [optional] interface ::com::sun::star::frame::XDispatchProvider;
6495 published interface XConfirmDeleteListener;
6496 published interface XConfirmDeleteBroadcaster {
6497 interface ::com::sun::star::uno::XInterface;
6498 void addConfirmDeleteListener([in] ::com::sun::star::form::XConfirmDeleteListener aListener);
6499 void removeConfirmDeleteListener([in] ::com::sun::star::form::XConfirmDeleteListener aListener);
6501 published interface XDatabaseParameterListener;
6502 published interface XDatabaseParameterBroadcaster {
6503 interface ::com::sun::star::uno::XInterface;
6504 void addParameterListener([in] ::com::sun::star::form::XDatabaseParameterListener aListener);
6505 void removeParameterListener([in] ::com::sun::star::form::XDatabaseParameterListener aListener);
6507 published interface XFormControllerListener;
6508 /** @deprecated */ published interface XFormController {
6509 interface ::com::sun::star::awt::XTabController;
6510 ::com::sun::star::awt::XControl getCurrentControl();
6511 void addActivateListener([in] ::com::sun::star::form::XFormControllerListener l);
6512 void removeActivateListener([in] ::com::sun::star::form::XFormControllerListener l);
6515 module sdb {
6516 published interface XRowSetApproveListener;
6517 published interface XRowSetApproveBroadcaster {
6518 interface ::com::sun::star::uno::XInterface;
6519 void addRowSetApproveListener([in] ::com::sun::star::sdb::XRowSetApproveListener listener);
6520 void removeRowSetApproveListener([in] ::com::sun::star::sdb::XRowSetApproveListener listener);
6522 published interface XSQLErrorListener;
6523 published interface XSQLErrorBroadcaster {
6524 interface ::com::sun::star::uno::XInterface;
6525 void addSQLErrorListener([in] ::com::sun::star::sdb::XSQLErrorListener Listener);
6526 void removeSQLErrorListener([in] ::com::sun::star::sdb::XSQLErrorListener Listener);
6529 module form {
6530 /** @deprecated */ published service FormController {
6531 [optional] service ::com::sun::star::form::FormControllerDispatcher;
6532 interface ::com::sun::star::form::XFormController;
6533 interface ::com::sun::star::awt::XTabController;
6534 interface ::com::sun::star::container::XChild;
6535 interface ::com::sun::star::lang::XComponent;
6536 interface ::com::sun::star::container::XEnumerationAccess;
6537 interface ::com::sun::star::util::XModifyBroadcaster;
6538 interface ::com::sun::star::form::XConfirmDeleteBroadcaster;
6539 interface ::com::sun::star::sdb::XSQLErrorBroadcaster;
6540 interface ::com::sun::star::sdb::XRowSetApproveBroadcaster;
6541 interface ::com::sun::star::form::XDatabaseParameterBroadcaster;
6543 published enum FormSubmitEncoding {
6544 URL = 0,
6545 MULTIPART = 1,
6546 TEXT = 2
6548 published enum FormSubmitMethod {
6549 GET = 0,
6550 POST = 1
6552 published interface XForms {
6553 interface ::com::sun::star::container::XContainer;
6554 interface ::com::sun::star::container::XNameContainer;
6555 interface ::com::sun::star::container::XIndexContainer;
6556 interface ::com::sun::star::container::XEnumerationAccess;
6557 interface ::com::sun::star::script::XEventAttacherManager;
6558 interface ::com::sun::star::container::XChild;
6559 interface ::com::sun::star::util::XCloneable;
6560 interface ::com::sun::star::lang::XComponent;
6562 published service Forms: ::com::sun::star::form::XForms;
6563 published enum ListSourceType {
6564 VALUELIST = 0,
6565 TABLE = 1,
6566 QUERY = 2,
6567 SQL = 3,
6568 SQLPASSTHROUGH = 4,
6569 TABLEFIELDS = 5
6571 published enum NavigationBarMode {
6572 NONE = 0,
6573 CURRENT = 1,
6574 PARENT = 2
6576 /** @deprecated */ published service PropertyBrowserController {
6577 interface ::com::sun::star::frame::XController;
6578 interface ::com::sun::star::beans::XPropertySet;
6579 interface ::com::sun::star::beans::XFastPropertySet;
6580 interface ::com::sun::star::beans::XMultiPropertySet;
6581 [property] ::com::sun::star::beans::XPropertySet IntrospectedObject;
6582 [property] string CurrentPage;
6584 published service TabOrderDialog: ::com::sun::star::ui::dialogs::XExecutableDialog {
6585 createWithModel([in] ::com::sun::star::awt::XTabControllerModel TabbingModel, [in] ::com::sun::star::awt::XControlContainer ControlContext, [in] ::com::sun::star::awt::XWindow ParentWindow);
6587 published enum TabulatorCycle {
6588 RECORDS = 0,
6589 CURRENT = 1,
6590 PAGE = 2
6592 published interface XApproveActionListener;
6593 published interface XApproveActionBroadcaster {
6594 interface ::com::sun::star::uno::XInterface;
6595 void addApproveActionListener([in] ::com::sun::star::form::XApproveActionListener aListener);
6596 void removeApproveActionListener([in] ::com::sun::star::form::XApproveActionListener aListener);
6598 published interface XApproveActionListener {
6599 interface ::com::sun::star::lang::XEventListener;
6600 boolean approveAction([in] ::com::sun::star::lang::EventObject aEvent);
6602 published interface XBoundControl {
6603 interface ::com::sun::star::uno::XInterface;
6604 boolean getLock();
6605 void setLock([in] boolean bLock);
6607 published interface XChangeListener;
6608 published interface XChangeBroadcaster {
6609 interface ::com::sun::star::uno::XInterface;
6610 void addChangeListener([in] ::com::sun::star::form::XChangeListener aListener);
6611 void removeChangeListener([in] ::com::sun::star::form::XChangeListener aListener);
6613 published interface XChangeListener {
6614 interface ::com::sun::star::lang::XEventListener;
6615 void changed([in] ::com::sun::star::lang::EventObject rEvent);
6618 module sdb {
6619 published struct RowChangeEvent: ::com::sun::star::lang::EventObject {
6620 long Action;
6621 long Rows;
6624 module form {
6625 published interface XConfirmDeleteListener {
6626 interface ::com::sun::star::lang::XEventListener;
6627 boolean confirmDelete([in] ::com::sun::star::sdb::RowChangeEvent aEvent);
6629 published interface XDatabaseParameterListener {
6630 interface ::com::sun::star::lang::XEventListener;
6631 boolean approveParameter([in] ::com::sun::star::form::DatabaseParameterEvent aEvent);
6633 /** @deprecated */ published interface XDeleteListener {
6634 interface ::com::sun::star::lang::XEventListener;
6635 boolean approveDelete([in] ::com::sun::star::lang::EventObject aEvent);
6636 void deleted([in] ::com::sun::star::lang::EventObject aEvent);
6638 published interface XErrorListener;
6639 /** @deprecated */ published interface XErrorBroadcaster {
6640 interface ::com::sun::star::uno::XInterface;
6641 void addErrorListener([in] ::com::sun::star::form::XErrorListener aListener);
6642 void removeErrorListener([in] ::com::sun::star::form::XErrorListener aListener);
6644 /** @deprecated */ published interface XErrorListener {
6645 interface ::com::sun::star::lang::XEventListener;
6646 void errorOccured([in] ::com::sun::star::form::ErrorEvent aEvent);
6648 published interface XForm {
6649 interface ::com::sun::star::form::XFormComponent;
6651 published interface XFormControllerListener {
6652 interface ::com::sun::star::lang::XEventListener;
6653 void formActivated([in] ::com::sun::star::lang::EventObject rEvent);
6654 void formDeactivated([in] ::com::sun::star::lang::EventObject rEvent);
6656 /** @deprecated */ published interface XGrid {
6657 interface ::com::sun::star::uno::XInterface;
6658 short getCurrentColumnPosition();
6659 void setCurrentColumnPosition([in] short nPos);
6661 published interface XGridColumnFactory {
6662 interface ::com::sun::star::uno::XInterface;
6663 ::com::sun::star::beans::XPropertySet createColumn([in] string aColumnType) raises (::com::sun::star::lang::IllegalArgumentException);
6664 sequence< string > getColumnTypes();
6666 /** @deprecated */ published interface XGridFieldDataSupplier {
6667 interface ::com::sun::star::uno::XInterface;
6668 sequence< boolean > queryFieldDataType([in] type xType);
6669 sequence< any > queryFieldData([in] long nRow, [in] type xType);
6671 interface XGridControlListener;
6672 interface XGridControl {
6673 interface ::com::sun::star::form::XGrid;
6674 interface ::com::sun::star::form::XGridFieldDataSupplier;
6675 void addGridControlListener([in] ::com::sun::star::form::XGridControlListener listener);
6676 void removeGridControlListener([in] ::com::sun::star::form::XGridControlListener listener);
6678 /** @deprecated */ published interface XGridPeer {
6679 interface ::com::sun::star::uno::XInterface;
6680 ::com::sun::star::container::XIndexContainer getColumns();
6681 void setColumns([in] ::com::sun::star::container::XIndexContainer aColumns);
6683 published interface XImageProducerSupplier {
6684 interface ::com::sun::star::uno::XInterface;
6685 ::com::sun::star::awt::XImageProducer getImageProducer();
6687 /** @deprecated */ published interface XInsertListener {
6688 interface ::com::sun::star::lang::XEventListener;
6689 void inserting([in] ::com::sun::star::lang::EventObject aEvent);
6690 void inserted([in] ::com::sun::star::lang::EventObject aEvent);
6692 published interface XLoadable {
6693 interface ::com::sun::star::uno::XInterface;
6694 void load();
6695 void unload();
6696 void reload();
6697 boolean isLoaded();
6698 void addLoadListener([in] ::com::sun::star::form::XLoadListener aListener);
6699 void removeLoadListener([in] ::com::sun::star::form::XLoadListener aListener);
6701 /** @deprecated */ published interface XPositioningListener {
6702 interface ::com::sun::star::lang::XEventListener;
6703 void positioned([in] ::com::sun::star::lang::EventObject aEvent);
6705 published interface XResetListener {
6706 interface ::com::sun::star::lang::XEventListener;
6707 boolean approveReset([in] ::com::sun::star::lang::EventObject rEvent);
6708 void resetted([in] ::com::sun::star::lang::EventObject rEvent);
6710 /** @deprecated */ published interface XRestoreListener {
6711 interface ::com::sun::star::lang::XEventListener;
6712 void restored([in] ::com::sun::star::lang::EventObject aEvent);
6714 published interface XSubmitListener;
6715 published interface XSubmit {
6716 interface ::com::sun::star::uno::XInterface;
6717 void submit([in] ::com::sun::star::awt::XControl aControl, [in] ::com::sun::star::awt::MouseEvent aMouseEvt);
6718 void addSubmitListener([in] ::com::sun::star::form::XSubmitListener aListener);
6719 void removeSubmitListener([in] ::com::sun::star::form::XSubmitListener aListener);
6721 /** @deprecated */ published interface XSubmitListener {
6722 interface ::com::sun::star::lang::XEventListener;
6723 boolean approveSubmit([in] ::com::sun::star::lang::EventObject Event);
6725 published interface XUpdateListener {
6726 interface ::com::sun::star::lang::XEventListener;
6727 boolean approveUpdate([in] ::com::sun::star::lang::EventObject aEvent);
6728 void updated([in] ::com::sun::star::lang::EventObject aEvent);
6730 module component {
6731 published service CheckBox {
6732 service ::com::sun::star::awt::UnoControlCheckBoxModel;
6733 service ::com::sun::star::form::FormControlModel;
6734 interface ::com::sun::star::form::XReset;
6735 [property] short DefaultState;
6736 [property] string RefValue;
6738 published service DatabaseCheckBox {
6739 service ::com::sun::star::form::component::CheckBox;
6740 service ::com::sun::star::form::DataAwareControlModel;
6742 published service ComboBox {
6743 service ::com::sun::star::awt::UnoControlComboBoxModel;
6744 service ::com::sun::star::form::FormControlModel;
6745 interface ::com::sun::star::form::XReset;
6746 [property] string DefaultText;
6748 published service DatabaseComboBox {
6749 service ::com::sun::star::form::component::ComboBox;
6750 service ::com::sun::star::form::DataAwareControlModel;
6751 [property] boolean ConvertEmptyToNull;
6752 [property] string ListSource;
6753 [property] ::com::sun::star::form::ListSourceType ListSourceType;
6755 published service DateField {
6756 service ::com::sun::star::awt::UnoControlDateFieldModel;
6757 service ::com::sun::star::form::FormControlModel;
6758 interface ::com::sun::star::form::XReset;
6759 [property] long DefaultDate;
6761 published service DatabaseDateField {
6762 service ::com::sun::star::form::component::DateField;
6763 service ::com::sun::star::form::DataAwareControlModel;
6765 published service FormattedField {
6766 service ::com::sun::star::awt::UnoControlFormattedFieldModel;
6767 service ::com::sun::star::form::FormControlModel;
6768 interface ::com::sun::star::form::XReset;
6770 published service DatabaseFormattedField {
6771 service ::com::sun::star::form::component::FormattedField;
6772 service ::com::sun::star::form::DataAwareControlModel;
6773 [property] boolean ConvertEmptyToNull;
6775 published service ListBox {
6776 service ::com::sun::star::awt::UnoControlListBoxModel;
6777 service ::com::sun::star::form::FormControlModel;
6778 interface ::com::sun::star::form::XReset;
6779 [property] sequence< short > DefaultSelection;
6780 [property] sequence< string > ListSource;
6782 published service DatabaseListBox {
6783 service ::com::sun::star::form::component::ListBox;
6784 service ::com::sun::star::form::DataAwareControlModel;
6785 [property] short BoundColumn;
6786 [property] ::com::sun::star::form::ListSourceType ListSourceType;
6787 [property, optional, transient] sequence< any > SelectedValues;
6788 [property, optional, transient] any SelectedValue;
6790 published service NumericField {
6791 service ::com::sun::star::awt::UnoControlNumericFieldModel;
6792 service ::com::sun::star::form::FormControlModel;
6793 interface ::com::sun::star::form::XReset;
6794 [property] double DefaultValue;
6796 published service DatabaseNumericField {
6797 service ::com::sun::star::form::component::NumericField;
6798 service ::com::sun::star::form::DataAwareControlModel;
6800 published service RadioButton {
6801 service ::com::sun::star::awt::UnoControlRadioButtonModel;
6802 service ::com::sun::star::form::FormControlModel;
6803 interface ::com::sun::star::form::XReset;
6804 [property] short DefaultState;
6805 [property] string RefValue;
6806 [property, optional] string UncheckedRefValue;
6808 published service DatabaseRadioButton {
6809 service ::com::sun::star::form::component::RadioButton;
6810 service ::com::sun::star::form::DataAwareControlModel;
6814 module text {
6815 published service TextRange {
6816 service ::com::sun::star::style::CharacterProperties;
6817 service ::com::sun::star::style::ParagraphProperties;
6818 [optional] service ::com::sun::star::style::CharacterPropertiesAsian;
6819 [optional] service ::com::sun::star::style::CharacterPropertiesComplex;
6820 [optional] service ::com::sun::star::style::ParagraphPropertiesAsian;
6821 [optional] service ::com::sun::star::style::ParagraphPropertiesComplex;
6822 interface ::com::sun::star::text::XTextRange;
6823 interface ::com::sun::star::beans::XPropertySet;
6824 interface ::com::sun::star::beans::XPropertyState;
6825 [optional] interface ::com::sun::star::container::XContentEnumerationAccess;
6828 module form {
6829 module component {
6830 published service RichTextControl {
6831 service ::com::sun::star::awt::UnoControlEditModel;
6832 service ::com::sun::star::form::FormControlModel;
6833 service ::com::sun::star::text::TextRange;
6834 [property] boolean HardLineBreaks;
6835 [property] boolean RichText;
6837 published service TextField {
6838 service ::com::sun::star::awt::UnoControlEditModel;
6839 service ::com::sun::star::form::FormControlModel;
6840 [optional] service ::com::sun::star::form::component::RichTextControl;
6841 interface ::com::sun::star::form::XReset;
6842 [property] string DefaultText;
6844 published service DatabaseTextField {
6845 service ::com::sun::star::form::component::TextField;
6846 service ::com::sun::star::form::DataAwareControlModel;
6847 [property] boolean ConvertEmptyToNull;
6849 published service TimeField {
6850 service ::com::sun::star::awt::UnoControlTimeFieldModel;
6851 service ::com::sun::star::form::FormControlModel;
6852 interface ::com::sun::star::form::XReset;
6853 [property] long DefaultTime;
6855 published service DatabaseTimeField {
6856 service ::com::sun::star::form::component::TimeField;
6857 service ::com::sun::star::form::DataAwareControlModel;
6859 published service CommandButton {
6860 service ::com::sun::star::awt::UnoControlButtonModel;
6861 service ::com::sun::star::form::FormControlModel;
6862 interface ::com::sun::star::form::XImageProducerSupplier;
6863 [optional] interface ::com::sun::star::form::XReset;
6864 [property] ::com::sun::star::form::FormButtonType ButtonType;
6865 [property] string TargetFrame;
6866 [property] string TargetURL;
6867 [property, optional] boolean DefaultState;
6869 published service CurrencyField {
6870 service ::com::sun::star::awt::UnoControlCurrencyFieldModel;
6871 service ::com::sun::star::form::FormControlModel;
6872 interface ::com::sun::star::form::XReset;
6873 [property] double DefaultValue;
6875 published service Form {
6876 service ::com::sun::star::form::FormComponent;
6877 service ::com::sun::star::form::FormComponents;
6878 interface ::com::sun::star::form::XForm;
6879 interface ::com::sun::star::awt::XTabControllerModel;
6883 module sdbc {
6884 published interface XCloseable {
6885 interface ::com::sun::star::uno::XInterface;
6886 void close() raises (::com::sun::star::sdbc::SQLException);
6888 published interface XColumnLocate {
6889 interface ::com::sun::star::uno::XInterface;
6890 long findColumn([in] string columnName) raises (::com::sun::star::sdbc::SQLException);
6892 published interface XResultSetMetaData;
6893 published interface XResultSetMetaDataSupplier {
6894 interface ::com::sun::star::uno::XInterface;
6895 ::com::sun::star::sdbc::XResultSetMetaData getMetaData() raises (::com::sun::star::sdbc::SQLException);
6897 published interface XResultSetUpdate {
6898 interface ::com::sun::star::uno::XInterface;
6899 void insertRow() raises (::com::sun::star::sdbc::SQLException);
6900 void updateRow() raises (::com::sun::star::sdbc::SQLException);
6901 void deleteRow() raises (::com::sun::star::sdbc::SQLException);
6902 void cancelRowUpdates() raises (::com::sun::star::sdbc::SQLException);
6903 void moveToInsertRow() raises (::com::sun::star::sdbc::SQLException);
6904 void moveToCurrentRow() raises (::com::sun::star::sdbc::SQLException);
6906 published interface XArray;
6907 published interface XBlob;
6908 published interface XClob;
6909 published interface XRef;
6910 published interface XRow {
6911 interface ::com::sun::star::uno::XInterface;
6912 boolean wasNull() raises (::com::sun::star::sdbc::SQLException);
6913 string getString([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6914 boolean getBoolean([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6915 byte getByte([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6916 short getShort([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6917 long getInt([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6918 hyper getLong([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6919 float getFloat([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6920 double getDouble([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6921 sequence< byte > getBytes([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6922 ::com::sun::star::util::Date getDate([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6923 ::com::sun::star::util::Time getTime([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6924 ::com::sun::star::util::DateTime getTimestamp([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6925 ::com::sun::star::io::XInputStream getBinaryStream([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6926 ::com::sun::star::io::XInputStream getCharacterStream([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6927 any getObject([in] long columnIndex, [in] ::com::sun::star::container::XNameAccess typeMap) raises (::com::sun::star::sdbc::SQLException);
6928 ::com::sun::star::sdbc::XRef getRef([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6929 ::com::sun::star::sdbc::XBlob getBlob([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6930 ::com::sun::star::sdbc::XClob getClob([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6931 ::com::sun::star::sdbc::XArray getArray([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6933 published interface XRowUpdate {
6934 interface ::com::sun::star::uno::XInterface;
6935 void updateNull([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6936 void updateBoolean([in] long columnIndex, [in] boolean x) raises (::com::sun::star::sdbc::SQLException);
6937 void updateByte([in] long columnIndex, [in] byte x) raises (::com::sun::star::sdbc::SQLException);
6938 void updateShort([in] long columnIndex, [in] short x) raises (::com::sun::star::sdbc::SQLException);
6939 void updateInt([in] long columnIndex, [in] long x) raises (::com::sun::star::sdbc::SQLException);
6940 void updateLong([in] long columnIndex, [in] hyper x) raises (::com::sun::star::sdbc::SQLException);
6941 void updateFloat([in] long columnIndex, [in] float x) raises (::com::sun::star::sdbc::SQLException);
6942 void updateDouble([in] long columnIndex, [in] double x) raises (::com::sun::star::sdbc::SQLException);
6943 void updateString([in] long columnIndex, [in] string x) raises (::com::sun::star::sdbc::SQLException);
6944 void updateBytes([in] long columnIndex, [in] sequence< byte > x) raises (::com::sun::star::sdbc::SQLException);
6945 void updateDate([in] long columnIndex, [in] ::com::sun::star::util::Date x) raises (::com::sun::star::sdbc::SQLException);
6946 void updateTime([in] long columnIndex, [in] ::com::sun::star::util::Time x) raises (::com::sun::star::sdbc::SQLException);
6947 void updateTimestamp([in] long columnIndex, [in] ::com::sun::star::util::DateTime x) raises (::com::sun::star::sdbc::SQLException);
6948 void updateBinaryStream([in] long columnIndex, [in] ::com::sun::star::io::XInputStream x, [in] long length) raises (::com::sun::star::sdbc::SQLException);
6949 void updateCharacterStream([in] long columnIndex, [in] ::com::sun::star::io::XInputStream x, [in] long length) raises (::com::sun::star::sdbc::SQLException);
6950 void updateObject([in] long columnIndex, [in] any x) raises (::com::sun::star::sdbc::SQLException);
6951 void updateNumericObject([in] long columnIndex, [in] any x, [in] long scale) raises (::com::sun::star::sdbc::SQLException);
6953 published interface XWarningsSupplier {
6954 interface ::com::sun::star::uno::XInterface;
6955 any getWarnings() raises (::com::sun::star::sdbc::SQLException);
6956 void clearWarnings() raises (::com::sun::star::sdbc::SQLException);
6958 published service ResultSet {
6959 interface ::com::sun::star::beans::XPropertySet;
6960 interface ::com::sun::star::sdbc::XResultSetMetaDataSupplier;
6961 interface ::com::sun::star::sdbc::XResultSet;
6962 interface ::com::sun::star::sdbc::XRow;
6963 interface ::com::sun::star::sdbc::XColumnLocate;
6964 [optional] interface ::com::sun::star::lang::XComponent;
6965 [optional] interface ::com::sun::star::sdbc::XCloseable;
6966 [optional] interface ::com::sun::star::sdbc::XWarningsSupplier;
6967 [optional] interface ::com::sun::star::sdbc::XResultSetUpdate;
6968 [optional] interface ::com::sun::star::sdbc::XRowUpdate;
6969 [property, optional, readonly] string CursorName;
6970 [property, readonly] long ResultSetConcurrency;
6971 [property, readonly] long ResultSetType;
6972 [property] long FetchDirection;
6973 [property] long FetchSize;
6976 module sdbcx {
6977 published interface XDeleteRows {
6978 interface ::com::sun::star::uno::XInterface;
6979 sequence< long > deleteRows([in] sequence< any > rows) raises (::com::sun::star::sdbc::SQLException);
6981 published interface XRowLocate {
6982 interface ::com::sun::star::uno::XInterface;
6983 any getBookmark() raises (::com::sun::star::sdbc::SQLException);
6984 boolean moveToBookmark([in] any bookmark) raises (::com::sun::star::sdbc::SQLException);
6985 boolean moveRelativeToBookmark([in] any bookmark, [in] long rows) raises (::com::sun::star::sdbc::SQLException);
6986 long compareBookmarks([in] any first, [in] any second) raises (::com::sun::star::sdbc::SQLException);
6987 boolean hasOrderedBookmarks() raises (::com::sun::star::sdbc::SQLException);
6988 long hashBookmark([in] any bookmark) raises (::com::sun::star::sdbc::SQLException);
6991 module util {
6992 published interface XCancellable {
6993 interface ::com::sun::star::uno::XInterface;
6994 void cancel();
6997 module sdbcx {
6998 published service ResultSet {
6999 service ::com::sun::star::sdbc::ResultSet;
7000 interface ::com::sun::star::sdbcx::XRowLocate;
7001 [optional] interface ::com::sun::star::util::XCancellable;
7002 [optional] interface ::com::sun::star::sdbcx::XDeleteRows;
7003 [property, readonly] boolean IsBookmarkable;
7004 [property, optional, readonly] boolean CanUpdateInsertedRows;
7006 published interface XColumnsSupplier {
7007 interface ::com::sun::star::uno::XInterface;
7008 ::com::sun::star::container::XNameAccess getColumns();
7011 module sdb {
7012 published service ResultSet {
7013 service ::com::sun::star::sdbcx::ResultSet;
7014 interface ::com::sun::star::sdbcx::XColumnsSupplier;
7016 published interface XCompletedExecution {
7017 interface ::com::sun::star::uno::XInterface;
7018 void executeWithCompletion([in] ::com::sun::star::task::XInteractionHandler handler) raises (::com::sun::star::sdbc::SQLException);
7020 published interface XParametersSupplier {
7021 interface ::com::sun::star::uno::XInterface;
7022 ::com::sun::star::container::XIndexAccess getParameters();
7024 published interface XResultSetAccess {
7025 interface ::com::sun::star::uno::XInterface;
7026 ::com::sun::star::sdbc::XResultSet createResultSet() raises (::com::sun::star::sdbc::SQLException);
7029 module sdbc {
7030 published service RowSet {
7031 service ::com::sun::star::sdbc::ResultSet;
7032 interface ::com::sun::star::sdbc::XRowSet;
7033 interface ::com::sun::star::sdbc::XParameters;
7034 interface ::com::sun::star::sdbc::XColumnLocate;
7035 [property] string DataSourceName;
7036 [property] string URL;
7037 [property] string Command;
7038 [property] long TransactionIsolation;
7039 [property] ::com::sun::star::container::XNameAccess TypeMap;
7040 [property] boolean EscapeProcessing;
7041 [property] long QueryTimeOut;
7042 [property] long MaxFieldSize;
7043 [property] long MaxRows;
7044 [property] string User;
7045 [property] string Password;
7046 [property] long ResultSetType;
7048 published interface XConnection;
7050 module sdb {
7051 published service RowSet {
7052 service ::com::sun::star::sdbc::RowSet;
7053 service ::com::sun::star::sdb::ResultSet;
7054 interface ::com::sun::star::sdb::XCompletedExecution;
7055 interface ::com::sun::star::sdb::XRowSetApproveBroadcaster;
7056 interface ::com::sun::star::sdb::XResultSetAccess;
7057 [optional] interface ::com::sun::star::sdbc::XResultSetUpdate;
7058 [optional] interface ::com::sun::star::sdbcx::XDeleteRows;
7059 [optional] interface ::com::sun::star::sdb::XParametersSupplier;
7060 [property] ::com::sun::star::sdbc::XConnection ActiveConnection;
7061 [property] string DataSourceName;
7062 [property] string Command;
7063 [property] long CommandType;
7064 [property, readonly] string ActiveCommand;
7065 [property] boolean IgnoreResult;
7066 [property] string Filter;
7067 [property] boolean ApplyFilter;
7068 [property, optional] string HavingClause;
7069 [property, optional] string GroupBy;
7070 [property] string Order;
7071 [property, readonly] long Privileges;
7072 [property, readonly] boolean IsModified;
7073 [property, readonly] boolean IsNew;
7074 [property, readonly] long RowCount;
7075 [property, readonly] boolean IsRowCountFinal;
7076 [property, optional] string UpdateTableName;
7077 [property, optional] string UpdateCatalogName;
7078 [property, optional] string UpdateSchemaName;
7081 module form {
7082 module component {
7083 published service DataForm {
7084 service ::com::sun::star::sdb::RowSet;
7085 service ::com::sun::star::form::component::Form;
7086 interface ::com::sun::star::form::XReset;
7087 interface ::com::sun::star::form::XLoadable;
7088 interface ::com::sun::star::sdb::XCompletedExecution;
7089 interface ::com::sun::star::form::XDatabaseParameterBroadcaster;
7090 [property] sequence< string > MasterFields;
7091 [property] sequence< string > DetailFields;
7092 [property] ::com::sun::star::form::TabulatorCycle Cycle;
7093 [property] ::com::sun::star::form::NavigationBarMode NavigationBarMode;
7094 [property] boolean AllowInserts;
7095 [property] boolean AllowUpdates;
7096 [property] boolean AllowDeletes;
7098 published service DatabaseCurrencyField {
7099 service ::com::sun::star::form::component::CurrencyField;
7100 service ::com::sun::star::form::DataAwareControlModel;
7102 published service DatabaseImageControl {
7103 service ::com::sun::star::awt::UnoControlImageControlModel;
7104 service ::com::sun::star::form::DataAwareControlModel;
7105 interface ::com::sun::star::form::XImageProducerSupplier;
7106 [property] boolean ReadOnly;
7108 published service PatternField {
7109 service ::com::sun::star::awt::UnoControlPatternFieldModel;
7110 service ::com::sun::star::form::FormControlModel;
7111 interface ::com::sun::star::form::XReset;
7112 [property] string DefaultText;
7114 published service DatabasePatternField {
7115 service ::com::sun::star::form::component::PatternField;
7116 service ::com::sun::star::form::DataAwareControlModel;
7117 [property] boolean ConvertEmptyToNull;
7119 published service FileControl {
7120 service ::com::sun::star::awt::UnoControlFileControlModel;
7121 service ::com::sun::star::form::FormControlModel;
7122 interface ::com::sun::star::form::XReset;
7123 [property] string DefaultText;
7125 published service FixedText {
7126 service ::com::sun::star::awt::UnoControlFixedTextModel;
7127 service ::com::sun::star::form::FormControlModel;
7129 published service GridControl {
7130 service ::com::sun::star::form::FormControlModel;
7131 service ::com::sun::star::form::FormComponents;
7132 interface ::com::sun::star::form::XGridColumnFactory;
7133 /** @deprecated */ interface ::com::sun::star::view::XSelectionSupplier;
7134 interface ::com::sun::star::form::XReset;
7135 [property] short Border;
7136 [property, optional] long BorderColor;
7137 [property] boolean Enabled;
7138 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
7139 [property] long RowHeight;
7140 [property] boolean Tabstop;
7141 [property] ::com::sun::star::util::Color TextColor;
7143 published service GroupBox {
7144 service ::com::sun::star::awt::UnoControlGroupBoxModel;
7145 service ::com::sun::star::form::FormControlModel;
7147 published service HTMLForm {
7148 service ::com::sun::star::form::component::Form;
7149 interface ::com::sun::star::form::XReset;
7150 interface ::com::sun::star::form::XSubmit;
7151 [property] string TargetFrame;
7152 [property] string TargetURL;
7153 [property] ::com::sun::star::form::FormSubmitMethod SubmitMethod;
7154 [property] ::com::sun::star::form::FormSubmitEncoding SubmitEncoding;
7156 published service HiddenControl {
7157 service ::com::sun::star::form::FormComponent;
7158 [property] string HiddenValue;
7160 published service ImageButton {
7161 service ::com::sun::star::awt::UnoControlImageControlModel;
7162 service ::com::sun::star::form::FormControlModel;
7163 interface ::com::sun::star::form::XImageProducerSupplier;
7164 [property] ::com::sun::star::form::FormButtonType ButtonType;
7165 [property] string TargetFrame;
7166 [property] string TargetURL;
7169 module control {
7170 published service CheckBox {
7171 service ::com::sun::star::awt::UnoControlCheckBox;
7172 interface ::com::sun::star::form::XBoundControl;
7174 published service ComboBox {
7175 service ::com::sun::star::awt::UnoControlComboBox;
7176 interface ::com::sun::star::form::XBoundControl;
7178 published service CommandButton {
7179 service ::com::sun::star::awt::UnoControlButton;
7180 interface ::com::sun::star::form::XApproveActionBroadcaster;
7182 published service CurrencyField {
7183 service ::com::sun::star::awt::UnoControlCurrencyField;
7184 interface ::com::sun::star::form::XBoundControl;
7186 published service DateField {
7187 service ::com::sun::star::awt::UnoControlDateField;
7188 interface ::com::sun::star::form::XBoundControl;
7190 published service FormattedField {
7191 service ::com::sun::star::awt::UnoControlFormattedField;
7192 interface ::com::sun::star::form::XBoundControl;
7196 module frame {
7197 published interface XDispatchProviderInterceptor;
7198 published interface XDispatchProviderInterception {
7199 interface ::com::sun::star::uno::XInterface;
7200 void registerDispatchProviderInterceptor([in] ::com::sun::star::frame::XDispatchProviderInterceptor Interceptor);
7201 void releaseDispatchProviderInterceptor([in] ::com::sun::star::frame::XDispatchProviderInterceptor Interceptor);
7204 module util {
7205 published interface XModeSelector {
7206 interface ::com::sun::star::uno::XInterface;
7207 void setMode([in] string aMode) raises (::com::sun::star::lang::NoSupportException);
7208 string getMode();
7209 sequence< string > getSupportedModes();
7210 boolean supportsMode([in] string aMode);
7213 module form {
7214 module control {
7215 published service GridControl {
7216 service ::com::sun::star::awt::UnoControl;
7217 interface ::com::sun::star::form::XBoundComponent;
7218 interface ::com::sun::star::form::XGrid;
7219 interface ::com::sun::star::util::XModifyBroadcaster;
7220 interface ::com::sun::star::container::XIndexAccess;
7221 interface ::com::sun::star::container::XEnumerationAccess;
7222 [optional] interface ::com::sun::star::form::XGridControl;
7223 [optional] interface ::com::sun::star::form::XGridFieldDataSupplier;
7224 [optional] interface ::com::sun::star::util::XModeSelector;
7225 [optional] interface ::com::sun::star::view::XSelectionSupplier;
7226 [optional] interface ::com::sun::star::frame::XDispatchProviderInterception;
7228 published service GroupBox {
7229 service ::com::sun::star::awt::UnoControlGroupBox;
7231 published service ImageButton {
7232 service ::com::sun::star::awt::UnoControlImageControl;
7233 interface ::com::sun::star::form::XApproveActionBroadcaster;
7235 published service ImageControl {
7236 service ::com::sun::star::awt::UnoControlImageControl;
7237 interface ::com::sun::star::form::XBoundControl;
7239 published service InteractionGridControl {
7240 service ::com::sun::star::form::control::GridControl;
7241 interface ::com::sun::star::frame::XDispatch;
7243 published service ListBox {
7244 service ::com::sun::star::awt::UnoControlListBox;
7245 interface ::com::sun::star::form::XBoundControl;
7246 interface ::com::sun::star::form::XChangeBroadcaster;
7248 published service NumericField {
7249 service ::com::sun::star::awt::UnoControlNumericField;
7250 interface ::com::sun::star::form::XBoundControl;
7252 published service PatternField {
7253 service ::com::sun::star::awt::UnoControlPatternField;
7254 interface ::com::sun::star::form::XBoundControl;
7256 published service RadioButton {
7257 service ::com::sun::star::awt::UnoControlRadioButton;
7258 interface ::com::sun::star::form::XBoundControl;
7260 published service TextField {
7261 service ::com::sun::star::awt::UnoControlEdit;
7262 interface ::com::sun::star::form::XBoundControl;
7263 interface ::com::sun::star::form::XChangeBroadcaster;
7265 published service TimeField {
7266 service ::com::sun::star::awt::UnoControlTimeField;
7267 interface ::com::sun::star::form::XBoundControl;
7271 module formula {
7272 published service FormulaProperties {
7273 [property] short Alignment;
7274 [property] short BaseFontHeight;
7275 [property] string CustomFontNameFixed;
7276 [property] boolean FontFixedIsItalic;
7277 [property] boolean FontFixedIsBold;
7278 [property] string CustomFontNameSans;
7279 [property] boolean FontSansIsItalic;
7280 [property] boolean FontSansIsBold;
7281 [property] string CustomFontNameSerif;
7282 [property] boolean FontSerifIsItalic;
7283 [property] boolean FontSerifIsBold;
7284 [property] string FontNameFunctions;
7285 [property] boolean FontFunctionsIsItalic;
7286 [property] boolean FontFunctionsIsBold;
7287 [property] string FontNameNumbers;
7288 [property] boolean FontNumbersIsItalic;
7289 [property] boolean FontNumbersIsBold;
7290 [property] string FontNameText;
7291 [property] boolean FontTextIsItalic;
7292 [property] boolean FontTextIsBold;
7293 [property] string FontNameVariables;
7294 [property] boolean FontVariablesIsItalic;
7295 [property] boolean FontVariablesIsBold;
7296 [property] string Formula;
7297 [property] boolean IsScaleAllBrackets;
7298 [property] boolean IsTextMode;
7299 [property] short RelativeFontHeightFunctions;
7300 [property] short RelativeFontHeightIndices;
7301 [property] short RelativeFontHeightLimits;
7302 [property] short RelativeFontHeightOperators;
7303 [property] short RelativeFontHeightText;
7304 [property] short RelativeBracketDistance;
7305 [property] short RelativeBracketExcessSize;
7306 [property] short RelativeFractionBarExcessLength;
7307 [property] short RelativeFractionBarLineWeight;
7308 [property] short RelativeFractionDenominatorDepth;
7309 [property] short RelativeFractionNumeratorHeight;
7310 [property] short RelativeIndexSubscript;
7311 [property] short RelativeIndexSuperscript;
7312 [property] short RelativeLineSpacing;
7313 [property] short RelativeLowerLimitDistance;
7314 [property] short RelativeMatrixColumnSpacing;
7315 [property] short RelativeMatrixLineSpacing;
7316 [property] short RelativeOperatorExcessSize;
7317 [property] short RelativeOperatorSpacing;
7318 [property] short RelativeRootSpacing;
7319 [property] short RelativeScaleBracketExcessSize;
7320 [property] short RelativeSpacing;
7321 [property] short RelativeSymbolMinimumHeight;
7322 [property] short RelativeSymbolPrimaryHeight;
7323 [property] short RelativeUpperLimitDistance;
7324 [property] short TopMargin;
7325 [property] short BottomMargin;
7326 [property] short LeftMargin;
7327 [property] short RightMargin;
7328 [property, optional] short BaseLine;
7330 /** @deprecated */ published struct SymbolDescriptor {
7331 string sName;
7332 string sExportName;
7333 string sSymbolSet;
7334 long nCharacter;
7335 string sFontName;
7336 short nCharSet;
7337 short nFamily;
7338 short nPitch;
7339 short nWeight;
7340 short nItalic;
7343 module frame {
7344 published struct DispatchInformation {
7345 string Command;
7346 short GroupId;
7348 published interface XDispatchInformationProvider {
7349 interface ::com::sun::star::uno::XInterface;
7350 sequence< short > getSupportedCommandGroups();
7351 sequence< ::com::sun::star::frame::DispatchInformation > getConfigurableDispatchInformation([in] short CommandGroup);
7353 published service Bibliography: ::com::sun::star::container::XNameAccess;
7354 published constants CommandGroup {
7355 const short APPLICATION = 1;
7356 const short CHART = 20;
7357 const short CONNECTOR = 22;
7358 const short CONTROLS = 25;
7359 const short DATA = 17;
7360 const short DOCUMENT = 3;
7361 const short DRAWING = 24;
7362 const short EDIT = 4;
7363 const short ENUMERATION = 16;
7364 const short EXPLORER = 21;
7365 const short FORMAT = 10;
7366 const short FRAME = 13;
7367 const short GRAPHIC = 14;
7368 const short IMAGE = 19;
7369 const short INSERT = 9;
7370 const short INTERNAL = 0;
7371 const short MACRO = 5;
7372 const short MATH = 7;
7373 const short MODIFY = 23;
7374 const short NAVIGATOR = 8;
7375 const short OPTIONS = 6;
7376 const short SPECIAL = 18;
7377 const short TABLE = 15;
7378 const short TEMPLATE = 11;
7379 const short TEXT = 12;
7380 const short VIEW = 2;
7382 published service Components {
7383 interface ::com::sun::star::container::XEnumerationAccess;
7385 published interface XDispatchResultListener;
7386 published interface XNotifyingDispatch {
7387 interface ::com::sun::star::frame::XDispatch;
7388 void dispatchWithNotification([in] ::com::sun::star::util::URL URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments, [in] ::com::sun::star::frame::XDispatchResultListener Listener);
7390 published service ContentHandler {
7391 interface ::com::sun::star::frame::XNotifyingDispatch;
7393 published interface XLoaderFactory {
7394 interface ::com::sun::star::lang::XMultiServiceFactory;
7395 interface ::com::sun::star::container::XNameAccess;
7396 interface ::com::sun::star::container::XContainerQuery;
7398 published service ContentHandlerFactory: ::com::sun::star::frame::XLoaderFactory;
7399 published interface XComponentLoader {
7400 interface ::com::sun::star::uno::XInterface;
7401 ::com::sun::star::lang::XComponent loadComponentFromURL([in] string URL, [in] string TargetFrameName, [in] long SearchFlags, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments) raises (::com::sun::star::io::IOException, ::com::sun::star::lang::IllegalArgumentException);
7403 published interface XFrame;
7404 published interface XTerminateListener;
7405 published interface XDesktop {
7406 interface ::com::sun::star::uno::XInterface;
7407 boolean terminate();
7408 void addTerminateListener([in] ::com::sun::star::frame::XTerminateListener Listener);
7409 void removeTerminateListener([in] ::com::sun::star::frame::XTerminateListener Listener);
7410 ::com::sun::star::container::XEnumerationAccess getComponents();
7411 ::com::sun::star::lang::XComponent getCurrentComponent();
7412 ::com::sun::star::frame::XFrame getCurrentFrame();
7414 published interface XFrameActionListener;
7415 published interface XFramesSupplier;
7416 published interface XFrame {
7417 interface ::com::sun::star::lang::XComponent;
7418 void initialize([in] ::com::sun::star::awt::XWindow xWindow);
7419 ::com::sun::star::awt::XWindow getContainerWindow();
7420 void setCreator([in] ::com::sun::star::frame::XFramesSupplier Creator);
7421 ::com::sun::star::frame::XFramesSupplier getCreator();
7422 string getName();
7423 void setName([in] string aName);
7424 ::com::sun::star::frame::XFrame findFrame([in] string aTargetFrameName, [in] long nSearchFlags);
7425 boolean isTop();
7426 void activate();
7427 void deactivate();
7428 boolean isActive();
7429 boolean setComponent([in] ::com::sun::star::awt::XWindow xComponentWindow, [in] ::com::sun::star::frame::XController xController);
7430 ::com::sun::star::awt::XWindow getComponentWindow();
7431 ::com::sun::star::frame::XController getController();
7432 void contextChanged();
7433 void addFrameActionListener([in] ::com::sun::star::frame::XFrameActionListener xListener);
7434 void removeFrameActionListener([in] ::com::sun::star::frame::XFrameActionListener xListener);
7436 published interface XFrames;
7437 published interface XFramesSupplier {
7438 interface ::com::sun::star::frame::XFrame;
7439 ::com::sun::star::frame::XFrames getFrames();
7440 ::com::sun::star::frame::XFrame getActiveFrame();
7441 void setActiveFrame([in] ::com::sun::star::frame::XFrame Frame);
7443 published interface XDesktop2 {
7444 interface ::com::sun::star::frame::XDispatchProvider;
7445 interface ::com::sun::star::frame::XDispatchProviderInterception;
7446 interface ::com::sun::star::frame::XFramesSupplier;
7447 interface ::com::sun::star::frame::XDesktop;
7448 interface ::com::sun::star::frame::XComponentLoader;
7450 /** @deprecated */ published service Desktop: ::com::sun::star::frame::XDesktop2;
7451 /** @deprecated */ published interface XDesktopTask {
7452 interface ::com::sun::star::lang::XComponent;
7453 /** @deprecated */ void initialize([in] ::com::sun::star::awt::XWindow TaskWindow);
7454 /** @deprecated */ boolean close();
7456 /** @deprecated */ published interface XWindowArranger {
7457 interface ::com::sun::star::uno::XInterface;
7458 /** @deprecated */ boolean hasArrangeCommand([in] short nCommand);
7459 /** @deprecated */ void arrange([in] short nCommand);
7461 /** @deprecated */ published service DesktopTask {
7462 interface ::com::sun::star::frame::XDesktopTask;
7463 interface ::com::sun::star::frame::XFrame;
7464 interface ::com::sun::star::beans::XPropertySet;
7465 interface ::com::sun::star::frame::XWindowArranger;
7466 interface ::com::sun::star::frame::XFramesSupplier;
7467 [property, readonly] string Title;
7468 [property, readonly] boolean IsDesktop;
7469 [property] boolean IsVisible;
7470 [property] boolean IsFloating;
7471 [property] boolean IsAlwaysVisible;
7472 [property] ::com::sun::star::awt::Point Position;
7473 [property] ::com::sun::star::awt::Size Size;
7475 /** @deprecated */ published service DesktopTasks {
7476 interface ::com::sun::star::container::XEnumerationAccess;
7478 published interface XDispatchHelper {
7479 interface ::com::sun::star::uno::XInterface;
7480 any executeDispatch([in] ::com::sun::star::frame::XDispatchProvider DispatchProvider, [in] string URL, [in] string TargetFrameName, [in] long SearchFlags, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments);
7482 published service DispatchHelper: ::com::sun::star::frame::XDispatchHelper;
7483 published service DispatchProvider {
7484 interface ::com::sun::star::frame::XDispatchProvider;
7485 [optional] interface ::com::sun::star::frame::XDispatchProviderInterception;
7487 published interface XDispatchRecorder {
7488 interface ::com::sun::star::uno::XInterface;
7489 void startRecording([in] ::com::sun::star::frame::XFrame Frame);
7490 void endRecording();
7491 void recordDispatch([in] ::com::sun::star::util::URL URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments);
7492 void recordDispatchAsComment([in] ::com::sun::star::util::URL URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments);
7493 string getRecordedMacro();
7495 published service DispatchRecorder: ::com::sun::star::frame::XDispatchRecorder;
7496 published interface XDispatchRecorderSupplier {
7497 interface ::com::sun::star::uno::XInterface;
7498 void setDispatchRecorder([in] ::com::sun::star::frame::XDispatchRecorder Recorder);
7499 ::com::sun::star::frame::XDispatchRecorder getDispatchRecorder();
7500 void dispatchAndRecord([in] ::com::sun::star::util::URL URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments, [in] ::com::sun::star::frame::XDispatch Dispatcher);
7502 published service DispatchRecorderSupplier: ::com::sun::star::frame::XDispatchRecorderSupplier;
7503 published struct DispatchResultEvent: ::com::sun::star::lang::EventObject {
7504 short State;
7505 any Result;
7507 published constants DispatchResultState {
7508 const short DONTKNOW = 2;
7509 const short FAILURE = 0;
7510 const short SUCCESS = 1;
7512 published struct DispatchStatement {
7513 string aCommand;
7514 string aTarget;
7515 sequence< ::com::sun::star::beans::PropertyValue > aArgs;
7516 long nFlags;
7517 boolean bIsComment;
7520 module ucb {
7521 published interface XContent;
7523 module frame {
7524 published interface XDocumentTemplates {
7525 interface ::com::sun::star::uno::XInterface;
7526 ::com::sun::star::ucb::XContent getContent();
7527 boolean storeTemplate([in] string GroupName, [in] string TemplateName, [in] ::com::sun::star::frame::XStorable Storable);
7528 boolean addTemplate([in] string GroupName, [in] string TemplateName, [in] string SourceURL);
7529 boolean removeTemplate([in] string GroupName, [in] string TemplateName);
7530 boolean renameTemplate([in] string GroupName, [in] string OldTemplateName, [in] string NewTemplateName);
7531 boolean addGroup([in] string GroupName);
7532 boolean removeGroup([in] string GroupName);
7533 boolean renameGroup([in] string OldGroupName, [in] string NewGroupName);
7534 void update();
7536 published service DocumentTemplates: ::com::sun::star::frame::XDocumentTemplates;
7537 published struct FeatureStateEvent: ::com::sun::star::lang::EventObject {
7538 ::com::sun::star::util::URL FeatureURL;
7539 string FeatureDescriptor;
7540 boolean IsEnabled;
7541 boolean Requery;
7542 any State;
7545 module task {
7546 published interface XStatusIndicator;
7547 published interface XStatusIndicatorFactory {
7548 interface ::com::sun::star::uno::XInterface;
7549 ::com::sun::star::task::XStatusIndicator createStatusIndicator();
7552 module frame {
7553 published interface XFrame2 {
7554 interface ::com::sun::star::frame::XDispatchProvider;
7555 interface ::com::sun::star::frame::XDispatchInformationProvider;
7556 interface ::com::sun::star::frame::XDispatchProviderInterception;
7557 interface ::com::sun::star::frame::XFramesSupplier;
7558 interface ::com::sun::star::task::XStatusIndicatorFactory;
7559 [attribute, readonly] ::com::sun::star::container::XNameContainer UserDefinedAttributes;
7560 [attribute] string Title;
7561 [attribute] ::com::sun::star::frame::XDispatchRecorderSupplier DispatchRecorderSupplier;
7562 [attribute] ::com::sun::star::uno::XInterface LayoutManager;
7564 published service Frame: ::com::sun::star::frame::XFrame2;
7565 published enum FrameAction {
7566 COMPONENT_ATTACHED = 0,
7567 COMPONENT_DETACHING = 1,
7568 COMPONENT_REATTACHED = 2,
7569 FRAME_ACTIVATED = 3,
7570 FRAME_DEACTIVATING = 4,
7571 CONTEXT_CHANGED = 5,
7572 FRAME_UI_ACTIVATED = 6,
7573 FRAME_UI_DEACTIVATING = 7
7575 published struct FrameActionEvent: ::com::sun::star::lang::EventObject {
7576 ::com::sun::star::frame::XFrame Frame;
7577 ::com::sun::star::frame::FrameAction Action;
7579 published service FrameControl {
7580 service ::com::sun::star::awt::UnoControl;
7581 [property] string ComponentUrl;
7582 [property, readonly] string Frame;
7584 published interface XLoadEventListener;
7585 published interface XFrameLoader {
7586 interface ::com::sun::star::uno::XInterface;
7587 void load([in] ::com::sun::star::frame::XFrame Frame, [in] string URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments, [in] ::com::sun::star::frame::XLoadEventListener Listener);
7588 void cancel();
7590 published service FrameLoader {
7591 interface ::com::sun::star::frame::XFrameLoader;
7592 [optional] interface ::com::sun::star::lang::XInitialization;
7593 [optional] interface ::com::sun::star::container::XNamed;
7595 published service FrameLoaderFactory: ::com::sun::star::frame::XLoaderFactory;
7596 published constants FrameSearchFlag {
7597 const long ALL = 23;
7598 /** @deprecated */ const long AUTO = 0;
7599 const long CHILDREN = 4;
7600 const long CREATE = 8;
7601 const long GLOBAL = 55;
7602 const long PARENT = 1;
7603 const long SELF = 2;
7604 const long SIBLINGS = 16;
7605 const long TASKS = 32;
7607 published interface XFrames {
7608 interface ::com::sun::star::container::XIndexAccess;
7609 void append([in] ::com::sun::star::frame::XFrame xFrame);
7610 sequence< ::com::sun::star::frame::XFrame > queryFrames([in] long nSearchFlags);
7611 void remove([in] ::com::sun::star::frame::XFrame xFrame);
7613 published service FramesContainer {
7614 interface ::com::sun::star::frame::XFrames;
7616 published exception IllegalArgumentIOException: ::com::sun::star::io::IOException {
7618 published interface XFrameActionListener {
7619 interface ::com::sun::star::lang::XEventListener;
7620 void frameAction([in] ::com::sun::star::frame::FrameActionEvent Action);
7623 module ui {
7624 published struct ConfigurationEvent: ::com::sun::star::container::ContainerEvent {
7625 string ResourceURL;
7626 any aInfo;
7629 module util {
7630 published interface XStringMapping {
7631 interface ::com::sun::star::uno::XInterface;
7632 boolean mapStrings([inout] sequence< string > Parameter);
7635 module frame {
7636 published service MediaTypeDetectionHelper: ::com::sun::star::util::XStringMapping;
7637 published interface XSynchronousFrameLoader {
7638 interface ::com::sun::star::uno::XInterface;
7639 boolean load([in] sequence< ::com::sun::star::beans::PropertyValue > Descriptor, [in] ::com::sun::star::frame::XFrame Frame);
7640 void cancel();
7642 published interface XStatusListener {
7643 interface ::com::sun::star::lang::XEventListener;
7644 void statusChanged([in] ::com::sun::star::frame::FeatureStateEvent State);
7646 published interface XUIControllerRegistration {
7647 interface ::com::sun::star::uno::XInterface;
7648 boolean hasController([in] string aCommandURL, [in] string aModelName);
7649 void registerController([in] string aCommandURL, [in] string aModelName, [in] string aControllerImplementationName);
7650 void deregisterController([in] string aCommandURL, [in] string aModelName);
7652 published service ProtocolHandler {
7653 interface ::com::sun::star::frame::XDispatchProvider;
7654 [optional] interface ::com::sun::star::lang::XInitialization;
7656 /** @deprecated */ published service Settings {
7657 interface ::com::sun::star::container::XNameAccess;
7660 module util {
7661 published interface XUpdatable {
7662 interface ::com::sun::star::uno::XInterface;
7663 void update();
7666 module frame {
7667 published service SynchronousFrameLoader {
7668 interface ::com::sun::star::frame::XSynchronousFrameLoader;
7669 [optional] interface ::com::sun::star::lang::XInitialization;
7670 [optional] interface ::com::sun::star::container::XNamed;
7672 /** @deprecated */ published interface XTask {
7673 interface ::com::sun::star::frame::XFrame;
7674 /** @deprecated */ boolean close();
7675 /** @deprecated */ void tileWindows();
7676 /** @deprecated */ void arrangeWindowsVertical();
7677 /** @deprecated */ void arrangeWindowsHorizontal();
7679 /** @deprecated */ published service Task {
7680 /** @deprecated */ interface ::com::sun::star::frame::XFrame;
7681 /** @deprecated */ interface ::com::sun::star::frame::XTask;
7683 published service TemplateAccess {
7684 interface ::com::sun::star::frame::XDocumentTemplates;
7685 interface ::com::sun::star::lang::XLocalizable;
7687 published exception TerminationVetoException: ::com::sun::star::uno::Exception {
7689 published constants WindowArrange {
7690 const short CASCADE = 4;
7691 const short HORIZONTAL = 3;
7692 const short MAXIMIZE = 5;
7693 const short MINIMIZE = 6;
7694 const short TILE = 1;
7695 const short VERTICAL = 2;
7697 /** @deprecated */ published interface XBrowseHistoryRegistry {
7698 interface ::com::sun::star::uno::XInterface;
7699 /** @deprecated */ void updateViewData([in] any Value);
7700 /** @deprecated */ void createNewEntry([in] string URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments, [in] string Title);
7702 /** @deprecated */ published interface XComponentRegistry {
7703 interface ::com::sun::star::uno::XInterface;
7704 /** @deprecated */ ::com::sun::star::uno::XInterface createObject([in] string URL, [in] ::com::sun::star::uno::Uik Uik);
7706 /** @deprecated */ published interface XConfigManager {
7707 interface ::com::sun::star::uno::XInterface;
7708 /** @deprecated */ void addPropertyChangeListener([in] string KeyName, [in] ::com::sun::star::beans::XPropertyChangeListener Listener);
7709 /** @deprecated */ void removePropertyChangeListener([in] string KeyName, [in] ::com::sun::star::beans::XPropertyChangeListener Listener);
7710 string substituteVariables([in] string Text);
7711 /** @deprecated */ void flush();
7713 published interface XDispatchProviderInterceptor {
7714 interface ::com::sun::star::frame::XDispatchProvider;
7715 ::com::sun::star::frame::XDispatchProvider getSlaveDispatchProvider();
7716 void setSlaveDispatchProvider([in] ::com::sun::star::frame::XDispatchProvider NewDispatchProvider);
7717 ::com::sun::star::frame::XDispatchProvider getMasterDispatchProvider();
7718 void setMasterDispatchProvider([in] ::com::sun::star::frame::XDispatchProvider NewSupplier);
7720 published interface XDispatchResultListener {
7721 interface ::com::sun::star::lang::XEventListener;
7722 void dispatchFinished([in] ::com::sun::star::frame::DispatchResultEvent Result);
7724 /** @deprecated */ published interface XExtendedFilterDetection {
7725 interface ::com::sun::star::uno::XInterface;
7726 /** @deprecated */ string detect([in] string URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Argumentlist);
7728 /** @deprecated */ published interface XFilterDetect {
7729 interface ::com::sun::star::uno::XInterface;
7730 string getContentType([in] string URL);
7731 boolean useExternBrowser([in] string URL);
7733 /** @deprecated */ published interface XFrameLoaderQuery {
7734 interface ::com::sun::star::uno::XInterface;
7735 /** @deprecated */ sequence< string > getAvailableFilterNames();
7736 /** @deprecated */ sequence< ::com::sun::star::beans::PropertyValue > getLoaderProperties([in] string sFilterName);
7737 /** @deprecated */ string searchFilter([in] string sURL, [in] sequence< ::com::sun::star::beans::PropertyValue > seqArguments);
7739 /** @deprecated */ published interface XFrameSetModel {
7740 interface ::com::sun::star::uno::XInterface;
7741 string getSource();
7742 void setSource([in] string Source);
7744 published interface XInterceptorInfo {
7745 interface ::com::sun::star::uno::XInterface;
7746 sequence< string > getInterceptedURLs();
7748 published interface XLoadEventListener {
7749 interface ::com::sun::star::lang::XEventListener;
7750 void loadFinished([in] ::com::sun::star::frame::XFrameLoader Loader);
7751 void loadCancelled([in] ::com::sun::star::frame::XFrameLoader Loader);
7753 published interface XLoadable {
7754 interface ::com::sun::star::uno::XInterface;
7755 void initNew() raises (::com::sun::star::frame::DoubleInitializationException, ::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
7756 void load([in] sequence< ::com::sun::star::beans::PropertyValue > lArguments) raises (::com::sun::star::frame::DoubleInitializationException, ::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
7758 published interface XRecordableDispatch {
7759 interface ::com::sun::star::uno::XInterface;
7760 void dispatchAndRecord([in] ::com::sun::star::util::URL URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments, [in] ::com::sun::star::frame::XDispatchRecorder Recorder);
7762 published interface XStorable2 {
7763 interface ::com::sun::star::frame::XStorable;
7764 void storeSelf([in] sequence< ::com::sun::star::beans::PropertyValue > lArguments) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::io::IOException);
7766 published interface XSynchronousDispatch {
7767 interface ::com::sun::star::uno::XInterface;
7768 any dispatchWithReturnValue([in] ::com::sun::star::util::URL URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments);
7770 /** @deprecated */ published interface XTasksSupplier {
7771 interface ::com::sun::star::uno::XInterface;
7772 /** @deprecated */ ::com::sun::star::container::XEnumerationAccess getTasks();
7773 /** @deprecated */ ::com::sun::star::frame::XTask getActiveTask();
7775 published interface XTerminateListener {
7776 interface ::com::sun::star::lang::XEventListener;
7777 void queryTermination([in] ::com::sun::star::lang::EventObject Event) raises (::com::sun::star::frame::TerminationVetoException);
7778 void notifyTermination([in] ::com::sun::star::lang::EventObject Event);
7780 /** @deprecated */ published interface XUrlList {
7781 interface ::com::sun::star::uno::XInterface;
7782 [attribute] sequence< string > List;
7784 published singleton theDesktop: ::com::sun::star::frame::XDesktop2;
7786 module graphic {
7787 published service GraphicDescriptor {
7788 interface ::com::sun::star::beans::XPropertySet;
7789 [property] byte GraphicType;
7790 [property] string MimeType;
7791 [property, optional] ::com::sun::star::awt::Size SizePixel;
7792 [property, optional] ::com::sun::star::awt::Size Size100thMM;
7793 [property, optional] byte BitsPerPixel;
7794 [property, optional] boolean Transparent;
7795 [property, optional] boolean Alpha;
7796 [property, optional] boolean Animated;
7798 published interface XGraphic {
7799 interface ::com::sun::star::uno::XInterface;
7800 byte getType();
7802 published service Graphic {
7803 service ::com::sun::star::graphic::GraphicDescriptor;
7804 interface ::com::sun::star::graphic::XGraphic;
7806 published interface XGraphicProvider {
7807 interface ::com::sun::star::uno::XInterface;
7808 ::com::sun::star::beans::XPropertySet queryGraphicDescriptor([in] ::com::sun::star::beans::PropertyValues MediaProperties) raises (::com::sun::star::io::IOException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException);
7809 ::com::sun::star::graphic::XGraphic queryGraphic([in] ::com::sun::star::beans::PropertyValues MediaProperties) raises (::com::sun::star::io::IOException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException);
7810 void storeGraphic([in] ::com::sun::star::graphic::XGraphic Graphic, [in] ::com::sun::star::beans::PropertyValues MediaProperties) raises (::com::sun::star::io::IOException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException);
7812 published service GraphicProvider: ::com::sun::star::graphic::XGraphicProvider;
7813 published constants GraphicType {
7814 const byte EMPTY = 0;
7815 const byte PIXEL = 1;
7816 const byte VECTOR = 2;
7818 published service MediaProperties {
7819 [property, optional] string URL;
7820 [property, optional] ::com::sun::star::io::XInputStream InputStream;
7821 [property, optional] ::com::sun::star::io::XStream OutputStream;
7822 [property, optional] string MimeType;
7823 [property, optional] ::com::sun::star::beans::PropertyValues FilterData;
7826 module i18n {
7827 published constants AmPmValue {
7828 const short AM = 0;
7829 const short PM = 1;
7831 published struct Boundary {
7832 long startPos;
7833 long endPos;
7836 module linguistic2 {
7837 published interface XHyphenator;
7839 module i18n {
7840 published struct LineBreakHyphenationOptions {
7841 ::com::sun::star::linguistic2::XHyphenator rHyphenator;
7842 ::com::sun::star::beans::PropertyValues aHyphenationOptions;
7843 long hyphenIndex;
7846 module linguistic2 {
7847 published interface XHyphenatedWord;
7849 module i18n {
7850 published struct LineBreakResults {
7851 short breakType;
7852 long breakIndex;
7853 ::com::sun::star::linguistic2::XHyphenatedWord rHyphenatedWord;
7855 published struct LineBreakUserOptions {
7856 string forbiddenBeginCharacters;
7857 string forbiddenEndCharacters;
7858 boolean applyForbiddenRules;
7859 boolean allowPunctuationOutsideMargin;
7860 boolean allowHyphenateEnglish;
7862 published interface XBreakIterator {
7863 interface ::com::sun::star::uno::XInterface;
7864 long nextCharacters([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nCharacterIteratorMode, [in] long nCount, [out] long nDone);
7865 long previousCharacters([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nCharacterIteratorMode, [in] long nCount, [out] long nDone);
7866 ::com::sun::star::i18n::Boundary nextWord([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nWordType);
7867 ::com::sun::star::i18n::Boundary previousWord([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nWordType);
7868 ::com::sun::star::i18n::Boundary getWordBoundary([in] string aText, [in] long nPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nWordType, [in] boolean bPreferForward);
7869 /** @deprecated */ short getWordType([in] string aText, [in] long nPos, [in] ::com::sun::star::lang::Locale aLocale);
7870 boolean isBeginWord([in] string aText, [in] long nPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nWordType);
7871 boolean isEndWord([in] string aText, [in] long nPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nWordType);
7872 long beginOfSentence([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale);
7873 long endOfSentence([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale);
7874 ::com::sun::star::i18n::LineBreakResults getLineBreak([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale, [in] long nMinBreakPos, [in] ::com::sun::star::i18n::LineBreakHyphenationOptions aHyphOptions, [in] ::com::sun::star::i18n::LineBreakUserOptions aUserOptions);
7875 long beginOfScript([in] string aText, [in] long nStartPos, [in] short nScriptType);
7876 long endOfScript([in] string aText, [in] long nStartPos, [in] short nScriptType);
7877 long nextScript([in] string aText, [in] long nStartPos, [in] short nScriptType);
7878 long previousScript([in] string aText, [in] long nStartPos, [in] short nScriptType);
7879 short getScriptType([in] string aText, [in] long nPos);
7880 long beginOfCharBlock([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nCharType);
7881 long endOfCharBlock([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nCharType);
7882 long nextCharBlock([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nCharType);
7883 long previousCharBlock([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nCharType);
7885 published service BreakIterator: ::com::sun::star::i18n::XBreakIterator;
7886 published constants BreakType {
7887 const short HANGINGPUNCTUATION = 3;
7888 const short HYPHENATION = 2;
7889 const short WORDBOUNDARY = 1;
7891 published constants CTLScriptType {
7892 const short CTL_ARABIC = 2;
7893 const short CTL_HEBREW = 1;
7894 const short CTL_INDIC = 4;
7895 const short CTL_THAI = 3;
7896 const short CTL_UNKNOWN = 0;
7898 published struct CalendarItem {
7899 string ID;
7900 string AbbrevName;
7901 string FullName;
7903 published struct Calendar {
7904 sequence< ::com::sun::star::i18n::CalendarItem > Days;
7905 sequence< ::com::sun::star::i18n::CalendarItem > Months;
7906 sequence< ::com::sun::star::i18n::CalendarItem > Eras;
7907 string StartOfWeek;
7908 short MinimumNumberOfDaysForFirstWeek;
7909 boolean Default;
7910 string Name;
7912 published struct CalendarItem2: ::com::sun::star::i18n::CalendarItem {
7913 string NarrowName;
7915 published struct Calendar2 {
7916 sequence< ::com::sun::star::i18n::CalendarItem2 > Days;
7917 sequence< ::com::sun::star::i18n::CalendarItem2 > Months;
7918 sequence< ::com::sun::star::i18n::CalendarItem2 > GenitiveMonths;
7919 sequence< ::com::sun::star::i18n::CalendarItem2 > PartitiveMonths;
7920 sequence< ::com::sun::star::i18n::CalendarItem2 > Eras;
7921 string StartOfWeek;
7922 short MinimumNumberOfDaysForFirstWeek;
7923 boolean Default;
7924 string Name;
7926 published constants CalendarDisplayCode {
7927 const long LONG_DAY = 2;
7928 const long LONG_DAY_NAME = 4;
7929 const long LONG_ERA = 12;
7930 const long LONG_GENITIVE_MONTH_NAME = 18;
7931 const long LONG_MONTH = 6;
7932 const long LONG_MONTH_NAME = 8;
7933 const long LONG_PARTITIVE_MONTH_NAME = 21;
7934 const long LONG_QUARTER = 16;
7935 const long LONG_YEAR = 10;
7936 const long LONG_YEAR_AND_ERA = 14;
7937 const long NARROW_DAY_NAME = 23;
7938 const long NARROW_GENITIVE_MONTH_NAME = 19;
7939 const long NARROW_MONTH_NAME = 24;
7940 const long NARROW_PARTITIVE_MONTH_NAME = 22;
7941 const long SHORT_DAY = 1;
7942 const long SHORT_DAY_NAME = 3;
7943 const long SHORT_ERA = 11;
7944 const long SHORT_GENITIVE_MONTH_NAME = 17;
7945 const long SHORT_MONTH = 5;
7946 const long SHORT_MONTH_NAME = 7;
7947 const long SHORT_PARTITIVE_MONTH_NAME = 20;
7948 const long SHORT_QUARTER = 15;
7949 const long SHORT_YEAR = 9;
7950 const long SHORT_YEAR_AND_ERA = 13;
7952 published constants CalendarDisplayIndex {
7953 const short AM_PM = 0;
7954 const short DAY = 1;
7955 const short ERA = 4;
7956 const short GENITIVE_MONTH = 5;
7957 const short MONTH = 2;
7958 const short PARTITIVE_MONTH = 6;
7959 const short YEAR = 3;
7961 published constants CalendarFieldIndex {
7962 const short AM_PM = 0;
7963 const short DAY_OF_MONTH = 1;
7964 const short DAY_OF_WEEK = 2;
7965 const short DAY_OF_YEAR = 3;
7966 const short DST_OFFSET = 4;
7967 const short DST_OFFSET_SECOND_MILLIS = 16;
7968 const short ERA = 13;
7969 const short FIELD_COUNT = 15;
7970 const short FIELD_COUNT2 = 17;
7971 const short HOUR = 5;
7972 const short MILLISECOND = 8;
7973 const short MINUTE = 6;
7974 const short MONTH = 12;
7975 const short SECOND = 7;
7976 const short WEEK_OF_MONTH = 9;
7977 const short WEEK_OF_YEAR = 10;
7978 const short YEAR = 11;
7979 const short ZONE_OFFSET = 14;
7980 const short ZONE_OFFSET_SECOND_MILLIS = 15;
7982 published interface XCollator {
7983 interface ::com::sun::star::uno::XInterface;
7984 long compareSubstring([in] string aStr1, [in] long nOff1, [in] long nLen1, [in] string aStr2, [in] long nOff2, [in] long nLen2);
7985 long compareString([in] string aStr1, [in] string aStr2);
7986 long loadDefaultCollator([in] ::com::sun::star::lang::Locale aLocale, [in] long nCollatorOptions);
7987 long loadCollatorAlgorithm([in] string aAlgorithmName, [in] ::com::sun::star::lang::Locale aLocale, [in] long nCollatorOptions);
7988 sequence< string > listCollatorAlgorithms([in] ::com::sun::star::lang::Locale aLocale);
7989 void loadCollatorAlgorithmWithEndUserOption([in] string aAlgorithmName, [in] ::com::sun::star::lang::Locale aLocale, [in] sequence< long > aCollatorOptions);
7990 sequence< long > listCollatorOptions([in] string aAlgorithmName);
7992 published service ChapterCollator: ::com::sun::star::i18n::XCollator;
7993 published constants CharType {
7994 const short ANY_CHAR = 0;
7995 const short COMBINING_SPACING_MARK = 8;
7996 const short CONNECTOR_PUNCTUATION = 22;
7997 const short CONTROL = 15;
7998 const short CURRENCY_SYMBOL = 25;
7999 const short DASH_PUNCTUATION = 19;
8000 const short DECIMAL_DIGIT_NUMBER = 9;
8001 const short ENCLOSING_MARK = 7;
8002 const short END_PUNCTUATION = 21;
8003 const short FINAL_PUNCTUATION = 29;
8004 const short FORMAT = 16;
8005 const short GENERAL_TYPES_COUNT = 30;
8006 const short INITIAL_PUNCTUATION = 28;
8007 const short LETTER_NUMBER = 10;
8008 const short LINE_SEPARATOR = 13;
8009 const short LOWERCASE_LETTER = 2;
8010 const short MATH_SYMBOL = 24;
8011 const short MODIFIER_LETTER = 4;
8012 const short MODIFIER_SYMBOL = 26;
8013 const short NON_SPACING_MARK = 6;
8014 const short OTHER_LETTER = 5;
8015 const short OTHER_NUMBER = 11;
8016 const short OTHER_PUNCTUATION = 23;
8017 const short OTHER_SYMBOL = 27;
8018 const short PARAGRAPH_SEPARATOR = 14;
8019 const short PRIVATE_USE = 17;
8020 const short SPACE_SEPARATOR = 12;
8021 const short START_PUNCTUATION = 20;
8022 const short SURROGATE = 18;
8023 const short TITLECASE_LETTER = 3;
8024 const short UPPERCASE_LETTER = 1;
8026 published struct ParseResult {
8027 long LeadingWhiteSpace;
8028 long EndPos;
8029 long CharLen;
8030 double Value;
8031 long TokenType;
8032 long StartFlags;
8033 long ContFlags;
8034 string DequotedNameOrString;
8036 published interface XCharacterClassification {
8037 interface ::com::sun::star::uno::XInterface;
8038 string toUpper([in] string aText, [in] long nPos, [in] long nCount, [in] ::com::sun::star::lang::Locale aLocale);
8039 string toLower([in] string aText, [in] long nPos, [in] long nCount, [in] ::com::sun::star::lang::Locale aLocale);
8040 string toTitle([in] string aText, [in] long nPos, [in] long nCount, [in] ::com::sun::star::lang::Locale aLocale);
8041 short getType([in] string aText, [in] long nPos);
8042 short getCharacterDirection([in] string aText, [in] long nPos);
8043 short getScript([in] string aText, [in] long nPos);
8044 long getCharacterType([in] string aText, [in] long nPos, [in] ::com::sun::star::lang::Locale aLocale);
8045 long getStringType([in] string aText, [in] long nPos, [in] long nCount, [in] ::com::sun::star::lang::Locale aLocale);
8046 ::com::sun::star::i18n::ParseResult parseAnyToken([in] string aText, [in] long nPos, [in] ::com::sun::star::lang::Locale aLocale, [in] long nStartCharFlags, [in] string aUserDefinedCharactersStart, [in] long nContCharFlags, [in] string aUserDefinedCharactersCont);
8047 ::com::sun::star::i18n::ParseResult parsePredefinedToken([in] long nTokenType, [in] string aText, [in] long nPos, [in] ::com::sun::star::lang::Locale aLocale, [in] long nStartCharFlags, [in] string aUserDefinedCharactersStart, [in] long nContCharFlags, [in] string aUserDefinedCharactersCont);
8049 published service CharacterClassification: ::com::sun::star::i18n::XCharacterClassification;
8050 published constants CharacterIteratorMode {
8051 const short SKIPCELL = 1;
8052 const short SKIPCHARACTER = 0;
8053 const short SKIPCONTROLCHARACTER = 2;
8055 published service Collator: ::com::sun::star::i18n::XCollator;
8056 published constants CollatorOptions {
8057 const short CollatorOptions_IGNORE_CASE = 1;
8058 const short CollatorOptions_IGNORE_CASE_ACCENT = 8;
8059 const short CollatorOptions_IGNORE_KANA = 2;
8060 const short CollatorOptions_IGNORE_WIDTH = 4;
8062 published struct Currency {
8063 string ID;
8064 string Symbol;
8065 string BankSymbol;
8066 string Name;
8067 boolean Default;
8068 boolean UsedInCompatibleFormatCodes;
8069 short DecimalPlaces;
8071 published struct Currency2: ::com::sun::star::i18n::Currency {
8072 boolean LegacyOnly;
8074 published enum DirectionProperty {
8075 LEFT_TO_RIGHT = 0,
8076 RIGHT_TO_LEFT = 1,
8077 EUROPEAN_NUMBER = 2,
8078 EUROPEAN_NUMBER_SEPARATOR = 3,
8079 EUROPEAN_NUMBER_TERMINATOR = 4,
8080 ARABIC_NUMBER = 5,
8081 COMMON_NUMBER_SEPARATOR = 6,
8082 BLOCK_SEPARATOR = 7,
8083 SEGMENT_SEPARATOR = 8,
8084 WHITE_SPACE_NEUTRAL = 9,
8085 OTHER_NEUTRAL = 10,
8086 LEFT_TO_RIGHT_EMBEDDING = 11,
8087 LEFT_TO_RIGHT_OVERRIDE = 12,
8088 RIGHT_TO_LEFT_ARABIC = 13,
8089 RIGHT_TO_LEFT_EMBEDDING = 14,
8090 RIGHT_TO_LEFT_OVERRIDE = 15,
8091 POP_DIRECTIONAL_FORMAT = 16,
8092 DIR_NON_SPACING_MARK = 17,
8093 BOUNDARY_NEUTRAL = 18
8095 published struct ForbiddenCharacters {
8096 string beginLine;
8097 string endLine;
8099 published struct FormatElement {
8100 string formatCode;
8101 string formatName;
8102 string formatKey;
8103 string formatType;
8104 string formatUsage;
8105 short formatIndex;
8106 boolean isDefault;
8108 published struct Implementation {
8109 string unoID;
8110 boolean isDefault;
8112 published interface XIndexEntrySupplier {
8113 interface ::com::sun::star::uno::XInterface;
8114 string getIndexCharacter([in] string aIndexEntry, [in] ::com::sun::star::lang::Locale aLocale, [in] string aSortAlgorithm);
8115 string getIndexFollowPageWord([in] boolean bMorePages, [in] ::com::sun::star::lang::Locale aLocale);
8117 published interface XExtendedIndexEntrySupplier {
8118 interface ::com::sun::star::i18n::XIndexEntrySupplier;
8119 sequence< ::com::sun::star::lang::Locale > getLocaleList();
8120 sequence< string > getAlgorithmList([in] ::com::sun::star::lang::Locale aLocale);
8121 boolean usePhoneticEntry([in] ::com::sun::star::lang::Locale aLocale);
8122 string getPhoneticCandidate([in] string aIndexEntry, [in] ::com::sun::star::lang::Locale aLocale);
8123 boolean loadAlgorithm([in] ::com::sun::star::lang::Locale aLocale, [in] string aIndexAlgorithm, [in] long nCollatorOptions);
8124 string getIndexKey([in] string aIndexEntry, [in] string aPhoneticEntry, [in] ::com::sun::star::lang::Locale aLocale);
8125 short compareIndexEntry([in] string aIndexEntry1, [in] string aPhoneticEntry1, [in] ::com::sun::star::lang::Locale aLocale1, [in] string aIndexEntry2, [in] string aPhoneticEntry2, [in] ::com::sun::star::lang::Locale aLocale2);
8127 published service IndexEntrySupplier: ::com::sun::star::i18n::XExtendedIndexEntrySupplier;
8128 published constants InputSequenceCheckMode {
8129 const short BASIC = 1;
8130 const short PASSTHROUGH = 0;
8131 const short STRICT = 2;
8133 published interface XInputSequenceChecker {
8134 interface ::com::sun::star::uno::XInterface;
8135 boolean checkInputSequence([in] string aText, [in] long nPos, [in] char cInputChar, [in] short nInputCheckMode);
8137 published interface XExtendedInputSequenceChecker {
8138 interface ::com::sun::star::i18n::XInputSequenceChecker;
8139 long correctInputSequence([inout] string aText, [in] long nPos, [in] char cInputChar, [in] short nInputCheckMode);
8141 published service InputSequenceChecker: ::com::sun::star::i18n::XExtendedInputSequenceChecker;
8142 published constants KCharacterType {
8143 const long ALPHA = 14;
8144 const long BASE_FORM = 64;
8145 const long CONTROL = 16;
8146 const long DIGIT = 1;
8147 const long LETTER = 128;
8148 const long LOWER = 4;
8149 const long PRINTABLE = 32;
8150 const long TITLE_CASE = 8;
8151 const long UPPER = 2;
8153 published constants KNumberFormatType {
8154 const short LONG = 3;
8155 const short MEDIUM = 2;
8156 const short SHORT = 1;
8158 published constants KNumberFormatUsage {
8159 const short CURRENCY = 8;
8160 const short DATE = 1;
8161 const short DATE_TIME = 3;
8162 const short FIXED_NUMBER = 4;
8163 const short FRACTION_NUMBER = 5;
8164 const short PERCENT_NUMBER = 6;
8165 const short SCIENTIFIC_NUMBER = 7;
8166 const short TIME = 2;
8168 published constants KParseTokens {
8169 const long ANY_ALNUM = 61447;
8170 const long ANY_ALPHA = 45059;
8171 const long ANY_DIGIT = 16388;
8172 const long ANY_LETTER = 241667;
8173 const long ANY_LETTER_OR_NUMBER = 1044487;
8174 const long ANY_NUMBER = 802820;
8175 const long ASC_ALNUM = 7;
8176 const long ASC_ALPHA = 3;
8177 const long ASC_ANY_BUT_CONTROL = 1024;
8178 const long ASC_COLON = 64;
8179 const long ASC_CONTROL = 512;
8180 const long ASC_DIGIT = 4;
8181 const long ASC_DOLLAR = 16;
8182 const long ASC_DOT = 32;
8183 const long ASC_LOALPHA = 2;
8184 const long ASC_OTHER = 2048;
8185 const long ASC_UNDERSCORE = 8;
8186 const long ASC_UPALPHA = 1;
8187 const long IGNORE_LEADING_WS = 1073741824;
8188 const long TWO_DOUBLE_QUOTES_BREAK_STRING = 268435456;
8189 const long UNI_ALNUM = 61440;
8190 const long UNI_ALPHA = 45056;
8191 const long UNI_DIGIT = 16384;
8192 const long UNI_LETTER = 241664;
8193 const long UNI_LETTER_NUMBER = 262144;
8194 const long UNI_LOALPHA = 8192;
8195 const long UNI_MODIFIER_LETTER = 65536;
8196 const long UNI_NUMBER = 802816;
8197 const long UNI_OTHER = 536870912;
8198 const long UNI_OTHER_LETTER = 131072;
8199 const long UNI_OTHER_NUMBER = 524288;
8200 const long UNI_TITLE_ALPHA = 32768;
8201 const long UNI_UPALPHA = 4096;
8203 published constants KParseType {
8204 const long ANY_NUMBER = 96;
8205 const long ASC_NUMBER = 32;
8206 const long BOOLEAN = 2;
8207 const long DOUBLE_QUOTE_STRING = 16;
8208 const long IDENTNAME = 4;
8209 const long MISSING_QUOTE = 1073741824;
8210 const long ONE_SINGLE_CHAR = 1;
8211 const long SINGLE_QUOTE_NAME = 8;
8212 const long UNI_NUMBER = 64;
8214 published struct LanguageCountryInfo {
8215 string Language;
8216 string LanguageDefaultName;
8217 string Country;
8218 string CountryDefaultName;
8219 string Variant;
8221 published interface XCalendar {
8222 interface ::com::sun::star::uno::XInterface;
8223 void loadDefaultCalendar([in] ::com::sun::star::lang::Locale rLocale);
8224 void loadCalendar([in] string uniqueID, [in] ::com::sun::star::lang::Locale rLocale);
8225 ::com::sun::star::i18n::Calendar getLoadedCalendar();
8226 sequence< string > getAllCalendars([in] ::com::sun::star::lang::Locale rLocale);
8227 string getUniqueID();
8228 void setDateTime([in] double nTimeInDays);
8229 double getDateTime();
8230 void setValue([in] short nCalendarFieldIndex, [in] short nValue);
8231 short getValue([in] short nCalendarFieldIndex);
8232 boolean isValid();
8233 void addValue([in] short nCalendarFieldIndex, [in] long nAmount);
8234 short getFirstDayOfWeek();
8235 void setFirstDayOfWeek([in] short nDay);
8236 void setMinimumNumberOfDaysForFirstWeek([in] short nDays);
8237 short getMinimumNumberOfDaysForFirstWeek();
8238 short getNumberOfMonthsInYear();
8239 short getNumberOfDaysInWeek();
8240 sequence< ::com::sun::star::i18n::CalendarItem > getMonths();
8241 sequence< ::com::sun::star::i18n::CalendarItem > getDays();
8242 string getDisplayName([in] short nCalendarDisplayIndex, [in] short nIdx, [in] short nNameType);
8244 published interface XExtendedCalendar {
8245 interface ::com::sun::star::i18n::XCalendar;
8246 string getDisplayString([in] long nCalendarDisplayCode, [in] short nNativeNumberMode);
8248 published interface XCalendar3 {
8249 interface ::com::sun::star::i18n::XExtendedCalendar;
8250 ::com::sun::star::i18n::Calendar2 getLoadedCalendar2();
8251 sequence< ::com::sun::star::i18n::CalendarItem2 > getDays2();
8252 sequence< ::com::sun::star::i18n::CalendarItem2 > getMonths2();
8253 sequence< ::com::sun::star::i18n::CalendarItem2 > getGenitiveMonths2();
8254 sequence< ::com::sun::star::i18n::CalendarItem2 > getPartitiveMonths2();
8256 published service LocaleCalendar: ::com::sun::star::i18n::XCalendar3;
8257 published struct LocaleDataItem {
8258 string unoID;
8259 string dateSeparator;
8260 string thousandSeparator;
8261 string decimalSeparator;
8262 string timeSeparator;
8263 string time100SecSeparator;
8264 string listSeparator;
8265 string quotationStart;
8266 string quotationEnd;
8267 string doubleQuotationStart;
8268 string doubleQuotationEnd;
8269 string timeAM;
8270 string timePM;
8271 string measurementSystem;
8272 string LongDateDayOfWeekSeparator;
8273 string LongDateDaySeparator;
8274 string LongDateMonthSeparator;
8275 string LongDateYearSeparator;
8277 published interface XLocaleData {
8278 interface ::com::sun::star::uno::XInterface;
8279 ::com::sun::star::i18n::LanguageCountryInfo getLanguageCountryInfo([in] ::com::sun::star::lang::Locale aLocale);
8280 ::com::sun::star::i18n::LocaleDataItem getLocaleItem([in] ::com::sun::star::lang::Locale aLocale);
8281 sequence< ::com::sun::star::i18n::Calendar > getAllCalendars([in] ::com::sun::star::lang::Locale aLocale);
8282 sequence< ::com::sun::star::i18n::Currency > getAllCurrencies([in] ::com::sun::star::lang::Locale aLocale);
8283 sequence< ::com::sun::star::i18n::FormatElement > getAllFormats([in] ::com::sun::star::lang::Locale aLocale);
8284 sequence< ::com::sun::star::i18n::Implementation > getCollatorImplementations([in] ::com::sun::star::lang::Locale aLocale);
8285 sequence< string > getSearchOptions([in] ::com::sun::star::lang::Locale aLocale);
8286 sequence< string > getCollationOptions([in] ::com::sun::star::lang::Locale aLocale);
8287 sequence< string > getTransliterations([in] ::com::sun::star::lang::Locale aLocale);
8288 ::com::sun::star::i18n::ForbiddenCharacters getForbiddenCharacters([in] ::com::sun::star::lang::Locale aLocale);
8289 sequence< string > getReservedWord([in] ::com::sun::star::lang::Locale aLocale);
8290 sequence< ::com::sun::star::lang::Locale > getAllInstalledLocaleNames();
8292 published interface XLocaleData2 {
8293 interface ::com::sun::star::i18n::XLocaleData;
8294 sequence< ::com::sun::star::i18n::Currency2 > getAllCurrencies2([in] ::com::sun::star::lang::Locale aLocale);
8296 published interface XLocaleData3 {
8297 interface ::com::sun::star::i18n::XLocaleData2;
8298 sequence< ::com::sun::star::i18n::Calendar2 > getAllCalendars2([in] ::com::sun::star::lang::Locale aLocale);
8300 published interface XLocaleData4 {
8301 interface ::com::sun::star::i18n::XLocaleData3;
8302 sequence< string > getDateAcceptancePatterns([in] ::com::sun::star::lang::Locale aLocale);
8304 published service LocaleData: ::com::sun::star::i18n::XLocaleData4;
8305 /** @deprecated */ published constants LocaleItem {
8306 const short COUNT = 17;
8307 const short DATE_SEPARATOR = 0;
8308 const short DECIMAL_SEPARATOR = 2;
8309 const short DOUBLE_QUOTATION_END = 9;
8310 const short DOUBLE_QUOTATION_START = 8;
8311 const short LIST_SEPARATOR = 5;
8312 const short LONG_DATE_DAY_OF_WEEK_SEPARATOR = 13;
8313 const short LONG_DATE_DAY_SEPARATOR = 14;
8314 const short LONG_DATE_MONTH_SEPARATOR = 15;
8315 const short LONG_DATE_YEAR_SEPARATOR = 16;
8316 const short MEASUREMENT_SYSTEM = 10;
8317 const short SINGLE_QUOTATION_END = 7;
8318 const short SINGLE_QUOTATION_START = 6;
8319 const short THOUSAND_SEPARATOR = 1;
8320 const short TIME_100SEC_SEPARATOR = 4;
8321 const short TIME_AM = 11;
8322 const short TIME_PM = 12;
8323 const short TIME_SEPARATOR = 3;
8325 published constants Months {
8326 const short APRIL = 3;
8327 const short AUGUST = 7;
8328 const short DECEMBER = 11;
8329 const short FEBURARY = 1;
8330 const short JANUARY = 0;
8331 const short JULY = 6;
8332 const short JUNE = 5;
8333 const short MARCH = 2;
8334 const short MAY = 4;
8335 const short NOVEMBER = 10;
8336 const short OCTOBER = 9;
8337 const short SEPTEMBER = 8;
8339 published exception MultipleCharsOutputException: ::com::sun::star::uno::Exception {
8341 published constants NativeNumberMode {
8342 const short NATNUM0 = 0;
8343 const short NATNUM1 = 1;
8344 const short NATNUM10 = 10;
8345 const short NATNUM11 = 11;
8346 const short NATNUM2 = 2;
8347 const short NATNUM3 = 3;
8348 const short NATNUM4 = 4;
8349 const short NATNUM5 = 5;
8350 const short NATNUM6 = 6;
8351 const short NATNUM7 = 7;
8352 const short NATNUM8 = 8;
8353 const short NATNUM9 = 9;
8355 published struct NativeNumberXmlAttributes {
8356 ::com::sun::star::lang::Locale Locale;
8357 string Format;
8358 string Style;
8360 published interface XNativeNumberSupplier {
8361 interface ::com::sun::star::uno::XInterface;
8362 string getNativeNumberString([in] string aNumberString, [in] ::com::sun::star::lang::Locale aLocale, [in] short nNativeNumberMode);
8363 boolean isValidNatNum([in] ::com::sun::star::lang::Locale aLocale, [in] short nNativeNumberMode);
8364 ::com::sun::star::i18n::NativeNumberXmlAttributes convertToXmlAttributes([in] ::com::sun::star::lang::Locale aLocale, [in] short nNativeNumberMode);
8365 short convertFromXmlAttributes([in] ::com::sun::star::i18n::NativeNumberXmlAttributes aAttr);
8367 published service NativeNumberSupplier: ::com::sun::star::i18n::XNativeNumberSupplier;
8368 published struct NumberFormatCode {
8369 short Type;
8370 short Usage;
8371 string Code;
8372 string DefaultName;
8373 string NameID;
8374 short Index;
8375 boolean Default;
8377 published constants NumberFormatIndex {
8378 const short BOOLEAN = 48;
8379 const short CURRENCY_1000DEC2 = 13;
8380 const short CURRENCY_1000DEC2_CCC = 16;
8381 const short CURRENCY_1000DEC2_DASHED = 17;
8382 const short CURRENCY_1000DEC2_RED = 15;
8383 const short CURRENCY_1000INT = 12;
8384 const short CURRENCY_1000INT_RED = 14;
8385 const short CURRENCY_END = 17;
8386 const short CURRENCY_START = 12;
8387 const short DATETIME_END = 47;
8388 const short DATETIME_START = 46;
8389 const short DATETIME_SYSTEM_SHORT_HHMM = 46;
8390 const short DATETIME_SYS_DDMMYYYY_HHMMSS = 47;
8391 const short DATE_DEF_NNDDMMMYY = 28;
8392 const short DATE_DIN_DMMMMYYYY = 26;
8393 const short DATE_DIN_DMMMYYYY = 24;
8394 const short DATE_DIN_MMDD = 31;
8395 const short DATE_DIN_YYMMDD = 32;
8396 const short DATE_DIN_YYYYMMDD = 33;
8397 const short DATE_END = 38;
8398 const short DATE_MMMM = 36;
8399 const short DATE_QQJJ = 37;
8400 const short DATE_START = 18;
8401 const short DATE_SYSTEM_LONG = 19;
8402 const short DATE_SYSTEM_SHORT = 18;
8403 const short DATE_SYS_DDMMM = 35;
8404 const short DATE_SYS_DDMMYY = 20;
8405 const short DATE_SYS_DDMMYYYY = 21;
8406 const short DATE_SYS_DMMMMYYYY = 25;
8407 const short DATE_SYS_DMMMYY = 22;
8408 const short DATE_SYS_DMMMYYYY = 23;
8409 const short DATE_SYS_MMYY = 34;
8410 const short DATE_SYS_NNDMMMMYYYY = 29;
8411 const short DATE_SYS_NNDMMMYY = 27;
8412 const short DATE_SYS_NNNNDMMMMYYYY = 30;
8413 const short DATE_WW = 38;
8414 const short FRACTION_1 = 10;
8415 const short FRACTION_2 = 11;
8416 const short FRACTION_END = 11;
8417 const short FRACTION_START = 10;
8418 const short INDEX_TABLE_ENTRIES = 50;
8419 const short NUMBER_1000DEC2 = 4;
8420 const short NUMBER_1000INT = 3;
8421 const short NUMBER_DEC2 = 2;
8422 const short NUMBER_END = 5;
8423 const short NUMBER_INT = 1;
8424 const short NUMBER_STANDARD = 0;
8425 const short NUMBER_START = 0;
8426 const short NUMBER_SYSTEM = 5;
8427 const short PERCENT_DEC2 = 9;
8428 const short PERCENT_END = 9;
8429 const short PERCENT_INT = 8;
8430 const short PERCENT_START = 8;
8431 const short SCIENTIFIC_000E00 = 7;
8432 const short SCIENTIFIC_000E000 = 6;
8433 const short SCIENTIFIC_END = 7;
8434 const short SCIENTIFIC_START = 6;
8435 const short TEXT = 49;
8436 const short TIME_END = 45;
8437 const short TIME_HHMM = 39;
8438 const short TIME_HHMMAMPM = 41;
8439 const short TIME_HHMMSS = 40;
8440 const short TIME_HHMMSSAMPM = 42;
8441 const short TIME_HH_MMSS = 43;
8442 const short TIME_HH_MMSS00 = 45;
8443 const short TIME_MMSS00 = 44;
8444 const short TIME_START = 39;
8446 published interface XNumberFormatCode {
8447 interface ::com::sun::star::uno::XInterface;
8448 ::com::sun::star::i18n::NumberFormatCode getDefault([in] short nFormatType, [in] short nFormatUsage, [in] ::com::sun::star::lang::Locale rLocale);
8449 ::com::sun::star::i18n::NumberFormatCode getFormatCode([in] short nFormatIndex, [in] ::com::sun::star::lang::Locale rLocale);
8450 sequence< ::com::sun::star::i18n::NumberFormatCode > getAllFormatCode([in] short nFormatUsage, [in] ::com::sun::star::lang::Locale rLocale);
8451 sequence< ::com::sun::star::i18n::NumberFormatCode > getAllFormatCodes([in] ::com::sun::star::lang::Locale rLocale);
8453 published service NumberFormatMapper: ::com::sun::star::i18n::XNumberFormatCode;
8454 published constants ScriptDirection {
8455 const short LEFT_TO_RIGHT = 1;
8456 const short NEUTRAL = 0;
8457 const short RIGHT_TO_LEFT = 2;
8459 published constants ScriptType {
8460 const short ASIAN = 2;
8461 const short COMPLEX = 3;
8462 const short LATIN = 1;
8463 const short WEAK = 4;
8465 published struct TextConversionResult {
8466 ::com::sun::star::i18n::Boundary Boundary;
8467 sequence< string > Candidates;
8469 published interface XTextConversion {
8470 interface ::com::sun::star::uno::XInterface;
8471 ::com::sun::star::i18n::TextConversionResult getConversions([in] string aText, [in] long nStartPos, [in] long nLength, [in] ::com::sun::star::lang::Locale Locale, [in] short nTextConversionType, [in] long nTextConversionOptions) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::NoSupportException);
8472 string getConversion([in] string aText, [in] long nStartPos, [in] long nLength, [in] ::com::sun::star::lang::Locale Locale, [in] short nTextConversionType, [in] long nTextConversionOptions) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::NoSupportException);
8473 boolean interactiveConversion([in] ::com::sun::star::lang::Locale Locale, [in] short nTextConversionType, [in] long nTextConversionOptions) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::NoSupportException);
8475 published interface XExtendedTextConversion {
8476 interface ::com::sun::star::i18n::XTextConversion;
8477 string getConversionWithOffset([in] string aText, [in] long nStartPos, [in] long nLength, [in] ::com::sun::star::lang::Locale aLocale, [in] short nTextConversionType, [in] long nTextConversionOptions, [out] sequence< long > rOffset) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::NoSupportException);
8479 published service TextConversion: ::com::sun::star::i18n::XExtendedTextConversion;
8480 published constants TextConversionOption {
8481 const long CHARACTER_BY_CHARACTER = 1;
8482 const long IGNORE_POST_POSITIONAL_WORD = 2;
8483 const long NONE = 0;
8484 const long USE_CHARACTER_VARIANTS = 2;
8486 published constants TextConversionType {
8487 const short TO_HANGUL = 1;
8488 const short TO_HANJA = 2;
8489 const short TO_SCHINESE = 3;
8490 const short TO_TCHINESE = 4;
8492 published enum TransliterationModules {
8493 UPPERCASE_LOWERCASE = 1,
8494 LOWERCASE_UPPERCASE = 2,
8495 HALFWIDTH_FULLWIDTH = 3,
8496 FULLWIDTH_HALFWIDTH = 4,
8497 KATAKANA_HIRAGANA = 5,
8498 HIRAGANA_KATAKANA = 6,
8499 NumToTextLower_zh_CN = 7,
8500 NumToTextUpper_zh_CN = 8,
8501 NumToTextLower_zh_TW = 9,
8502 NumToTextUpper_zh_TW = 10,
8503 NumToTextFormalHangul_ko = 11,
8504 NumToTextFormalLower_ko = 12,
8505 NumToTextFormalUpper_ko = 13,
8506 NON_IGNORE_MASK = 255,
8507 IGNORE_MASK = -256,
8508 IGNORE_CASE = 256,
8509 IGNORE_KANA = 512,
8510 IGNORE_WIDTH = 1024,
8511 ignoreTraditionalKanji_ja_JP = 4096,
8512 ignoreTraditionalKana_ja_JP = 8192,
8513 ignoreMinusSign_ja_JP = 16384,
8514 ignoreIterationMark_ja_JP = 32768,
8515 ignoreSeparator_ja_JP = 65536,
8516 ignoreZiZu_ja_JP = 131072,
8517 ignoreBaFa_ja_JP = 262144,
8518 ignoreTiJi_ja_JP = 524288,
8519 ignoreHyuByu_ja_JP = 1048576,
8520 ignoreSeZe_ja_JP = 2097152,
8521 ignoreIandEfollowedByYa_ja_JP = 4194304,
8522 ignoreKiKuFollowedBySa_ja_JP = 8388608,
8523 ignoreSize_ja_JP = 16777216,
8524 ignoreProlongedSoundMark_ja_JP = 33554432,
8525 ignoreMiddleDot_ja_JP = 67108864,
8526 ignoreSpace_ja_JP = 134217728,
8527 smallToLarge_ja_JP = 268435456,
8528 largeToSmall_ja_JP = 536870912,
8529 END_OF_MODULE = 0
8531 published enum TransliterationModulesNew {
8532 UPPERCASE_LOWERCASE = 1,
8533 LOWERCASE_UPPERCASE = 2,
8534 HALFWIDTH_FULLWIDTH = 3,
8535 FULLWIDTH_HALFWIDTH = 4,
8536 KATAKANA_HIRAGANA = 5,
8537 HIRAGANA_KATAKANA = 6,
8538 IGNORE_CASE = 7,
8539 IGNORE_KANA = 8,
8540 IGNORE_WIDTH = 9,
8541 ignoreTraditionalKanji_ja_JP = 10,
8542 ignoreTraditionalKana_ja_JP = 11,
8543 ignoreMinusSign_ja_JP = 12,
8544 ignoreIterationMark_ja_JP = 13,
8545 ignoreSeparator_ja_JP = 14,
8546 ignoreZiZu_ja_JP = 15,
8547 ignoreBaFa_ja_JP = 16,
8548 ignoreTiJi_ja_JP = 17,
8549 ignoreHyuByu_ja_JP = 18,
8550 ignoreSeZe_ja_JP = 19,
8551 ignoreIandEfollowedByYa_ja_JP = 20,
8552 ignoreKiKuFollowedBySa_ja_JP = 21,
8553 ignoreSize_ja_JP = 22,
8554 ignoreProlongedSoundMark_ja_JP = 23,
8555 ignoreMiddleDot_ja_JP = 24,
8556 ignoreSpace_ja_JP = 25,
8557 smallToLarge_ja_JP = 26,
8558 largeToSmall_ja_JP = 27,
8559 NumToTextLower_zh_CN = 28,
8560 NumToTextUpper_zh_CN = 29,
8561 NumToTextLower_zh_TW = 30,
8562 NumToTextUpper_zh_TW = 31,
8563 NumToTextFormalHangul_ko = 32,
8564 NumToTextFormalLower_ko = 33,
8565 NumToTextFormalUpper_ko = 34,
8566 NumToTextInformalHangul_ko = 35,
8567 NumToTextInformalLower_ko = 36,
8568 NumToTextInformalUpper_ko = 37,
8569 NumToCharLower_zh_CN = 38,
8570 NumToCharUpper_zh_CN = 39,
8571 NumToCharLower_zh_TW = 40,
8572 NumToCharUpper_zh_TW = 41,
8573 NumToCharHangul_ko = 42,
8574 NumToCharLower_ko = 43,
8575 NumToCharUpper_ko = 44,
8576 NumToCharFullwidth = 45,
8577 NumToCharKanjiShort_ja_JP = 46,
8578 TextToNumLower_zh_CN = 47,
8579 TextToNumUpper_zh_CN = 48,
8580 TextToNumLower_zh_TW = 49,
8581 TextToNumUpper_zh_TW = 50,
8582 TextToNumFormalHangul_ko = 51,
8583 TextToNumFormalLower_ko = 52,
8584 TextToNumFormalUpper_ko = 53,
8585 TextToNumInformalHangul_ko = 54,
8586 TextToNumInformalLower_ko = 55,
8587 TextToNumInformalUpper_ko = 56,
8588 CharToNumLower_zh_CN = 59,
8589 CharToNumUpper_zh_CN = 60,
8590 CharToNumLower_zh_TW = 61,
8591 CharToNumUpper_zh_TW = 62,
8592 CharToNumHangul_ko = 63,
8593 CharToNumLower_ko = 64,
8594 CharToNumUpper_ko = 65,
8595 END_OF_MODULE = 0
8597 published interface XTransliteration {
8598 interface ::com::sun::star::uno::XInterface;
8599 string getName();
8600 short getType();
8601 void loadModule([in] ::com::sun::star::i18n::TransliterationModules eModType, [in] ::com::sun::star::lang::Locale aLocale);
8602 void loadModuleNew([in] sequence< ::com::sun::star::i18n::TransliterationModulesNew > aModType, [in] ::com::sun::star::lang::Locale aLocale);
8603 void loadModuleByImplName([in] string aImplName, [in] ::com::sun::star::lang::Locale aLocale);
8604 void loadModulesByImplNames([in] sequence< string > aImplNameList, [in] ::com::sun::star::lang::Locale aLocale);
8605 sequence< string > getAvailableModules([in] ::com::sun::star::lang::Locale aLocale, [in] short nType);
8606 string transliterate([in] string aInStr, [in] long nStartPos, [in] long nCount, [out] sequence< long > rOffset);
8607 /** @deprecated */ string folding([in] string aInStr, [in] long nStartPos, [in] long nCount, [out] sequence< long > rOffset);
8608 boolean equals([in] string aStr1, [in] long nPos1, [in] long nCount1, [out] long rMatch1, [in] string aStr2, [in] long nPos2, [in] long nCount2, [out] long rMatch2);
8609 sequence< string > transliterateRange([in] string aStr1, [in] string aStr2);
8610 long compareSubstring([in] string aStr1, [in] long nOff1, [in] long nLen1, [in] string aStr2, [in] long nOff2, [in] long nLen2);
8611 long compareString([in] string aStr1, [in] string aStr2);
8613 published interface XExtendedTransliteration {
8614 interface ::com::sun::star::i18n::XTransliteration;
8615 string transliterateString2String([in] string aStr, [in] long nStartPos, [in] long nCount);
8616 string transliterateChar2String([in] char cChar);
8617 char transliterateChar2Char([in] char cChar) raises (::com::sun::star::i18n::MultipleCharsOutputException);
8619 published service Transliteration: ::com::sun::star::i18n::XExtendedTransliteration;
8620 published constants TransliterationType {
8621 const short CASCADE = 8;
8622 const short IGNORE = 4;
8623 const short NONE = 0;
8624 const short NUMERIC = 2;
8625 const short ONE_TO_ONE = 1;
8626 const short ONE_TO_ONE_NUMERIC = 3;
8628 published enum UnicodeScript {
8629 kBasicLatin = 0,
8630 kLatin1Supplement = 1,
8631 kLatinExtendedA = 2,
8632 kLatinExtendedB = 3,
8633 kIPAExtension = 4,
8634 kSpacingModifier = 5,
8635 kCombiningDiacritical = 6,
8636 kGreek = 7,
8637 kCyrillic = 8,
8638 kArmenian = 9,
8639 kHebrew = 10,
8640 kArabic = 11,
8641 kSyriac = 12,
8642 kThaana = 13,
8643 kDevanagari = 14,
8644 kBengali = 15,
8645 kGurmukhi = 16,
8646 kGujarati = 17,
8647 kOriya = 18,
8648 kTamil = 19,
8649 kTelugu = 20,
8650 kKannada = 21,
8651 kMalayalam = 22,
8652 kSinhala = 23,
8653 kThai = 24,
8654 kLao = 25,
8655 kTibetan = 26,
8656 kMyanmar = 27,
8657 kGeorgian = 28,
8658 kHangulJamo = 29,
8659 kEthiopic = 30,
8660 kCherokee = 31,
8661 kUnifiedCanadianAboriginalSyllabics = 32,
8662 kOgham = 33,
8663 kRunic = 34,
8664 kKhmer = 35,
8665 kMongolian = 36,
8666 kLatinExtendedAdditional = 37,
8667 kGreekExtended = 38,
8668 kGeneralPunctuation = 39,
8669 kSuperSubScript = 40,
8670 kCurrencySymbolScript = 41,
8671 kSymbolCombiningMark = 42,
8672 kLetterlikeSymbol = 43,
8673 kNumberForm = 44,
8674 kArrow = 45,
8675 kMathOperator = 46,
8676 kMiscTechnical = 47,
8677 kControlPicture = 48,
8678 kOpticalCharacter = 49,
8679 kEnclosedAlphanumeric = 50,
8680 kBoxDrawing = 51,
8681 kBlockElement = 52,
8682 kGeometricShape = 53,
8683 kMiscSymbol = 54,
8684 kDingbat = 55,
8685 kBraillePatterns = 56,
8686 kCJKRadicalsSupplement = 57,
8687 kKangxiRadicals = 58,
8688 kIdeographicDescriptionCharacters = 59,
8689 kCJKSymbolPunctuation = 60,
8690 kHiragana = 61,
8691 kKatakana = 62,
8692 kBopomofo = 63,
8693 kHangulCompatibilityJamo = 64,
8694 kKanbun = 65,
8695 kBopomofoExtended = 66,
8696 kEnclosedCJKLetterMonth = 67,
8697 kCJKCompatibility = 68,
8698 k_CJKUnifiedIdeographsExtensionA = 69,
8699 kCJKUnifiedIdeograph = 70,
8700 kYiSyllables = 71,
8701 kYiRadicals = 72,
8702 kHangulSyllable = 73,
8703 kHighSurrogate = 74,
8704 kHighPrivateUseSurrogate = 75,
8705 kLowSurrogate = 76,
8706 kPrivateUse = 77,
8707 kCJKCompatibilityIdeograph = 78,
8708 kAlphabeticPresentation = 79,
8709 kArabicPresentationA = 80,
8710 kCombiningHalfMark = 81,
8711 kCJKCompatibilityForm = 82,
8712 kSmallFormVariant = 83,
8713 kArabicPresentationB = 84,
8714 kNoScript = 85,
8715 kHalfwidthFullwidthForm = 86,
8716 kScriptCount = 87
8718 published constants UnicodeType {
8719 const short COMBINING_SPACING_MARK = 8;
8720 const short CONNECTOR_PUNCTUATION = 22;
8721 const short CONTROL = 15;
8722 const short CURRENCY_SYMBOL = 25;
8723 const short DASH_PUNCTUATION = 19;
8724 const short DECIMAL_DIGIT_NUMBER = 9;
8725 const short ENCLOSING_MARK = 7;
8726 const short END_PUNCTUATION = 29;
8727 const short FINAL_PUNCTUATION = 21;
8728 const short FORMAT = 16;
8729 const short GENERAL_TYPES_COUNT = 30;
8730 const short INITIAL_PUNCTUATION = 20;
8731 const short LETTER_NUMBER = 10;
8732 const short LINE_SEPARATOR = 13;
8733 const short LOWERCASE_LETTER = 2;
8734 const short MATH_SYMBOL = 24;
8735 const short MODIFIER_LETTER = 4;
8736 const short MODIFIER_SYMBOL = 26;
8737 const short NON_SPACING_MARK = 6;
8738 const short OTHER_LETTER = 5;
8739 const short OTHER_NUMBER = 11;
8740 const short OTHER_PUNCTUATION = 23;
8741 const short OTHER_SYMBOL = 27;
8742 const short PARAGRAPH_SEPARATOR = 14;
8743 const short PRIVATE_USE = 17;
8744 const short SPACE_SEPARATOR = 12;
8745 const short START_PUNCTUATION = 28;
8746 const short SURROGATE = 18;
8747 const short TITLECASE_LETTER = 3;
8748 const short UNASSIGNED = 0;
8749 const short UPPERCASE_LETTER = 1;
8751 published constants Weekdays {
8752 const short FRIDAY = 5;
8753 const short MONDAY = 1;
8754 const short SATURDAY = 6;
8755 const short SUNDAY = 0;
8756 const short THURSDAY = 4;
8757 const short TUESDAY = 2;
8758 const short WEDNESDAY = 3;
8760 published constants WordType {
8761 const short ANYWORD_IGNOREWHITESPACES = 1;
8762 const short ANY_WORD = 0;
8763 const short DICTIONARY_WORD = 2;
8764 const short WORD_COUNT = 3;
8766 published interface XForbiddenCharacters {
8767 interface ::com::sun::star::uno::XInterface;
8768 ::com::sun::star::i18n::ForbiddenCharacters getForbiddenCharacters([in] ::com::sun::star::lang::Locale aLocale) raises (::com::sun::star::container::NoSuchElementException);
8769 boolean hasForbiddenCharacters([in] ::com::sun::star::lang::Locale aLocale);
8770 void setForbiddenCharacters([in] ::com::sun::star::lang::Locale aLocale, [in] ::com::sun::star::i18n::ForbiddenCharacters aForbiddenCharacters);
8771 void removeForbiddenCharacters([in] ::com::sun::star::lang::Locale aLocale);
8773 published interface XScriptTypeDetector {
8774 interface ::com::sun::star::uno::XInterface;
8775 long beginOfScriptDirection([in] string aText, [in] long nPos, [in] short nScriptDirection);
8776 long endOfScriptDirection([in] string aText, [in] long nPos, [in] short nScriptDirection);
8777 short getScriptDirection([in] string aText, [in] long nPos, [in] short nDefaultScriptDirection);
8778 long beginOfCTLScriptType([in] string aText, [in] long nPos);
8779 long endOfCTLScriptType([in] string aText, [in] long nPos);
8780 short getCTLScriptType([in] string aText, [in] long nPos);
8782 published constants reservedWords {
8783 const short ABOVE_WORD = 6;
8784 const short BELOW_WORD = 7;
8785 const short COUNT = 12;
8786 const short FALSE_WORD = 1;
8787 const short QUARTER1_ABBREVIATION = 8;
8788 const short QUARTER1_WORD = 2;
8789 const short QUARTER2_ABBREVIATION = 9;
8790 const short QUARTER2_WORD = 3;
8791 const short QUARTER3_ABBREVIATION = 10;
8792 const short QUARTER3_WORD = 4;
8793 const short QUARTER4_ABBREVIATION = 11;
8794 const short QUARTER4_WORD = 5;
8795 const short TRUE_WORD = 0;
8798 module image {
8799 published service ImageMap {
8800 interface ::com::sun::star::container::XNamed;
8801 interface ::com::sun::star::container::XIndexContainer;
8803 published service ImageMapObject {
8804 interface ::com::sun::star::beans::XPropertySet;
8805 interface ::com::sun::star::document::XEventsSupplier;
8806 [property] string URL;
8807 [property] string Description;
8808 [property] string Target;
8809 [property] string Name;
8810 [property] boolean IsActive;
8812 published service ImageMapCircleObject {
8813 service ::com::sun::star::image::ImageMapObject;
8814 [property] ::com::sun::star::awt::Point Center;
8815 [property] long Radius;
8817 published service ImageMapPolygonObject {
8818 service ::com::sun::star::image::ImageMapObject;
8819 [property] ::com::sun::star::drawing::PointSequence Polygon;
8821 published service ImageMapRectangleObject {
8822 service ::com::sun::star::image::ImageMapObject;
8823 [property] ::com::sun::star::awt::Rectangle Boundary;
8826 module ldap {
8827 published exception LdapConnectionException: ::com::sun::star::uno::Exception {
8829 published exception LdapGenericException: ::com::sun::star::uno::Exception {
8830 long ErrorCode;
8833 module linguistic2 {
8834 published enum ConversionDirection {
8835 FROM_LEFT = 0,
8836 FROM_RIGHT = 1
8838 published interface XConversionDictionary {
8839 interface ::com::sun::star::uno::XInterface;
8840 string getName();
8841 ::com::sun::star::lang::Locale getLocale();
8842 short getConversionType();
8843 void setActive([in] boolean bActivate);
8844 boolean isActive();
8845 void clear();
8846 sequence< string > getConversions([in] string aText, [in] long nStartPos, [in] long nLength, [in] ::com::sun::star::linguistic2::ConversionDirection eDirection, [in] long nTextConversionOptions) raises (::com::sun::star::lang::IllegalArgumentException);
8847 void addEntry([in] string aLeftText, [in] string aRightText) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::ElementExistException);
8848 void removeEntry([in] string aLeftText, [in] string aRightText) raises (::com::sun::star::container::NoSuchElementException);
8849 short getMaxCharCount([in] ::com::sun::star::linguistic2::ConversionDirection eDirection);
8850 sequence< string > getConversionEntries([in] ::com::sun::star::linguistic2::ConversionDirection eDirection);
8852 published interface XConversionPropertyType {
8853 interface ::com::sun::star::uno::XInterface;
8854 void setPropertyType([in] string aLeftText, [in] string aRightText, [in] short nPropertyType) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::IllegalArgumentException);
8855 short getPropertyType([in] string aLeftText, [in] string aRightText) raises (::com::sun::star::container::NoSuchElementException);
8857 published service ConversionDictionary {
8858 interface ::com::sun::star::linguistic2::XConversionDictionary;
8859 [optional] interface ::com::sun::star::util::XFlushable;
8860 [optional] interface ::com::sun::star::linguistic2::XConversionPropertyType;
8862 published interface XConversionDictionaryList {
8863 interface ::com::sun::star::uno::XInterface;
8864 ::com::sun::star::container::XNameContainer getDictionaryContainer();
8865 ::com::sun::star::linguistic2::XConversionDictionary addNewDictionary([in] string aName, [in] ::com::sun::star::lang::Locale aLocale, [in] short nConversionDictionaryType) raises (::com::sun::star::lang::NoSupportException, ::com::sun::star::container::ElementExistException);
8866 sequence< string > queryConversions([in] string aText, [in] long nStartPos, [in] long nLength, [in] ::com::sun::star::lang::Locale aLocale, [in] short nConversionDictionaryType, [in] ::com::sun::star::linguistic2::ConversionDirection eDirection, [in] long nTextConversionOptions) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::NoSupportException);
8867 short queryMaxCharCount([in] ::com::sun::star::lang::Locale aLocale, [in] short nConversionDictionaryType, [in] ::com::sun::star::linguistic2::ConversionDirection eDirection);
8869 published service ConversionDictionaryList: ::com::sun::star::linguistic2::XConversionDictionaryList;
8870 published enum DictionaryType {
8871 POSITIVE = 0,
8872 NEGATIVE = 1,
8873 /** @deprecated */ MIXED = 2
8875 published interface XDictionaryEntry;
8876 published interface XDictionaryEventListener;
8877 published interface XDictionary {
8878 interface ::com::sun::star::container::XNamed;
8879 ::com::sun::star::linguistic2::DictionaryType getDictionaryType();
8880 void setActive([in] boolean bActivate);
8881 boolean isActive();
8882 long getCount();
8883 ::com::sun::star::lang::Locale getLocale();
8884 void setLocale([in] ::com::sun::star::lang::Locale aLocale);
8885 ::com::sun::star::linguistic2::XDictionaryEntry getEntry([in] string aWord);
8886 boolean addEntry([in] ::com::sun::star::linguistic2::XDictionaryEntry xDicEntry);
8887 boolean add([in] string aWord, [in] boolean bIsNegative, [in] string aRplcText);
8888 boolean remove([in] string aWord);
8889 boolean isFull();
8890 /** @deprecated */ sequence< ::com::sun::star::linguistic2::XDictionaryEntry > getEntries();
8891 void clear();
8892 boolean addDictionaryEventListener([in] ::com::sun::star::linguistic2::XDictionaryEventListener xListener);
8893 boolean removeDictionaryEventListener([in] ::com::sun::star::linguistic2::XDictionaryEventListener xListener);
8895 published interface XDictionaryEntry;
8896 published struct DictionaryEvent: ::com::sun::star::lang::EventObject {
8897 short nEvent;
8898 ::com::sun::star::linguistic2::XDictionaryEntry xDictionaryEntry;
8900 published constants DictionaryEventFlags {
8901 const short ACTIVATE_DIC = 32;
8902 const short ADD_ENTRY = 1;
8903 const short CHG_LANGUAGE = 8;
8904 const short CHG_NAME = 4;
8905 const short DEACTIVATE_DIC = 64;
8906 const short DEL_ENTRY = 2;
8907 const short ENTRIES_CLEARED = 16;
8909 published interface XDictionaryListEventListener;
8910 published interface XDictionaryList {
8911 interface ::com::sun::star::uno::XInterface;
8912 short getCount();
8913 sequence< ::com::sun::star::linguistic2::XDictionary > getDictionaries();
8914 ::com::sun::star::linguistic2::XDictionary getDictionaryByName([in] string aDictionaryName);
8915 boolean addDictionary([in] ::com::sun::star::linguistic2::XDictionary xDictionary);
8916 boolean removeDictionary([in] ::com::sun::star::linguistic2::XDictionary xDictionary);
8917 boolean addDictionaryListEventListener([in] ::com::sun::star::linguistic2::XDictionaryListEventListener xListener, [in] boolean bReceiveVerbose);
8918 boolean removeDictionaryListEventListener([in] ::com::sun::star::linguistic2::XDictionaryListEventListener xListener);
8919 short beginCollectEvents();
8920 short endCollectEvents();
8921 short flushEvents();
8922 ::com::sun::star::linguistic2::XDictionary createDictionary([in] string aName, [in] ::com::sun::star::lang::Locale aLocale, [in] ::com::sun::star::linguistic2::DictionaryType eDicType, [in] string aURL);
8924 published interface XDictionaryEntry;
8925 published interface XSearchableDictionaryList {
8926 interface ::com::sun::star::linguistic2::XDictionaryList;
8927 ::com::sun::star::linguistic2::XDictionaryEntry queryDictionaryEntry([in] string aWord, [in] ::com::sun::star::lang::Locale aLocale, [in] boolean bSearchPosDics, [in] boolean bSpellEntry);
8929 published service DictionaryList: ::com::sun::star::linguistic2::XSearchableDictionaryList;
8930 published struct DictionaryListEvent: ::com::sun::star::lang::EventObject {
8931 short nCondensedEvent;
8932 sequence< ::com::sun::star::linguistic2::DictionaryEvent > aDictionaryEvents;
8934 published constants DictionaryListEventFlags {
8935 const short ACTIVATE_NEG_DIC = 64;
8936 const short ACTIVATE_POS_DIC = 16;
8937 const short ADD_NEG_ENTRY = 4;
8938 const short ADD_POS_ENTRY = 1;
8939 const short DEACTIVATE_NEG_DIC = 128;
8940 const short DEACTIVATE_POS_DIC = 32;
8941 const short DEL_NEG_ENTRY = 8;
8942 const short DEL_POS_ENTRY = 2;
8944 published service HangulHanjaConversionDictionary {
8945 service ::com::sun::star::linguistic2::ConversionDictionary;
8947 published interface XSupportedLocales {
8948 interface ::com::sun::star::uno::XInterface;
8949 sequence< ::com::sun::star::lang::Locale > getLocales();
8950 boolean hasLocale([in] ::com::sun::star::lang::Locale aLocale);
8952 published interface XHyphenatedWord;
8953 published interface XPossibleHyphens;
8954 published interface XHyphenator {
8955 interface ::com::sun::star::linguistic2::XSupportedLocales;
8956 ::com::sun::star::linguistic2::XHyphenatedWord hyphenate([in] string aWord, [in] ::com::sun::star::lang::Locale aLocale, [in] short nMaxLeading, [in] ::com::sun::star::beans::PropertyValues aProperties) raises (::com::sun::star::lang::IllegalArgumentException);
8957 ::com::sun::star::linguistic2::XHyphenatedWord queryAlternativeSpelling([in] string aWord, [in] ::com::sun::star::lang::Locale aLocale, [in] short nIndex, [in] ::com::sun::star::beans::PropertyValues aProperties) raises (::com::sun::star::lang::IllegalArgumentException);
8958 ::com::sun::star::linguistic2::XPossibleHyphens createPossibleHyphens([in] string aWord, [in] ::com::sun::star::lang::Locale aLocale, [in] ::com::sun::star::beans::PropertyValues aProperties) raises (::com::sun::star::lang::IllegalArgumentException);
8960 published interface XLinguServiceEventListener;
8961 published interface XLinguServiceEventBroadcaster {
8962 interface ::com::sun::star::uno::XInterface;
8963 boolean addLinguServiceEventListener([in] ::com::sun::star::linguistic2::XLinguServiceEventListener xLstnr);
8964 boolean removeLinguServiceEventListener([in] ::com::sun::star::linguistic2::XLinguServiceEventListener xLstnr);
8966 published service Hyphenator {
8967 interface ::com::sun::star::linguistic2::XHyphenator;
8968 interface ::com::sun::star::linguistic2::XLinguServiceEventBroadcaster;
8969 interface ::com::sun::star::lang::XInitialization;
8970 interface ::com::sun::star::lang::XComponent;
8971 interface ::com::sun::star::lang::XServiceDisplayName;
8973 published interface XLinguProperties {
8974 interface ::com::sun::star::beans::XPropertySet;
8975 [attribute] boolean IsUseDictionaryList;
8976 [attribute] boolean IsIgnoreControlCharacters;
8977 [attribute] boolean IsSpellUpperCase;
8978 [attribute] boolean IsSpellWithDigits;
8979 /** @deprecated */ [attribute] boolean IsSpellCapitalization;
8980 [attribute] short HyphMinLeading;
8981 [attribute] short HyphMinTrailing;
8982 [attribute] short HyphMinWordLength;
8983 [attribute] ::com::sun::star::lang::Locale DefaultLocale;
8984 [attribute] boolean IsHyphAuto;
8985 [attribute] boolean IsHyphSpecial;
8986 [attribute] boolean IsSpellAuto;
8987 [attribute] boolean IsSpellSpecial;
8988 [attribute] boolean IsWrapReverse;
8989 [attribute] ::com::sun::star::lang::Locale DefaultLocale_CJK;
8990 [attribute] ::com::sun::star::lang::Locale DefaultLocale_CTL;
8992 published service LinguProperties: ::com::sun::star::linguistic2::XLinguProperties;
8993 published struct LinguServiceEvent: ::com::sun::star::lang::EventObject {
8994 short nEvent;
8996 published constants LinguServiceEventFlags {
8997 const short HYPHENATE_AGAIN = 4;
8998 const short PROOFREAD_AGAIN = 8;
8999 const short SPELL_CORRECT_WORDS_AGAIN = 1;
9000 const short SPELL_WRONG_WORDS_AGAIN = 2;
9002 published interface XAvailableLocales {
9003 interface ::com::sun::star::uno::XInterface;
9004 sequence< ::com::sun::star::lang::Locale > getAvailableLocales([in] string aServiceName);
9006 published interface XSpellChecker;
9007 published interface XThesaurus;
9008 published interface XLinguServiceManager {
9009 interface ::com::sun::star::uno::XInterface;
9010 ::com::sun::star::linguistic2::XSpellChecker getSpellChecker();
9011 ::com::sun::star::linguistic2::XHyphenator getHyphenator();
9012 ::com::sun::star::linguistic2::XThesaurus getThesaurus();
9013 boolean addLinguServiceManagerListener([in] ::com::sun::star::lang::XEventListener xListener);
9014 boolean removeLinguServiceManagerListener([in] ::com::sun::star::lang::XEventListener xListener);
9015 sequence< string > getAvailableServices([in] string aServiceName, [in] ::com::sun::star::lang::Locale aLocale);
9016 void setConfiguredServices([in] string aServiceName, [in] ::com::sun::star::lang::Locale aLocale, [in] sequence< string > aServiceImplNames);
9017 sequence< string > getConfiguredServices([in] string aServiceName, [in] ::com::sun::star::lang::Locale aLocale);
9019 published interface XLinguServiceManager2 {
9020 interface ::com::sun::star::linguistic2::XLinguServiceManager;
9021 interface ::com::sun::star::linguistic2::XAvailableLocales;
9022 interface ::com::sun::star::lang::XComponent;
9024 published service LinguServiceManager: ::com::sun::star::linguistic2::XLinguServiceManager2;
9025 published interface XSpellAlternatives;
9026 published interface XSpellChecker {
9027 interface ::com::sun::star::linguistic2::XSupportedLocales;
9028 boolean isValid([in] string aWord, [in] ::com::sun::star::lang::Locale aLocale, [in] ::com::sun::star::beans::PropertyValues aProperties) raises (::com::sun::star::lang::IllegalArgumentException);
9029 ::com::sun::star::linguistic2::XSpellAlternatives spell([in] string aWord, [in] ::com::sun::star::lang::Locale aLocale, [in] ::com::sun::star::beans::PropertyValues aProperties) raises (::com::sun::star::lang::IllegalArgumentException);
9031 published service SpellChecker {
9032 interface ::com::sun::star::linguistic2::XSpellChecker;
9033 interface ::com::sun::star::linguistic2::XLinguServiceEventBroadcaster;
9034 interface ::com::sun::star::lang::XInitialization;
9035 interface ::com::sun::star::lang::XComponent;
9036 interface ::com::sun::star::lang::XServiceDisplayName;
9038 published constants SpellFailure {
9039 const short CAPTION_ERROR = 3;
9040 const short IS_NEGATIVE_WORD = 2;
9041 const short SPELLING_ERROR = 4;
9043 published interface XMeaning;
9044 published interface XThesaurus {
9045 interface ::com::sun::star::linguistic2::XSupportedLocales;
9046 sequence< ::com::sun::star::linguistic2::XMeaning > queryMeanings([in] string aTerm, [in] ::com::sun::star::lang::Locale aLocale, [in] ::com::sun::star::beans::PropertyValues aProperties) raises (::com::sun::star::lang::IllegalArgumentException);
9048 published service Thesaurus {
9049 interface ::com::sun::star::linguistic2::XThesaurus;
9050 interface ::com::sun::star::lang::XInitialization;
9051 interface ::com::sun::star::lang::XComponent;
9052 interface ::com::sun::star::lang::XServiceDisplayName;
9054 published interface XDictionaryEntry;
9055 published interface XDictionaryEventListener;
9056 /** @deprecated */ published interface XDictionary1 {
9057 interface ::com::sun::star::container::XNamed;
9058 ::com::sun::star::linguistic2::DictionaryType getDictionaryType();
9059 void setActive([in] boolean bActivate);
9060 boolean isActive();
9061 short getCount();
9062 short getLanguage();
9063 void setLanguage([in] short nLang);
9064 ::com::sun::star::linguistic2::XDictionaryEntry getEntry([in] string aWord);
9065 boolean addEntry([in] ::com::sun::star::linguistic2::XDictionaryEntry xDicEntry);
9066 boolean add([in] string aWord, [in] boolean bIsNegative, [in] string aRplcText);
9067 boolean remove([in] string aWord);
9068 boolean isFull();
9069 sequence< ::com::sun::star::linguistic2::XDictionaryEntry > getEntries();
9070 void clear();
9071 boolean addDictionaryEventListener([in] ::com::sun::star::linguistic2::XDictionaryEventListener xListener);
9072 boolean removeDictionaryEventListener([in] ::com::sun::star::linguistic2::XDictionaryEventListener xListener);
9074 published interface XDictionaryEntry {
9075 interface ::com::sun::star::uno::XInterface;
9076 string getDictionaryWord();
9077 boolean isNegative();
9078 string getReplacementText();
9080 published interface XDictionaryEventListener {
9081 interface ::com::sun::star::lang::XEventListener;
9082 void processDictionaryEvent([in] ::com::sun::star::linguistic2::DictionaryEvent aDicEvent);
9084 published interface XDictionaryListEventListener {
9085 interface ::com::sun::star::lang::XEventListener;
9086 void processDictionaryListEvent([in] ::com::sun::star::linguistic2::DictionaryListEvent aDicListEvent);
9088 published interface XHyphenatedWord {
9089 interface ::com::sun::star::uno::XInterface;
9090 string getWord();
9091 ::com::sun::star::lang::Locale getLocale();
9092 short getHyphenationPos();
9093 string getHyphenatedWord();
9094 short getHyphenPos();
9095 boolean isAlternativeSpelling();
9097 published interface XLinguServiceEventListener {
9098 interface ::com::sun::star::lang::XEventListener;
9099 void processLinguServiceEvent([in] ::com::sun::star::linguistic2::LinguServiceEvent aLngSvcEvent);
9101 published interface XMeaning {
9102 interface ::com::sun::star::uno::XInterface;
9103 string getMeaning();
9104 sequence< string > querySynonyms();
9106 published interface XPossibleHyphens {
9107 interface ::com::sun::star::uno::XInterface;
9108 string getWord();
9109 ::com::sun::star::lang::Locale getLocale();
9110 string getPossibleHyphens();
9111 sequence< short > getHyphenationPositions();
9113 published interface XSpellAlternatives {
9114 interface ::com::sun::star::uno::XInterface;
9115 string getWord();
9116 ::com::sun::star::lang::Locale getLocale();
9117 short getFailureType();
9118 short getAlternativesCount();
9119 sequence< string > getAlternatives();
9121 /** @deprecated */ published interface XSupportedLanguages {
9122 interface ::com::sun::star::uno::XInterface;
9123 sequence< short > getLanguages();
9124 boolean hasLanguage([in] short nLanguage);
9126 /** @deprecated */ published interface XSpellChecker1 {
9127 interface ::com::sun::star::linguistic2::XSupportedLanguages;
9128 boolean isValid([in] string aWord, [in] short nLanguage, [in] ::com::sun::star::beans::PropertyValues aProperties) raises (::com::sun::star::lang::IllegalArgumentException);
9129 ::com::sun::star::linguistic2::XSpellAlternatives spell([in] string aWord, [in] short nLanguage, [in] ::com::sun::star::beans::PropertyValues aProperties) raises (::com::sun::star::lang::IllegalArgumentException);
9132 module mozilla {
9133 published struct MenuMultipleChange {
9134 short ID;
9135 short GroupID;
9136 short PreItemID;
9137 string ItemText;
9138 boolean IsVisible;
9139 boolean IsActive;
9140 boolean IsCheckable;
9141 boolean IsChecked;
9142 sequence< byte > Image;
9144 published interface XMenuProxyListener;
9145 published interface XMenuProxy {
9146 interface ::com::sun::star::lang::XComponent;
9147 void executeMenuItem([in] short ID);
9148 void addMenuProxyListener([in] ::com::sun::star::mozilla::XMenuProxyListener xListener);
9149 void removeMenuProxyListener([in] ::com::sun::star::mozilla::XMenuProxyListener xListener);
9151 published service MenuProxy {
9152 interface ::com::sun::star::mozilla::XMenuProxy;
9154 published struct MenuSingleChange {
9155 short ID;
9156 short ChangeID;
9157 any Change;
9159 published interface XMenuProxyListener {
9160 interface ::com::sun::star::uno::XInterface;
9161 void menuChangedMultiple([in] sequence< ::com::sun::star::mozilla::MenuMultipleChange > MenuMultipleChanges);
9162 void menuChangedSingle([in] sequence< ::com::sun::star::mozilla::MenuSingleChange > MenuSingleChanges);
9163 void menuItemDeleted([in] short ID);
9165 published service MenuProxyListener {
9166 interface ::com::sun::star::mozilla::XMenuProxyListener;
9168 published enum MozillaProductType {
9169 Default = 0,
9170 Mozilla = 1,
9171 Firefox = 2,
9172 Thunderbird = 3
9174 published interface XProfileDiscover {
9175 interface ::com::sun::star::uno::XInterface;
9176 long getProfileCount([in] ::com::sun::star::mozilla::MozillaProductType product);
9177 long getProfileList([in] ::com::sun::star::mozilla::MozillaProductType product, [out] sequence< string > list);
9178 string getDefaultProfile([in] ::com::sun::star::mozilla::MozillaProductType product);
9179 string getProfilePath([in] ::com::sun::star::mozilla::MozillaProductType product, [in] string profileName);
9180 boolean isProfileLocked([in] ::com::sun::star::mozilla::MozillaProductType product, [in] string profileName);
9181 boolean getProfileExists([in] ::com::sun::star::mozilla::MozillaProductType product, [in] string profileName);
9183 published interface XProfileManager {
9184 interface ::com::sun::star::uno::XInterface;
9185 long bootupProfile([in] ::com::sun::star::mozilla::MozillaProductType product, [in] string profileName);
9186 long shutdownProfile();
9187 ::com::sun::star::mozilla::MozillaProductType getCurrentProduct();
9188 string getCurrentProfile();
9189 boolean isCurrentProfileLocked();
9190 string setCurrentProfile([in] ::com::sun::star::mozilla::MozillaProductType product, [in] string profileName);
9192 published interface XCodeProxy;
9193 published interface XProxyRunner {
9194 interface ::com::sun::star::uno::XInterface;
9195 long Run([in] ::com::sun::star::mozilla::XCodeProxy aCode);
9197 published interface XMozillaBootstrap {
9198 interface ::com::sun::star::mozilla::XProfileDiscover;
9199 interface ::com::sun::star::mozilla::XProfileManager;
9200 interface ::com::sun::star::mozilla::XProxyRunner;
9202 published service MozillaBootstrap: ::com::sun::star::mozilla::XMozillaBootstrap;
9203 published interface XCloseSessionListener {
9204 interface ::com::sun::star::uno::XInterface;
9205 void sessionClosed([in] any sessionData);
9207 published interface XCodeProxy {
9208 interface ::com::sun::star::uno::XInterface;
9209 long run();
9210 ::com::sun::star::mozilla::MozillaProductType getProductType();
9211 string getProfileName();
9214 module packages {
9215 published service Package {
9216 interface ::com::sun::star::lang::XInitialization;
9217 interface ::com::sun::star::container::XHierarchicalNameAccess;
9218 interface ::com::sun::star::lang::XSingleServiceFactory;
9219 interface ::com::sun::star::util::XChangesBatch;
9221 published service PackageFolder {
9222 interface ::com::sun::star::container::XNamed;
9223 interface ::com::sun::star::container::XChild;
9224 interface ::com::sun::star::container::XNameContainer;
9225 interface ::com::sun::star::container::XEnumerationAccess;
9226 interface ::com::sun::star::beans::XPropertySet;
9228 published service PackageFolderEnumeration {
9229 interface ::com::sun::star::container::XEnumeration;
9231 published service PackageStream {
9232 interface ::com::sun::star::container::XNamed;
9233 interface ::com::sun::star::container::XChild;
9234 interface ::com::sun::star::io::XActiveDataSink;
9235 interface ::com::sun::star::beans::XPropertySet;
9237 module zip {
9238 published exception ZipException: ::com::sun::star::uno::Exception {
9241 module manifest {
9242 published interface XManifestReader {
9243 interface ::com::sun::star::uno::XInterface;
9244 sequence< sequence< ::com::sun::star::beans::PropertyValue > > readManifestSequence([in] ::com::sun::star::io::XInputStream rStream);
9246 published service ManifestReader: ::com::sun::star::packages::manifest::XManifestReader;
9247 published interface XManifestWriter {
9248 interface ::com::sun::star::uno::XInterface;
9249 void writeManifestSequence([in] ::com::sun::star::io::XOutputStream rStream, [in] sequence< sequence< ::com::sun::star::beans::PropertyValue > > rSequence);
9251 published service ManifestWriter: ::com::sun::star::packages::manifest::XManifestWriter;
9253 module zip {
9254 published constants ZipConstants {
9255 const short BEST_COMPRESSION = 9;
9256 const short BEST_SPEED = 1;
9257 const short CENATT = 36;
9258 const short CENATX = 38;
9259 const short CENCOM = 32;
9260 const short CENCRC = 16;
9261 const short CENDAT = 14;
9262 const short CENDSK = 34;
9263 const short CENEXT = 30;
9264 const short CENFLG = 8;
9265 const short CENHDR = 46;
9266 const short CENHOW = 10;
9267 const short CENLEN = 24;
9268 const short CENNAM = 28;
9269 const short CENOFF = 42;
9270 const long CENSIG = 33639248;
9271 const short CENSIZ = 20;
9272 const short CENTIM = 12;
9273 const short CENVEM = 4;
9274 const short CENVER = 6;
9275 const short DEFAULT_COMPRESSION = -1;
9276 const short DEFAULT_STRATEGY = 0;
9277 const short DEFLATED = 8;
9278 const short DEF_MEM_LEVEL = 8;
9279 const short ENDCOM = 20;
9280 const short ENDHDR = 22;
9281 const short ENDOFF = 16;
9282 const long ENDSIG = 101010256;
9283 const short ENDSIZ = 12;
9284 const short ENDSUB = 8;
9285 const short ENDTOT = 10;
9286 const short EXTCRC = 4;
9287 const short EXTHDR = 16;
9288 const short EXTLEN = 12;
9289 const long EXTSIG = 134695760;
9290 const short EXTSIZ = 8;
9291 const short FILTERED = 1;
9292 const short HUFFMAN_ONLY = 2;
9293 const short LOCCRC = 14;
9294 const short LOCEXT = 28;
9295 const short LOCFLG = 6;
9296 const short LOCHDR = 30;
9297 const short LOCHOW = 8;
9298 const short LOCLEN = 22;
9299 const short LOCNAM = 26;
9300 const long LOCSIG = 67324752;
9301 const short LOCSIZ = 18;
9302 const short LOCTIM = 10;
9303 const short LOCVER = 4;
9304 const short NO_COMPRESSION = 0;
9305 const long SPANSIG = 134695760;
9306 const short STORED = 0;
9308 published struct ZipEntry {
9309 short nVersion;
9310 short nFlag;
9311 short nMethod;
9312 long nTime;
9313 long nCrc;
9314 long nCompressedSize;
9315 long nSize;
9316 long nOffset;
9317 short nDiskNumber;
9318 string sName;
9319 sequence< byte > extra;
9320 string sComment;
9324 module task {
9325 published enum InteractionClassification {
9326 ERROR = 0,
9327 WARNING = 1,
9328 INFO = 2,
9329 QUERY = 3
9331 published exception ClassifiedInteractionRequest: ::com::sun::star::uno::Exception {
9332 ::com::sun::star::task::InteractionClassification Classification;
9335 module ucb {
9336 published enum IOErrorCode {
9337 ABORT = 0,
9338 ACCESS_DENIED = 1,
9339 ALREADY_EXISTING = 2,
9340 BAD_CRC = 3,
9341 CANT_CREATE = 4,
9342 CANT_READ = 5,
9343 CANT_SEEK = 6,
9344 CANT_TELL = 7,
9345 CANT_WRITE = 8,
9346 CURRENT_DIRECTORY = 9,
9347 DEVICE_NOT_READY = 10,
9348 DIFFERENT_DEVICES = 11,
9349 GENERAL = 12,
9350 INVALID_ACCESS = 13,
9351 INVALID_CHARACTER = 14,
9352 INVALID_DEVICE = 15,
9353 INVALID_LENGTH = 16,
9354 INVALID_PARAMETER = 17,
9355 IS_WILDCARD = 18,
9356 LOCKING_VIOLATION = 19,
9357 MISPLACED_CHARACTER = 20,
9358 NAME_TOO_LONG = 21,
9359 NOT_EXISTING = 22,
9360 NOT_EXISTING_PATH = 23,
9361 NOT_SUPPORTED = 24,
9362 NO_DIRECTORY = 25,
9363 NO_FILE = 26,
9364 OUT_OF_DISK_SPACE = 27,
9365 OUT_OF_FILE_HANDLES = 28,
9366 OUT_OF_MEMORY = 29,
9367 PENDING = 30,
9368 RECURSIVE = 31,
9369 UNKNOWN = 32,
9370 WRITE_PROTECTED = 33,
9371 WRONG_FORMAT = 34,
9372 WRONG_VERSION = 35
9374 published exception InteractiveIOException: ::com::sun::star::task::ClassifiedInteractionRequest {
9375 ::com::sun::star::ucb::IOErrorCode Code;
9378 module packages {
9379 module zip {
9380 published exception ZipIOException: ::com::sun::star::io::IOException {
9384 module presentation {
9385 published enum AnimationEffect {
9386 NONE = 0,
9387 FADE_FROM_LEFT = 1,
9388 FADE_FROM_TOP = 2,
9389 FADE_FROM_RIGHT = 3,
9390 FADE_FROM_BOTTOM = 4,
9391 FADE_TO_CENTER = 5,
9392 FADE_FROM_CENTER = 6,
9393 MOVE_FROM_LEFT = 7,
9394 MOVE_FROM_TOP = 8,
9395 MOVE_FROM_RIGHT = 9,
9396 MOVE_FROM_BOTTOM = 10,
9397 VERTICAL_STRIPES = 11,
9398 HORIZONTAL_STRIPES = 12,
9399 CLOCKWISE = 13,
9400 COUNTERCLOCKWISE = 14,
9401 FADE_FROM_UPPERLEFT = 15,
9402 FADE_FROM_UPPERRIGHT = 16,
9403 FADE_FROM_LOWERLEFT = 17,
9404 FADE_FROM_LOWERRIGHT = 18,
9405 CLOSE_VERTICAL = 19,
9406 CLOSE_HORIZONTAL = 20,
9407 OPEN_VERTICAL = 21,
9408 OPEN_HORIZONTAL = 22,
9409 PATH = 23,
9410 MOVE_TO_LEFT = 24,
9411 MOVE_TO_TOP = 25,
9412 MOVE_TO_RIGHT = 26,
9413 MOVE_TO_BOTTOM = 27,
9414 SPIRALIN_LEFT = 28,
9415 SPIRALIN_RIGHT = 29,
9416 SPIRALOUT_LEFT = 30,
9417 SPIRALOUT_RIGHT = 31,
9418 DISSOLVE = 32,
9419 WAVYLINE_FROM_LEFT = 33,
9420 WAVYLINE_FROM_TOP = 34,
9421 WAVYLINE_FROM_RIGHT = 35,
9422 WAVYLINE_FROM_BOTTOM = 36,
9423 RANDOM = 37,
9424 VERTICAL_LINES = 38,
9425 HORIZONTAL_LINES = 39,
9426 LASER_FROM_LEFT = 40,
9427 LASER_FROM_TOP = 41,
9428 LASER_FROM_RIGHT = 42,
9429 LASER_FROM_BOTTOM = 43,
9430 LASER_FROM_UPPERLEFT = 44,
9431 LASER_FROM_UPPERRIGHT = 45,
9432 LASER_FROM_LOWERLEFT = 46,
9433 LASER_FROM_LOWERRIGHT = 47,
9434 APPEAR = 48,
9435 HIDE = 49,
9436 MOVE_FROM_UPPERLEFT = 50,
9437 MOVE_FROM_UPPERRIGHT = 51,
9438 MOVE_FROM_LOWERRIGHT = 52,
9439 MOVE_FROM_LOWERLEFT = 53,
9440 MOVE_TO_UPPERLEFT = 54,
9441 MOVE_TO_UPPERRIGHT = 55,
9442 MOVE_TO_LOWERRIGHT = 56,
9443 MOVE_TO_LOWERLEFT = 57,
9444 MOVE_SHORT_FROM_LEFT = 58,
9445 MOVE_SHORT_FROM_UPPERLEFT = 59,
9446 MOVE_SHORT_FROM_TOP = 60,
9447 MOVE_SHORT_FROM_UPPERRIGHT = 61,
9448 MOVE_SHORT_FROM_RIGHT = 62,
9449 MOVE_SHORT_FROM_LOWERRIGHT = 63,
9450 MOVE_SHORT_FROM_BOTTOM = 64,
9451 MOVE_SHORT_FROM_LOWERLEFT = 65,
9452 MOVE_SHORT_TO_LEFT = 66,
9453 MOVE_SHORT_TO_UPPERLEFT = 67,
9454 MOVE_SHORT_TO_TOP = 68,
9455 MOVE_SHORT_TO_UPPERRIGHT = 69,
9456 MOVE_SHORT_TO_RIGHT = 70,
9457 MOVE_SHORT_TO_LOWERRIGHT = 71,
9458 MOVE_SHORT_TO_BOTTOM = 72,
9459 MOVE_SHORT_TO_LOWERLEFT = 73,
9460 VERTICAL_CHECKERBOARD = 74,
9461 HORIZONTAL_CHECKERBOARD = 75,
9462 HORIZONTAL_ROTATE = 76,
9463 VERTICAL_ROTATE = 77,
9464 HORIZONTAL_STRETCH = 78,
9465 VERTICAL_STRETCH = 79,
9466 STRETCH_FROM_LEFT = 80,
9467 STRETCH_FROM_UPPERLEFT = 81,
9468 STRETCH_FROM_TOP = 82,
9469 STRETCH_FROM_UPPERRIGHT = 83,
9470 STRETCH_FROM_RIGHT = 84,
9471 STRETCH_FROM_LOWERRIGHT = 85,
9472 STRETCH_FROM_BOTTOM = 86,
9473 STRETCH_FROM_LOWERLEFT = 87,
9474 ZOOM_IN = 88,
9475 ZOOM_IN_SMALL = 89,
9476 ZOOM_IN_SPIRAL = 90,
9477 ZOOM_OUT = 91,
9478 ZOOM_OUT_SMALL = 92,
9479 ZOOM_OUT_SPIRAL = 93,
9480 ZOOM_IN_FROM_LEFT = 94,
9481 ZOOM_IN_FROM_UPPERLEFT = 95,
9482 ZOOM_IN_FROM_TOP = 96,
9483 ZOOM_IN_FROM_UPPERRIGHT = 97,
9484 ZOOM_IN_FROM_RIGHT = 98,
9485 ZOOM_IN_FROM_LOWERRIGHT = 99,
9486 ZOOM_IN_FROM_BOTTOM = 100,
9487 ZOOM_IN_FROM_LOWERLEFT = 101,
9488 ZOOM_IN_FROM_CENTER = 102,
9489 ZOOM_OUT_FROM_LEFT = 103,
9490 ZOOM_OUT_FROM_UPPERLEFT = 104,
9491 ZOOM_OUT_FROM_TOP = 105,
9492 ZOOM_OUT_FROM_UPPERRIGHT = 106,
9493 ZOOM_OUT_FROM_RIGHT = 107,
9494 ZOOM_OUT_FROM_LOWERRIGHT = 108,
9495 ZOOM_OUT_FROM_BOTTOM = 109,
9496 ZOOM_OUT_FROM_LOWERLEFT = 110,
9497 ZOOM_OUT_FROM_CENTER = 111
9499 published enum AnimationSpeed {
9500 SLOW = 0,
9501 MEDIUM = 1,
9502 FAST = 2
9504 published enum ClickAction {
9505 NONE = 0,
9506 PREVPAGE = 1,
9507 NEXTPAGE = 2,
9508 FIRSTPAGE = 3,
9509 LASTPAGE = 4,
9510 BOOKMARK = 5,
9511 DOCUMENT = 6,
9512 INVISIBLE = 7,
9513 SOUND = 8,
9514 VERB = 9,
9515 VANISH = 10,
9516 PROGRAM = 11,
9517 MACRO = 12,
9518 STOPPRESENTATION = 13
9520 published service Shape {
9521 [property] string Bookmark;
9522 [property] ::com::sun::star::util::Color DimColor;
9523 [property] boolean DimHide;
9524 [property] boolean DimPrevious;
9525 [property] ::com::sun::star::presentation::AnimationEffect Effect;
9526 [property] boolean IsEmptyPresentationObject;
9527 [property, readonly] boolean IsPresentationObject;
9528 [property] ::com::sun::star::presentation::ClickAction OnClick;
9529 [property] boolean PlayFull;
9530 [property] long PresentationOrder;
9531 [property] string Sound;
9532 [property] boolean SoundOn;
9533 [property] ::com::sun::star::presentation::AnimationSpeed Speed;
9534 [property] ::com::sun::star::presentation::AnimationEffect TextEffect;
9535 [property] long Verb;
9537 published service ChartShape {
9538 service ::com::sun::star::presentation::Shape;
9539 service ::com::sun::star::drawing::OLE2Shape;
9541 published service CustomPresentation {
9542 interface ::com::sun::star::container::XIndexContainer;
9543 interface ::com::sun::star::container::XNamed;
9545 published service CustomPresentationAccess {
9546 interface ::com::sun::star::container::XNameContainer;
9547 interface ::com::sun::star::lang::XSingleServiceFactory;
9549 published service DocumentSettings {
9550 service ::com::sun::star::document::Settings;
9551 [optional] service ::com::sun::star::document::HeaderFooterSettings;
9552 interface ::com::sun::star::beans::XPropertySet;
9553 [property, optional] boolean IsPrintDrawing;
9554 [property, optional] boolean IsPrintNotes;
9555 [property, optional] boolean IsPrintHandout;
9556 [property, optional] boolean IsPrintOutline;
9557 [property, optional] boolean IsPrintHiddenPages;
9558 [property, optional] boolean IsPrintFitPage;
9559 [property, optional] boolean IsPrintTilePage;
9560 [property, optional] long PageNumberFormat;
9561 [property, optional] boolean ParagraphSummation;
9563 published enum FadeEffect {
9564 NONE = 0,
9565 FADE_FROM_LEFT = 1,
9566 FADE_FROM_TOP = 2,
9567 FADE_FROM_RIGHT = 3,
9568 FADE_FROM_BOTTOM = 4,
9569 FADE_TO_CENTER = 5,
9570 FADE_FROM_CENTER = 6,
9571 MOVE_FROM_LEFT = 7,
9572 MOVE_FROM_TOP = 8,
9573 MOVE_FROM_RIGHT = 9,
9574 MOVE_FROM_BOTTOM = 10,
9575 ROLL_FROM_LEFT = 11,
9576 ROLL_FROM_TOP = 12,
9577 ROLL_FROM_RIGHT = 13,
9578 ROLL_FROM_BOTTOM = 14,
9579 VERTICAL_STRIPES = 15,
9580 HORIZONTAL_STRIPES = 16,
9581 CLOCKWISE = 17,
9582 COUNTERCLOCKWISE = 18,
9583 FADE_FROM_UPPERLEFT = 19,
9584 FADE_FROM_UPPERRIGHT = 20,
9585 FADE_FROM_LOWERLEFT = 21,
9586 FADE_FROM_LOWERRIGHT = 22,
9587 CLOSE_VERTICAL = 23,
9588 CLOSE_HORIZONTAL = 24,
9589 OPEN_VERTICAL = 25,
9590 OPEN_HORIZONTAL = 26,
9591 SPIRALIN_LEFT = 27,
9592 SPIRALIN_RIGHT = 28,
9593 SPIRALOUT_LEFT = 29,
9594 SPIRALOUT_RIGHT = 30,
9595 DISSOLVE = 31,
9596 WAVYLINE_FROM_LEFT = 32,
9597 WAVYLINE_FROM_TOP = 33,
9598 WAVYLINE_FROM_RIGHT = 34,
9599 WAVYLINE_FROM_BOTTOM = 35,
9600 RANDOM = 36,
9601 STRETCH_FROM_LEFT = 37,
9602 STRETCH_FROM_TOP = 38,
9603 STRETCH_FROM_RIGHT = 39,
9604 STRETCH_FROM_BOTTOM = 40,
9605 VERTICAL_LINES = 41,
9606 HORIZONTAL_LINES = 42,
9607 MOVE_FROM_UPPERLEFT = 43,
9608 MOVE_FROM_UPPERRIGHT = 44,
9609 MOVE_FROM_LOWERRIGHT = 45,
9610 MOVE_FROM_LOWERLEFT = 46,
9611 UNCOVER_TO_LEFT = 47,
9612 UNCOVER_TO_UPPERLEFT = 48,
9613 UNCOVER_TO_TOP = 49,
9614 UNCOVER_TO_UPPERRIGHT = 50,
9615 UNCOVER_TO_RIGHT = 51,
9616 UNCOVER_TO_LOWERRIGHT = 52,
9617 UNCOVER_TO_BOTTOM = 53,
9618 UNCOVER_TO_LOWERLEFT = 54,
9619 VERTICAL_CHECKERBOARD = 55,
9620 HORIZONTAL_CHECKERBOARD = 56
9622 published service DrawPage {
9623 service ::com::sun::star::drawing::DrawPage;
9624 service ::com::sun::star::document::LinkTarget;
9625 [property] long Change;
9626 [property] long Duration;
9627 [property, optional] double HighResDuration;
9628 [property] ::com::sun::star::presentation::FadeEffect Effect;
9629 [property] short Layout;
9630 [property] ::com::sun::star::presentation::AnimationSpeed Speed;
9631 [property, optional] boolean IsHeaderVisible;
9632 [property, optional] string HeaderText;
9633 [property, optional] boolean IsFooterVisible;
9634 [property, optional] string FooterText;
9635 [property, optional] boolean IsPageNumberVisible;
9636 [property, optional] boolean IsDateTimeVisible;
9637 [property, optional] boolean IsDateTimeFixed;
9638 [property, optional] string DateTimeText;
9639 [property, optional] long DateTimeFormat;
9641 published service GraphicObjectShape {
9642 service ::com::sun::star::presentation::Shape;
9643 service ::com::sun::star::drawing::GraphicObjectShape;
9645 published service HandoutShape {
9646 service ::com::sun::star::presentation::Shape;
9647 service ::com::sun::star::drawing::PageShape;
9649 published service HandoutView {
9650 service ::com::sun::star::drawing::DrawingDocumentDrawView;
9652 published service NotesShape {
9653 service ::com::sun::star::presentation::Shape;
9654 service ::com::sun::star::drawing::TextShape;
9656 published service NotesView {
9657 service ::com::sun::star::drawing::DrawingDocumentDrawView;
9659 published service OLE2Shape {
9660 service ::com::sun::star::presentation::Shape;
9661 service ::com::sun::star::drawing::OLE2Shape;
9663 published service OutlineView {
9664 service ::com::sun::star::frame::Controller;
9665 interface ::com::sun::star::awt::XWindow;
9666 interface ::com::sun::star::beans::XPropertySet;
9667 [property, readonly] ::com::sun::star::awt::Rectangle VisibleArea;
9669 published service OutlinerShape {
9670 service ::com::sun::star::presentation::Shape;
9671 service ::com::sun::star::drawing::TextShape;
9673 published service PageShape {
9674 service ::com::sun::star::presentation::Shape;
9675 service ::com::sun::star::drawing::PageShape;
9677 published interface XPresentation {
9678 interface ::com::sun::star::uno::XInterface;
9679 void start();
9680 void end();
9681 void rehearseTimings();
9683 published service Presentation {
9684 interface ::com::sun::star::presentation::XPresentation;
9685 interface ::com::sun::star::beans::XPropertySet;
9686 [property] boolean AllowAnimations;
9687 [property] string CustomShow;
9688 [property] string FirstPage;
9689 [property] boolean IsAlwaysOnTop;
9690 [property] boolean IsAutomatic;
9691 [property] boolean IsEndless;
9692 [property] boolean IsFullScreen;
9693 [property] boolean IsLivePresentation;
9694 [property] boolean IsMouseVisible;
9695 [property] long Pause;
9696 [property] boolean StartWithNavigator;
9697 [property] boolean UsePen;
9699 published interface XCustomPresentationSupplier {
9700 interface ::com::sun::star::uno::XInterface;
9701 ::com::sun::star::container::XNameContainer getCustomPresentations();
9703 published interface XPresentationSupplier {
9704 interface ::com::sun::star::uno::XInterface;
9705 ::com::sun::star::presentation::XPresentation getPresentation();
9707 published enum PresentationRange {
9708 PRESENTATIONRANGE_ALL = 0,
9709 PRESENTATIONRANGE_FROM_PAGE = 1,
9710 PRESENTATIONRANGE_INDIVIDUAL = 2
9712 published service PresentationView {
9713 service ::com::sun::star::frame::Controller;
9714 interface ::com::sun::star::awt::XWindow;
9715 interface ::com::sun::star::drawing::XDrawView;
9716 interface ::com::sun::star::beans::XPropertySet;
9717 [property] ::com::sun::star::drawing::XDrawPage CurrentPage;
9718 [property, readonly] ::com::sun::star::awt::Rectangle VisibleArea;
9720 published service PreviewView {
9721 service ::com::sun::star::frame::Controller;
9722 interface ::com::sun::star::awt::XWindow;
9723 interface ::com::sun::star::drawing::XDrawView;
9724 interface ::com::sun::star::beans::XPropertySet;
9725 [property] ::com::sun::star::drawing::XDrawPage CurrentPage;
9726 [property, readonly] ::com::sun::star::awt::Rectangle VisibleArea;
9728 published service SlidesView {
9729 service ::com::sun::star::frame::Controller;
9730 interface ::com::sun::star::awt::XWindow;
9731 interface ::com::sun::star::beans::XPropertySet;
9732 [property, readonly] ::com::sun::star::awt::Rectangle VisibleArea;
9734 published service SubtitleShape {
9735 service ::com::sun::star::presentation::Shape;
9736 service ::com::sun::star::drawing::TextShape;
9738 published service TitleTextShape {
9739 service ::com::sun::star::presentation::Shape;
9740 service ::com::sun::star::drawing::TextShape;
9742 published interface XHandoutMasterSupplier {
9743 interface ::com::sun::star::uno::XInterface;
9744 ::com::sun::star::drawing::XDrawPage getHandoutMasterPage();
9746 published interface XPresentationPage {
9747 interface ::com::sun::star::drawing::XDrawPage;
9748 ::com::sun::star::drawing::XDrawPage getNotesPage();
9751 module text {
9752 published enum TextContentAnchorType {
9753 AT_PARAGRAPH = 0,
9754 AS_CHARACTER = 1,
9755 AT_PAGE = 2,
9756 AT_FRAME = 3,
9757 AT_CHARACTER = 4
9759 published enum WrapTextMode {
9760 NONE = 0,
9761 THROUGHT = 1,
9762 PARALLEL = 2,
9763 DYNAMIC = 3,
9764 LEFT = 4,
9765 RIGHT = 5
9767 published interface XTextContent {
9768 interface ::com::sun::star::lang::XComponent;
9769 void attach([in] ::com::sun::star::text::XTextRange xTextRange) raises (::com::sun::star::lang::IllegalArgumentException);
9770 ::com::sun::star::text::XTextRange getAnchor();
9772 published service TextContent {
9773 interface ::com::sun::star::text::XTextContent;
9774 [property, optional] ::com::sun::star::text::TextContentAnchorType AnchorType;
9775 [property, optional, readonly] sequence< ::com::sun::star::text::TextContentAnchorType > AnchorTypes;
9776 [property, optional] ::com::sun::star::text::WrapTextMode TextWrap;
9778 published interface XTextField {
9779 interface ::com::sun::star::text::XTextContent;
9780 string getPresentation([in] boolean bShowCommand);
9782 published service TextField {
9783 service ::com::sun::star::text::TextContent;
9784 interface ::com::sun::star::text::XTextField;
9785 [optional] interface ::com::sun::star::beans::XPropertySet;
9786 [property, optional, readonly] boolean IsFieldUsed;
9787 [property, optional, readonly] boolean IsFieldDisplayed;
9790 module table {
9791 published struct CellAddress {
9792 short Sheet;
9793 long Column;
9794 long Row;
9797 module sheet {
9798 published struct FunctionArgument {
9799 string Name;
9800 string Description;
9801 boolean IsOptional;
9804 module resource {
9805 published exception MissingResourceException: ::com::sun::star::uno::RuntimeException {
9807 published interface XResourceBundle;
9808 published interface XResourceBundleLoader {
9809 interface ::com::sun::star::uno::XInterface;
9810 ::com::sun::star::resource::XResourceBundle loadBundle_Default([in] string aBaseName) raises (::com::sun::star::resource::MissingResourceException);
9811 ::com::sun::star::resource::XResourceBundle loadBundle([in] string abaseName, [in] ::com::sun::star::lang::Locale aLocale) raises (::com::sun::star::resource::MissingResourceException);
9813 published interface XLocale {
9814 interface ::com::sun::star::uno::XInterface;
9815 ::com::sun::star::lang::Locale create([in] string aLanguage, [in] string aCountry, [in] string aVariant);
9816 ::com::sun::star::lang::Locale getDefault();
9817 void setDefault([in] ::com::sun::star::lang::Locale newLocale);
9818 sequence< ::com::sun::star::lang::Locale > getAvailableLocales();
9819 sequence< string > getISOCountries();
9820 sequence< string > getISOLanguages();
9821 sequence< string > getLanguagesForCountry([in] string country);
9822 string getISO3Language([in] ::com::sun::star::lang::Locale locale) raises (::com::sun::star::resource::MissingResourceException);
9823 string getISO3Country([in] ::com::sun::star::lang::Locale locale) raises (::com::sun::star::resource::MissingResourceException);
9824 string getDisplayLanguage_Default([in] ::com::sun::star::lang::Locale locale);
9825 string getDisplayLanguage([in] ::com::sun::star::lang::Locale locale, [in] ::com::sun::star::lang::Locale inLocale);
9826 string getDisplayCountry_Default([in] ::com::sun::star::lang::Locale locale);
9827 string getDisplayCountry([in] ::com::sun::star::lang::Locale locale, [in] ::com::sun::star::lang::Locale inLocale);
9828 string getDisplayVariant_Default([in] ::com::sun::star::lang::Locale locale);
9829 string getDisplayVariant([in] ::com::sun::star::lang::Locale locale, [in] ::com::sun::star::lang::Locale inLocale);
9830 string getDisplayName_Default([in] ::com::sun::star::lang::Locale locale);
9831 string getDisplayName([in] ::com::sun::star::lang::Locale locale, [in] ::com::sun::star::lang::Locale inLocale);
9832 boolean equals([in] ::com::sun::star::lang::Locale l1, [in] ::com::sun::star::lang::Locale l2);
9834 /** @deprecated */ published interface XResourceBundle {
9835 interface ::com::sun::star::container::XNameAccess;
9836 [attribute] ::com::sun::star::resource::XResourceBundle Parent;
9837 ::com::sun::star::lang::Locale getLocale();
9838 any getDirectElement([in] string key);
9841 module scanner {
9842 published enum ScanError {
9843 ScanErrorNone = 0,
9844 ScannerNotAvailable = 1,
9845 ScanFailed = 2,
9846 ScanInProgress = 3,
9847 ScanCanceled = 4,
9848 InvalidContext = 5
9850 published struct ScannerContext {
9851 string ScannerName;
9852 long InternalData;
9854 published exception ScannerException: ::com::sun::star::uno::Exception {
9855 ::com::sun::star::scanner::ScanError Error;
9857 published interface XScannerManager {
9858 interface ::com::sun::star::uno::XInterface;
9859 sequence< ::com::sun::star::scanner::ScannerContext > getAvailableScanners();
9860 boolean configureScanner([inout] ::com::sun::star::scanner::ScannerContext scannerContext) raises (::com::sun::star::scanner::ScannerException);
9861 void startScan([in] ::com::sun::star::scanner::ScannerContext scannerContext, [in] ::com::sun::star::lang::XEventListener listener) raises (::com::sun::star::scanner::ScannerException);
9862 ::com::sun::star::scanner::ScanError getError([in] ::com::sun::star::scanner::ScannerContext scannerContext) raises (::com::sun::star::scanner::ScannerException);
9863 ::com::sun::star::awt::XBitmap getBitmap([in] ::com::sun::star::scanner::ScannerContext scannerContext) raises (::com::sun::star::scanner::ScannerException);
9865 published interface XScannerManager2 {
9866 interface ::com::sun::star::scanner::XScannerManager;
9867 boolean configureScannerAndScan([inout] ::com::sun::star::scanner::ScannerContext scannerContext, [in] ::com::sun::star::lang::XEventListener listener) raises (::com::sun::star::scanner::ScannerException);
9869 published service ScannerManager: ::com::sun::star::scanner::XScannerManager2;
9871 module script {
9872 published interface XLibraryContainer {
9873 interface ::com::sun::star::container::XNameAccess;
9874 ::com::sun::star::container::XNameContainer createLibrary([in] string Name) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::ElementExistException);
9875 ::com::sun::star::container::XNameAccess createLibraryLink([in] string Name, [in] string StorageURL, [in] boolean ReadOnly) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::ElementExistException);
9876 void removeLibrary([in] string Name) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::WrappedTargetException);
9877 boolean isLibraryLoaded([in] string Name) raises (::com::sun::star::container::NoSuchElementException);
9878 void loadLibrary([in] string Name) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::WrappedTargetException);
9880 published interface XLibraryContainer2 {
9881 interface ::com::sun::star::script::XLibraryContainer;
9882 boolean isLibraryLink([in] string Name) raises (::com::sun::star::container::NoSuchElementException);
9883 string getLibraryLinkURL([in] string Name) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException);
9884 boolean isLibraryReadOnly([in] string Name) raises (::com::sun::star::container::NoSuchElementException);
9885 void setLibraryReadOnly([in] string Name, [in] boolean bReadOnly) raises (::com::sun::star::container::NoSuchElementException);
9886 void renameLibrary([in] string Name, [in] string NewName) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::container::ElementExistException);
9888 published constants ModuleType {
9889 const long CLASS = 2;
9890 const long DOCUMENT = 4;
9891 const long FORM = 3;
9892 const long NORMAL = 1;
9893 const long UNKNOWN = 0;
9895 published interface XLibraryContainer3 {
9896 interface ::com::sun::star::script::XLibraryContainer2;
9897 string getOriginalLibraryLinkURL([in] string Name) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException);
9899 published interface XLibraryContainerPassword {
9900 interface ::com::sun::star::uno::XInterface;
9901 boolean isLibraryPasswordProtected([in] string Name) raises (::com::sun::star::container::NoSuchElementException);
9902 boolean isLibraryPasswordVerified([in] string Name) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException);
9903 boolean verifyLibraryPassword([in] string Name, [in] string Password) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException);
9904 void changeLibraryPassword([in] string Name, [in] string OldPassword, [in] string NewPassword) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException);
9907 module sdbc {
9908 published interface XMultipleResults {
9909 interface ::com::sun::star::uno::XInterface;
9910 ::com::sun::star::sdbc::XResultSet getResultSet() raises (::com::sun::star::sdbc::SQLException);
9911 long getUpdateCount() raises (::com::sun::star::sdbc::SQLException);
9912 boolean getMoreResults() raises (::com::sun::star::sdbc::SQLException);
9914 published interface XPreparedBatchExecution {
9915 interface ::com::sun::star::uno::XInterface;
9916 void addBatch() raises (::com::sun::star::sdbc::SQLException);
9917 void clearBatch() raises (::com::sun::star::sdbc::SQLException);
9918 sequence< long > executeBatch() raises (::com::sun::star::sdbc::SQLException);
9920 published interface XConnection;
9921 published interface XPreparedStatement {
9922 interface ::com::sun::star::uno::XInterface;
9923 ::com::sun::star::sdbc::XResultSet executeQuery() raises (::com::sun::star::sdbc::SQLException);
9924 long executeUpdate() raises (::com::sun::star::sdbc::SQLException);
9925 boolean execute() raises (::com::sun::star::sdbc::SQLException);
9926 ::com::sun::star::sdbc::XConnection getConnection() raises (::com::sun::star::sdbc::SQLException);
9928 published service PreparedStatement {
9929 interface ::com::sun::star::sdbc::XCloseable;
9930 interface ::com::sun::star::beans::XPropertySet;
9931 interface ::com::sun::star::sdbc::XPreparedStatement;
9932 interface ::com::sun::star::sdbc::XResultSetMetaDataSupplier;
9933 interface ::com::sun::star::sdbc::XParameters;
9934 interface ::com::sun::star::sdbc::XWarningsSupplier;
9935 interface ::com::sun::star::sdbc::XMultipleResults;
9936 [optional] interface ::com::sun::star::lang::XComponent;
9937 [optional] interface ::com::sun::star::util::XCancellable;
9938 [optional] interface ::com::sun::star::sdbc::XPreparedBatchExecution;
9939 [property] long QueryTimeOut;
9940 [property] long MaxFieldSize;
9941 [property] long MaxRows;
9942 [property] string CursorName;
9943 [property] long ResultSetConcurrency;
9944 [property] long ResultSetType;
9945 [property] long FetchDirection;
9946 [property] long FetchSize;
9949 module sdb {
9950 published service PreparedStatement {
9951 service ::com::sun::star::sdbc::PreparedStatement;
9952 interface ::com::sun::star::sdbcx::XColumnsSupplier;
9955 module sdbc {
9956 published interface XOutParameters {
9957 interface ::com::sun::star::uno::XInterface;
9958 void registerOutParameter([in] long parameterIndex, [in] long sqlType, [in] string typeName) raises (::com::sun::star::sdbc::SQLException);
9959 void registerNumericOutParameter([in] long parameterIndex, [in] long sqlType, [in] long scale) raises (::com::sun::star::sdbc::SQLException);
9961 published service CallableStatement {
9962 service ::com::sun::star::sdbc::PreparedStatement;
9963 interface ::com::sun::star::sdbc::XRow;
9964 interface ::com::sun::star::sdbc::XOutParameters;
9967 module sdb {
9968 published service CallableStatement {
9969 service ::com::sun::star::sdbc::CallableStatement;
9970 service ::com::sun::star::sdb::PreparedStatement;
9972 published service ColumnSettings {
9973 interface ::com::sun::star::beans::XPropertySet;
9974 [property] long FormatKey;
9975 [property] long Align;
9976 [property] long Width;
9977 [property] long Position;
9978 [property] boolean Hidden;
9979 [property, optional] ::com::sun::star::beans::XPropertySet ControlModel;
9980 [property, optional] string HelpText;
9981 [property, optional] string ControlDefault;
9984 module sdbcx {
9985 published interface XDataDescriptorFactory {
9986 interface ::com::sun::star::uno::XInterface;
9987 ::com::sun::star::beans::XPropertySet createDataDescriptor();
9989 published service Column {
9990 interface ::com::sun::star::beans::XPropertySet;
9991 [optional] interface ::com::sun::star::sdbcx::XDataDescriptorFactory;
9992 [property, readonly] string Name;
9993 [property, readonly] long Type;
9994 [property, readonly] string TypeName;
9995 [property, readonly] long Precision;
9996 [property, readonly] long Scale;
9997 [property, readonly] long IsNullable;
9998 [property, readonly] boolean IsAutoIncrement;
9999 [property, readonly] boolean IsCurrency;
10000 [property, optional, readonly] boolean IsRowVersion;
10001 [property, optional, readonly] string Description;
10002 [property, optional, readonly] string DefaultValue;
10005 module sdb {
10006 published service Column {
10007 service ::com::sun::star::sdbcx::Column;
10008 service ::com::sun::star::sdb::ColumnSettings;
10011 module sdbcx {
10012 published interface XRename {
10013 interface ::com::sun::star::uno::XInterface;
10014 void rename([in] string newName) raises (::com::sun::star::sdbc::SQLException, ::com::sun::star::container::ElementExistException);
10017 module sdb {
10018 published constants CommandType {
10019 const long COMMAND = 2;
10020 const long QUERY = 1;
10021 const long TABLE = 0;
10023 published interface XCommandPreparation {
10024 interface ::com::sun::star::uno::XInterface;
10025 ::com::sun::star::sdbc::XPreparedStatement prepareCommand([in] string command, [in] long commandType) raises (::com::sun::star::sdbc::SQLException);
10027 published interface XQueriesSupplier {
10028 interface ::com::sun::star::uno::XInterface;
10029 ::com::sun::star::container::XNameAccess getQueries();
10031 published interface XSQLQueryComposer;
10032 published interface XSQLQueryComposerFactory {
10033 interface ::com::sun::star::uno::XInterface;
10034 ::com::sun::star::sdb::XSQLQueryComposer createQueryComposer();
10037 module sdbc {
10038 published interface XDatabaseMetaData;
10039 published interface XStatement;
10040 published interface XConnection {
10041 interface ::com::sun::star::sdbc::XCloseable;
10042 ::com::sun::star::sdbc::XStatement createStatement() raises (::com::sun::star::sdbc::SQLException);
10043 ::com::sun::star::sdbc::XPreparedStatement prepareStatement([in] string sql) raises (::com::sun::star::sdbc::SQLException);
10044 ::com::sun::star::sdbc::XPreparedStatement prepareCall([in] string sql) raises (::com::sun::star::sdbc::SQLException);
10045 string nativeSQL([in] string sql) raises (::com::sun::star::sdbc::SQLException);
10046 void setAutoCommit([in] boolean autoCommit) raises (::com::sun::star::sdbc::SQLException);
10047 boolean getAutoCommit() raises (::com::sun::star::sdbc::SQLException);
10048 void commit() raises (::com::sun::star::sdbc::SQLException);
10049 void rollback() raises (::com::sun::star::sdbc::SQLException);
10050 boolean isClosed() raises (::com::sun::star::sdbc::SQLException);
10051 ::com::sun::star::sdbc::XDatabaseMetaData getMetaData() raises (::com::sun::star::sdbc::SQLException);
10052 void setReadOnly([in] boolean readOnly) raises (::com::sun::star::sdbc::SQLException);
10053 boolean isReadOnly() raises (::com::sun::star::sdbc::SQLException);
10054 void setCatalog([in] string catalog) raises (::com::sun::star::sdbc::SQLException);
10055 string getCatalog() raises (::com::sun::star::sdbc::SQLException);
10056 void setTransactionIsolation([in] long level) raises (::com::sun::star::sdbc::SQLException);
10057 long getTransactionIsolation() raises (::com::sun::star::sdbc::SQLException);
10058 ::com::sun::star::container::XNameAccess getTypeMap() raises (::com::sun::star::sdbc::SQLException);
10059 void setTypeMap([in] ::com::sun::star::container::XNameAccess typeMap) raises (::com::sun::star::sdbc::SQLException);
10061 published service Connection {
10062 interface ::com::sun::star::lang::XComponent;
10063 interface ::com::sun::star::sdbc::XConnection;
10064 interface ::com::sun::star::sdbc::XWarningsSupplier;
10067 module sdbcx {
10068 published interface XGroupsSupplier {
10069 interface ::com::sun::star::uno::XInterface;
10070 ::com::sun::star::container::XNameAccess getGroups();
10072 published interface XTablesSupplier {
10073 interface ::com::sun::star::uno::XInterface;
10074 ::com::sun::star::container::XNameAccess getTables();
10076 published interface XUsersSupplier {
10077 interface ::com::sun::star::uno::XInterface;
10078 ::com::sun::star::container::XNameAccess getUsers();
10080 published interface XViewsSupplier {
10081 interface ::com::sun::star::uno::XInterface;
10082 ::com::sun::star::container::XNameAccess getViews();
10084 published service DatabaseDefinition {
10085 interface ::com::sun::star::sdbcx::XTablesSupplier;
10086 [optional] interface ::com::sun::star::sdbcx::XViewsSupplier;
10087 [optional] interface ::com::sun::star::sdbcx::XUsersSupplier;
10088 [optional] interface ::com::sun::star::sdbcx::XGroupsSupplier;
10091 module sdb {
10092 published service Connection {
10093 service ::com::sun::star::sdbc::Connection;
10094 service ::com::sun::star::sdbcx::DatabaseDefinition;
10095 interface ::com::sun::star::container::XChild;
10096 interface ::com::sun::star::sdb::XCommandPreparation;
10097 interface ::com::sun::star::sdb::XQueriesSupplier;
10098 interface ::com::sun::star::sdb::XSQLQueryComposerFactory;
10099 [optional] interface ::com::sun::star::lang::XMultiServiceFactory;
10101 published service ContentLoader {
10102 service ::com::sun::star::frame::FrameLoader;
10104 published service DataAccessDescriptor {
10105 [property, optional] string DataSourceName;
10106 [property, optional] string DatabaseLocation;
10107 [property, optional] string ConnectionResource;
10108 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > ConnectionInfo;
10109 [property, optional] ::com::sun::star::sdbc::XConnection ActiveConnection;
10110 [property, optional] string Command;
10111 [property, optional] long CommandType;
10112 [property, optional] string Filter;
10113 [property, optional] string Order;
10114 [property, optional] string HavingClause;
10115 [property, optional] string GroupBy;
10116 [property, optional] boolean EscapeProcessing;
10117 [property, optional] ::com::sun::star::sdbc::XResultSet ResultSet;
10118 [property, optional] sequence< any > Selection;
10119 [property, optional] boolean BookmarkSelection;
10120 [property, optional] string ColumnName;
10121 [property, optional] ::com::sun::star::beans::XPropertySet Column;
10123 published service ResultColumn {
10124 service ::com::sun::star::sdbcx::Column;
10125 service ::com::sun::star::sdb::ColumnSettings;
10126 [property, readonly] boolean IsSearchable;
10127 [property, readonly] boolean IsSigned;
10128 [property, readonly] boolean IsCaseSensitive;
10129 [property, readonly] long DisplaySize;
10130 [property, readonly] string Label;
10131 [property, readonly] boolean IsReadOnly;
10132 [property, readonly] boolean IsWritable;
10133 [property, readonly] boolean IsDefinitelyWritable;
10134 [property, readonly] string ServiceName;
10135 [property, readonly] string TableName;
10136 [property, readonly] string SchemaName;
10137 [property, readonly] string CatalogName;
10140 module sdbc {
10141 published interface XArray;
10142 published interface XBlob;
10143 published interface XClob;
10144 published interface XRef;
10146 module sdb {
10147 published interface XColumn {
10148 interface ::com::sun::star::uno::XInterface;
10149 boolean wasNull() raises (::com::sun::star::sdbc::SQLException);
10150 string getString() raises (::com::sun::star::sdbc::SQLException);
10151 boolean getBoolean() raises (::com::sun::star::sdbc::SQLException);
10152 byte getByte() raises (::com::sun::star::sdbc::SQLException);
10153 short getShort() raises (::com::sun::star::sdbc::SQLException);
10154 long getInt() raises (::com::sun::star::sdbc::SQLException);
10155 hyper getLong() raises (::com::sun::star::sdbc::SQLException);
10156 float getFloat() raises (::com::sun::star::sdbc::SQLException);
10157 double getDouble() raises (::com::sun::star::sdbc::SQLException);
10158 sequence< byte > getBytes() raises (::com::sun::star::sdbc::SQLException);
10159 ::com::sun::star::util::Date getDate() raises (::com::sun::star::sdbc::SQLException);
10160 ::com::sun::star::util::Time getTime() raises (::com::sun::star::sdbc::SQLException);
10161 ::com::sun::star::util::DateTime getTimestamp() raises (::com::sun::star::sdbc::SQLException);
10162 ::com::sun::star::io::XInputStream getBinaryStream() raises (::com::sun::star::sdbc::SQLException);
10163 ::com::sun::star::io::XInputStream getCharacterStream() raises (::com::sun::star::sdbc::SQLException);
10164 any getObject([in] ::com::sun::star::container::XNameAccess typeMap) raises (::com::sun::star::sdbc::SQLException);
10165 ::com::sun::star::sdbc::XRef getRef() raises (::com::sun::star::sdbc::SQLException);
10166 ::com::sun::star::sdbc::XBlob getBlob() raises (::com::sun::star::sdbc::SQLException);
10167 ::com::sun::star::sdbc::XClob getClob() raises (::com::sun::star::sdbc::SQLException);
10168 ::com::sun::star::sdbc::XArray getArray() raises (::com::sun::star::sdbc::SQLException);
10170 published interface XColumnUpdate {
10171 interface ::com::sun::star::uno::XInterface;
10172 void updateNull() raises (::com::sun::star::sdbc::SQLException);
10173 void updateBoolean([in] boolean x) raises (::com::sun::star::sdbc::SQLException);
10174 void updateByte([in] byte x) raises (::com::sun::star::sdbc::SQLException);
10175 void updateShort([in] short x) raises (::com::sun::star::sdbc::SQLException);
10176 void updateInt([in] long x) raises (::com::sun::star::sdbc::SQLException);
10177 void updateLong([in] hyper x) raises (::com::sun::star::sdbc::SQLException);
10178 void updateFloat([in] float x) raises (::com::sun::star::sdbc::SQLException);
10179 void updateDouble([in] double x) raises (::com::sun::star::sdbc::SQLException);
10180 void updateString([in] string x) raises (::com::sun::star::sdbc::SQLException);
10181 void updateBytes([in] sequence< byte > x) raises (::com::sun::star::sdbc::SQLException);
10182 void updateDate([in] ::com::sun::star::util::Date x) raises (::com::sun::star::sdbc::SQLException);
10183 void updateTime([in] ::com::sun::star::util::Time x) raises (::com::sun::star::sdbc::SQLException);
10184 void updateTimestamp([in] ::com::sun::star::util::DateTime x) raises (::com::sun::star::sdbc::SQLException);
10185 void updateBinaryStream([in] ::com::sun::star::io::XInputStream x, [in] long length) raises (::com::sun::star::sdbc::SQLException);
10186 void updateCharacterStream([in] ::com::sun::star::io::XInputStream x, [in] long length) raises (::com::sun::star::sdbc::SQLException);
10187 void updateObject([in] any x) raises (::com::sun::star::sdbc::SQLException);
10188 void updateNumericObject([in] any x, [in] long scale) raises (::com::sun::star::sdbc::SQLException);
10190 published service DataColumn {
10191 service ::com::sun::star::sdb::ResultColumn;
10192 interface ::com::sun::star::sdb::XColumn;
10193 interface ::com::sun::star::sdb::XColumnUpdate;
10194 [property, optional] any Value;
10195 [property, optional, readonly] any OriginalValue;
10197 published service DataSettings {
10198 [property] string Filter;
10199 [property] boolean ApplyFilter;
10200 [property] string Order;
10201 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
10202 [property] long RowHeight;
10203 [property] ::com::sun::star::util::Color TextColor;
10204 [property, optional] string HavingClause;
10205 [property, optional] string GroupBy;
10207 published interface XBookmarksSupplier {
10208 interface ::com::sun::star::uno::XInterface;
10209 ::com::sun::star::container::XNameAccess getBookmarks();
10211 published interface XCompletedConnection {
10212 interface ::com::sun::star::uno::XInterface;
10213 ::com::sun::star::sdbc::XConnection connectWithCompletion([in] ::com::sun::star::task::XInteractionHandler handler) raises (::com::sun::star::sdbc::SQLException);
10215 published interface XQueryDefinitionsSupplier {
10216 interface ::com::sun::star::uno::XInterface;
10217 ::com::sun::star::container::XNameAccess getQueryDefinitions();
10220 module sdbc {
10221 published interface XDataSource {
10222 interface ::com::sun::star::uno::XInterface;
10223 ::com::sun::star::sdbc::XConnection getConnection([in] string user, [in] string password) raises (::com::sun::star::sdbc::SQLException);
10224 void setLoginTimeout([in] long seconds) raises (::com::sun::star::sdbc::SQLException);
10225 long getLoginTimeout() raises (::com::sun::star::sdbc::SQLException);
10227 published interface XIsolatedConnection {
10228 interface ::com::sun::star::uno::XInterface;
10229 ::com::sun::star::sdbc::XConnection getIsolatedConnectionWithCompletion([in] ::com::sun::star::task::XInteractionHandler handler) raises (::com::sun::star::sdbc::SQLException);
10230 ::com::sun::star::sdbc::XConnection getIsolatedConnection([in] string user, [in] string password) raises (::com::sun::star::sdbc::SQLException);
10233 module sdb {
10234 published service DataSource {
10235 interface ::com::sun::star::beans::XPropertySet;
10236 interface ::com::sun::star::sdb::XCompletedConnection;
10237 interface ::com::sun::star::sdbc::XIsolatedConnection;
10238 interface ::com::sun::star::util::XFlushable;
10239 interface ::com::sun::star::sdb::XQueryDefinitionsSupplier;
10240 interface ::com::sun::star::sdbc::XDataSource;
10241 [optional] interface ::com::sun::star::sdb::XBookmarksSupplier;
10242 [property, readonly] string Name;
10243 [property] string URL;
10244 [property] sequence< ::com::sun::star::beans::PropertyValue > Info;
10245 [property, optional, readonly] ::com::sun::star::beans::XPropertySet Settings;
10246 [property] string User;
10247 [property] string Password;
10248 [property] boolean IsPasswordRequired;
10249 [property] boolean SuppressVersionColumns;
10250 [property, readonly] boolean IsReadOnly;
10251 [property, readonly] ::com::sun::star::util::XNumberFormatsSupplier NumberFormatsSupplier;
10252 [property] sequence< string > TableFilter;
10253 [property] sequence< string > TableTypeFilter;
10255 published service DataSourceBrowser {
10256 [optional] service ::com::sun::star::form::FormController;
10257 interface ::com::sun::star::frame::XController;
10258 interface ::com::sun::star::lang::XInitialization;
10259 interface ::com::sun::star::frame::XDispatchProvider;
10260 [optional] interface ::com::sun::star::ui::XContextMenuInterception;
10262 published interface XDatabaseAccessListener;
10263 /** @deprecated */ published interface XDatabaseAccess {
10264 interface ::com::sun::star::sdbc::XDataSource;
10265 boolean hasConnections();
10266 ::com::sun::star::sdbc::XConnection getIsolatedConnection([in] string user, [in] string password) raises (::com::sun::star::sdbc::SQLException);
10267 boolean suspendConnections() raises (::com::sun::star::sdbc::SQLException);
10268 void addDatabaseAccessListener([in] ::com::sun::star::sdb::XDatabaseAccessListener listener);
10269 void removeDatabaseAccessListener([in] ::com::sun::star::sdb::XDatabaseAccessListener listener);
10271 /** @deprecated */ published service DatabaseAccess {
10272 interface ::com::sun::star::beans::XPropertySet;
10273 interface ::com::sun::star::sdb::XDatabaseAccess;
10274 [optional] interface ::com::sun::star::sdb::XCompletedConnection;
10275 [property, readonly] string URL;
10276 [property] string Title;
10277 [property] string ConnectURL;
10278 [property] sequence< ::com::sun::star::beans::PropertyValue > ConnectInfo;
10279 [property, readonly] boolean IsReadOnly;
10280 [property] ::com::sun::star::util::XNumberFormatsSupplier NumberFormatsSupplier;
10281 [property, optional] boolean IsPasswordRequired;
10282 [property, optional] sequence< string > TableFilter;
10283 [property, optional] sequence< string > TableTypeFilter;
10285 /** @deprecated */ published service DatabaseAccessConnection {
10286 service ::com::sun::star::sdbc::Connection;
10287 service ::com::sun::star::sdbcx::DatabaseDefinition;
10288 interface ::com::sun::star::container::XChild;
10289 interface ::com::sun::star::sdb::XSQLQueryComposerFactory;
10290 interface ::com::sun::star::sdb::XQueriesSupplier;
10293 module util {
10294 published struct AliasProgrammaticPair {
10295 string Alias;
10296 string ProgrammaticName;
10298 published interface XLocalizedAliases {
10299 interface ::com::sun::star::uno::XInterface;
10300 void bindAlias([in] string programmaticName, [in] ::com::sun::star::lang::Locale locale, [in] string alias) raises (::com::sun::star::container::ElementExistException);
10301 void unbindAlias([in] ::com::sun::star::lang::Locale locale, [in] string alias) raises (::com::sun::star::container::NoSuchElementException);
10302 string lookupAlias([in] ::com::sun::star::lang::Locale locale, [in] string Alias) raises (::com::sun::star::container::NoSuchElementException);
10303 string lookupProgrammatic([in] ::com::sun::star::lang::Locale locale, [in] string programmatic) raises (::com::sun::star::container::NoSuchElementException);
10304 void unbindAliases([in] string programmaticName) raises (::com::sun::star::container::NoSuchElementException);
10305 void rebindAliases([in] string currentProgrammatic, [in] string newProgrammatic) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::container::ElementExistException);
10306 void renameAlias([in] ::com::sun::star::lang::Locale locale, [in] string oldName, [in] string aNewName) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::container::ElementExistException);
10307 sequence< ::com::sun::star::util::AliasProgrammaticPair > listAliases([in] ::com::sun::star::lang::Locale locale);
10310 module sdb {
10311 /** @deprecated */ published service DatabaseAccessContext {
10312 interface ::com::sun::star::container::XEnumerationAccess;
10313 interface ::com::sun::star::container::XNameAccess;
10314 interface ::com::sun::star::util::XLocalizedAliases;
10315 interface ::com::sun::star::lang::XLocalizable;
10318 module ucb {
10319 published enum RememberAuthentication {
10320 NO = 0,
10321 SESSION = 1,
10322 PERSISTENT = 2
10325 module sdb {
10326 /** @deprecated */ published service DatabaseAccessDataSource {
10327 interface ::com::sun::star::beans::XPropertySet;
10328 interface ::com::sun::star::sdbc::XDataSource;
10329 [optional] interface ::com::sun::star::sdb::XCompletedConnection;
10330 [property] string URL;
10331 [property, optional] ::com::sun::star::ucb::RememberAuthentication PasswordMode;
10333 published interface XDatabaseRegistrationsListener;
10334 published interface XDatabaseRegistrations {
10335 interface ::com::sun::star::uno::XInterface;
10336 boolean hasRegisteredDatabase([in] string Name) raises (::com::sun::star::lang::IllegalArgumentException);
10337 sequence< string > getRegistrationNames();
10338 string getDatabaseLocation([in] string Name) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException);
10339 void registerDatabaseLocation([in] string Name, [in] string Location) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::ElementExistException);
10340 void revokeDatabaseLocation([in] string Name) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::IllegalAccessException);
10341 void changeDatabaseLocation([in] string Name, [in] string NewLocation) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::IllegalAccessException);
10342 boolean isDatabaseRegistrationReadOnly([in] string Name) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException);
10343 void addDatabaseRegistrationsListener([in] ::com::sun::star::sdb::XDatabaseRegistrationsListener Listener);
10344 void removeDatabaseRegistrationsListener([in] ::com::sun::star::sdb::XDatabaseRegistrationsListener Listener);
10346 published interface XDatabaseContext {
10347 interface ::com::sun::star::container::XEnumerationAccess;
10348 interface ::com::sun::star::container::XNameAccess;
10349 interface ::com::sun::star::uno::XNamingService;
10350 interface ::com::sun::star::container::XContainer;
10351 interface ::com::sun::star::lang::XSingleServiceFactory;
10352 interface ::com::sun::star::sdb::XDatabaseRegistrations;
10354 published service DatabaseContext: ::com::sun::star::sdb::XDatabaseContext;
10355 /** @deprecated */ published service DatabaseDocument {
10356 interface ::com::sun::star::beans::XPropertySet;
10357 interface ::com::sun::star::sdbcx::XDataDescriptorFactory;
10358 interface ::com::sun::star::sdbcx::XRename;
10359 [property, readonly] string Name;
10360 [property, readonly] string URL;
10363 module sdbc {
10364 published interface XDriverManager {
10365 interface ::com::sun::star::uno::XInterface;
10366 ::com::sun::star::sdbc::XConnection getConnection([in] string url) raises (::com::sun::star::sdbc::SQLException);
10367 ::com::sun::star::sdbc::XConnection getConnectionWithInfo([in] string url, [in] sequence< ::com::sun::star::beans::PropertyValue > info) raises (::com::sun::star::sdbc::SQLException);
10368 void setLoginTimeout([in] long seconds);
10369 long getLoginTimeout();
10372 module sdb {
10373 /** @deprecated */ published interface XDatabaseEnvironment {
10374 interface ::com::sun::star::sdbc::XDriverManager;
10375 ::com::sun::star::sdb::XDatabaseAccess getDatabaseAccess([in] string URL) raises (::com::sun::star::sdbc::SQLException);
10376 ::com::sun::star::sdb::XDatabaseAccess createDatabaseAccess([in] string URL, [in] string title) raises (::com::sun::star::sdbc::SQLException);
10378 /** @deprecated */ published service DatabaseEnvironment {
10379 interface ::com::sun::star::sdb::XDatabaseEnvironment;
10380 interface ::com::sun::star::beans::XPropertySet;
10381 [property, readonly] ::com::sun::star::util::XNumberFormatsSupplier NumberFormatsSupplier;
10383 published struct DatabaseRegistrationEvent: ::com::sun::star::lang::EventObject {
10384 string Name;
10385 string OldLocation;
10386 string NewLocation;
10388 published service DatasourceAdministrationDialog {
10389 interface ::com::sun::star::beans::XPropertySet;
10390 interface ::com::sun::star::ui::dialogs::XExecutableDialog;
10391 interface ::com::sun::star::lang::XInitialization;
10392 [property] string Title;
10393 [property] ::com::sun::star::awt::XWindow ParentWindow;
10395 published service DefinitionContainer {
10396 interface ::com::sun::star::container::XNameAccess;
10397 interface ::com::sun::star::container::XNameContainer;
10398 interface ::com::sun::star::container::XIndexAccess;
10399 interface ::com::sun::star::container::XEnumerationAccess;
10400 [optional] interface ::com::sun::star::util::XRefreshable;
10401 [optional] interface ::com::sun::star::lang::XSingleServiceFactory;
10404 module ucb {
10405 published interface XCommandInfoChangeListener;
10406 published interface XCommandInfoChangeNotifier {
10407 interface ::com::sun::star::uno::XInterface;
10408 void addCommandInfoChangeListener([in] ::com::sun::star::ucb::XCommandInfoChangeListener Listener);
10409 void removeCommandInfoChangeListener([in] ::com::sun::star::ucb::XCommandInfoChangeListener Listener);
10411 published struct Command {
10412 string Name;
10413 long Handle;
10414 any Argument;
10416 published interface XCommandProcessor {
10417 interface ::com::sun::star::uno::XInterface;
10418 long createCommandIdentifier();
10419 any execute([in] ::com::sun::star::ucb::Command aCommand, [in] long CommandId, [in] ::com::sun::star::ucb::XCommandEnvironment Environment) raises (::com::sun::star::uno::Exception, ::com::sun::star::ucb::CommandAbortedException);
10420 void abort([in] long CommandId);
10422 published interface XCommandProcessor2 {
10423 interface ::com::sun::star::ucb::XCommandProcessor;
10424 void releaseCommandIdentifier([in] long CommandId);
10426 published interface XContentEventListener;
10427 published interface XContentIdentifier;
10428 published interface XContent {
10429 interface ::com::sun::star::uno::XInterface;
10430 ::com::sun::star::ucb::XContentIdentifier getIdentifier();
10431 string getContentType();
10432 void addContentEventListener([in] ::com::sun::star::ucb::XContentEventListener Listener);
10433 void removeContentEventListener([in] ::com::sun::star::ucb::XContentEventListener Listener);
10435 published struct ContentInfo {
10436 string Type;
10437 long Attributes;
10438 sequence< ::com::sun::star::beans::Property > Properties;
10440 /** @deprecated */ published interface XContentCreator {
10441 interface ::com::sun::star::uno::XInterface;
10442 sequence< ::com::sun::star::ucb::ContentInfo > queryCreatableContentsInfo();
10443 ::com::sun::star::ucb::XContent createNewContent([in] ::com::sun::star::ucb::ContentInfo Info);
10445 published service Content {
10446 interface ::com::sun::star::ucb::XContent;
10447 interface ::com::sun::star::lang::XComponent;
10448 interface ::com::sun::star::ucb::XCommandProcessor;
10449 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
10450 /** @deprecated */ interface ::com::sun::star::beans::XPropertyContainer;
10451 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
10452 [optional] interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
10453 [optional] interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
10454 /** @deprecated */ [optional] interface ::com::sun::star::ucb::XContentCreator;
10455 [optional] interface ::com::sun::star::container::XChild;
10458 module sdb {
10459 /** @deprecated */ published service Document {
10460 interface ::com::sun::star::beans::XPropertySet;
10461 [property, readonly] string Name;
10462 [property] string DocumentLocation;
10464 published service ErrorMessageDialog: ::com::sun::star::ui::dialogs::XExecutableDialog {
10465 create([in] string initialTitle, [in] ::com::sun::star::awt::XWindow parentWindow, [in] any sqlException);
10467 /** @deprecated */ published service InteractionHandler: ::com::sun::star::task::XInteractionHandler;
10468 published exception ParametersRequest: ::com::sun::star::task::ClassifiedInteractionRequest {
10469 ::com::sun::star::container::XIndexAccess Parameters;
10470 ::com::sun::star::sdbc::XConnection Connection;
10472 published interface XQueryDefinition {
10473 interface ::com::sun::star::beans::XPropertySet;
10474 interface ::com::sun::star::ucb::XContent;
10475 interface ::com::sun::star::lang::XComponent;
10477 published service Query {
10478 service ::com::sun::star::sdb::DataSettings;
10479 interface ::com::sun::star::sdb::XQueryDefinition;
10480 interface ::com::sun::star::sdbcx::XDataDescriptorFactory;
10481 interface ::com::sun::star::sdbcx::XRename;
10482 interface ::com::sun::star::sdbcx::XColumnsSupplier;
10484 published service QueryDefinition: ::com::sun::star::sdb::XQueryDefinition;
10486 module sdbcx {
10487 published service Descriptor {
10488 interface ::com::sun::star::beans::XPropertySet;
10489 [property] string Name;
10492 module sdb {
10493 published service QueryDescriptor {
10494 service ::com::sun::star::sdbcx::Descriptor;
10495 service ::com::sun::star::sdb::DataSettings;
10496 interface ::com::sun::star::sdbcx::XDataDescriptorFactory;
10497 interface ::com::sun::star::sdbcx::XColumnsSupplier;
10498 [property] string Command;
10499 [property] boolean EscapeProcessing;
10500 [property] string UpdateTableName;
10501 [property] string UpdateCatalogName;
10502 [property] string UpdateSchemaName;
10504 published service QueryDesign {
10505 interface ::com::sun::star::frame::XController;
10506 interface ::com::sun::star::lang::XInitialization;
10507 [property, readonly] string ActiveCommand;
10508 [property, optional, readonly] boolean EscapeProcessing;
10510 published service RelationDesign {
10511 interface ::com::sun::star::frame::XController;
10512 interface ::com::sun::star::lang::XInitialization;
10514 published constants RowChangeAction {
10515 const long DELETE = 3;
10516 const long INSERT = 1;
10517 const long UPDATE = 2;
10519 published exception RowSetVetoException: ::com::sun::star::sdbc::SQLException {
10522 module sdbc {
10523 published exception SQLWarning: ::com::sun::star::sdbc::SQLException {
10526 module sdb {
10527 published exception SQLContext: ::com::sun::star::sdbc::SQLWarning {
10528 string Details;
10530 published struct SQLErrorEvent: ::com::sun::star::lang::EventObject {
10531 any Reason;
10533 published interface XSQLQueryComposer {
10534 interface ::com::sun::star::uno::XInterface;
10535 string getQuery();
10536 void setQuery([in] string command) raises (::com::sun::star::sdbc::SQLException);
10537 string getComposedQuery();
10538 string getFilter();
10539 sequence< sequence< ::com::sun::star::beans::PropertyValue > > getStructuredFilter();
10540 string getOrder();
10541 void appendFilterByColumn([in] ::com::sun::star::beans::XPropertySet column) raises (::com::sun::star::sdbc::SQLException);
10542 void appendOrderByColumn([in] ::com::sun::star::beans::XPropertySet column, [in] boolean ascending) raises (::com::sun::star::sdbc::SQLException);
10543 void setFilter([in] string filter) raises (::com::sun::star::sdbc::SQLException);
10544 void setOrder([in] string order) raises (::com::sun::star::sdbc::SQLException);
10546 published service SQLQueryComposer {
10547 interface ::com::sun::star::sdb::XSQLQueryComposer;
10548 interface ::com::sun::star::sdbcx::XTablesSupplier;
10549 interface ::com::sun::star::sdbcx::XColumnsSupplier;
10552 module sdbcx {
10553 published interface XAlterTable {
10554 interface ::com::sun::star::uno::XInterface;
10555 void alterColumnByName([in] string colName, [in] ::com::sun::star::beans::XPropertySet descriptor) raises (::com::sun::star::sdbc::SQLException, ::com::sun::star::container::NoSuchElementException);
10556 void alterColumnByIndex([in] long index, [in] ::com::sun::star::beans::XPropertySet descriptor) raises (::com::sun::star::sdbc::SQLException, ::com::sun::star::lang::IndexOutOfBoundsException);
10558 published interface XIndexesSupplier {
10559 interface ::com::sun::star::uno::XInterface;
10560 ::com::sun::star::container::XNameAccess getIndexes();
10562 published interface XKeysSupplier {
10563 interface ::com::sun::star::uno::XInterface;
10564 ::com::sun::star::container::XIndexAccess getKeys();
10566 published service Table {
10567 interface ::com::sun::star::sdbcx::XColumnsSupplier;
10568 interface ::com::sun::star::beans::XPropertySet;
10569 [optional] interface ::com::sun::star::sdbcx::XDataDescriptorFactory;
10570 [optional] interface ::com::sun::star::sdbcx::XIndexesSupplier;
10571 [optional] interface ::com::sun::star::sdbcx::XKeysSupplier;
10572 [optional] interface ::com::sun::star::sdbcx::XRename;
10573 [optional] interface ::com::sun::star::sdbcx::XAlterTable;
10574 [property, readonly] string Name;
10575 [property, readonly] string CatalogName;
10576 [property, readonly] string SchemaName;
10577 [property, readonly] string Description;
10578 [property, optional, readonly] string Type;
10581 module sdb {
10582 published service Table {
10583 service ::com::sun::star::sdbcx::Table;
10584 service ::com::sun::star::sdb::DataSettings;
10585 [property, readonly] long Privileges;
10588 module sdbcx {
10589 published service TableDescriptor {
10590 service ::com::sun::star::sdbcx::Descriptor;
10591 interface ::com::sun::star::sdbcx::XColumnsSupplier;
10592 [optional] interface ::com::sun::star::sdbcx::XKeysSupplier;
10593 [property] string CatalogName;
10594 [property] string SchemaName;
10595 [property] string Description;
10598 module sdb {
10599 published service TableDescriptor {
10600 service ::com::sun::star::sdbcx::TableDescriptor;
10601 service ::com::sun::star::sdb::DataSettings;
10603 published service TableDesign {
10604 interface ::com::sun::star::frame::XController;
10605 interface ::com::sun::star::lang::XInitialization;
10607 published interface XAlterQuery {
10608 interface ::com::sun::star::uno::XInterface;
10609 void alterCommand([in] string command, [in] boolean useEscapeProcessing) raises (::com::sun::star::sdbc::SQLException);
10611 /** @deprecated */ published interface XDatabaseAccessListener {
10612 interface ::com::sun::star::lang::XEventListener;
10613 void connectionChanged([in] ::com::sun::star::lang::EventObject event);
10614 boolean approveConnectionClosing([in] ::com::sun::star::lang::EventObject event);
10615 void connectionClosing([in] ::com::sun::star::lang::EventObject event);
10617 published interface XDatabaseRegistrationsListener {
10618 interface ::com::sun::star::lang::XEventListener;
10619 void registeredDatabaseLocation([in] ::com::sun::star::sdb::DatabaseRegistrationEvent Event);
10620 void revokedDatabaseLocation([in] ::com::sun::star::sdb::DatabaseRegistrationEvent Event);
10621 void changedDatabaseLocation([in] ::com::sun::star::sdb::DatabaseRegistrationEvent Event);
10623 published interface XInteractionSupplyParameters {
10624 interface ::com::sun::star::task::XInteractionContinuation;
10625 void setParameters([in] sequence< ::com::sun::star::beans::PropertyValue > Values);
10627 published interface XRowSetApproveListener {
10628 interface ::com::sun::star::lang::XEventListener;
10629 boolean approveCursorMove([in] ::com::sun::star::lang::EventObject event);
10630 boolean approveRowChange([in] ::com::sun::star::sdb::RowChangeEvent event);
10631 boolean approveRowSetChange([in] ::com::sun::star::lang::EventObject event);
10633 published interface XRowSetSupplier {
10634 interface ::com::sun::star::uno::XInterface;
10635 ::com::sun::star::sdbc::XRowSet getRowSet();
10636 void setRowSet([in] ::com::sun::star::sdbc::XRowSet xDataSource);
10638 published interface XSQLErrorListener {
10639 interface ::com::sun::star::lang::XEventListener;
10640 void errorOccured([in] ::com::sun::star::sdb::SQLErrorEvent aEvent);
10643 module sdbc {
10644 published exception BatchUpdateException: ::com::sun::star::sdbc::SQLException {
10645 sequence< long > UpdateCounts;
10647 published constants BestRowScope {
10648 const long SESSION = 2;
10649 const long TEMPORARY = 0;
10650 const long TRANSACTION = 1;
10652 published constants BestRowType {
10653 const long NOT_PSEUDO = 1;
10654 const long PSEUDO = 2;
10655 const long UNKNOWN = 0;
10657 /** @deprecated */ published constants ChangeAction {
10658 const long DELETE = 3;
10659 const long INSERT = 1;
10660 const long UNDO = 4;
10661 const long UPDATE = 2;
10663 /** @deprecated */ published struct ChangeEvent: ::com::sun::star::lang::EventObject {
10664 long Action;
10665 long Rows;
10667 published constants ColumnSearch {
10668 const long BASIC = 2;
10669 const long CHAR = 1;
10670 const long FULL = 3;
10671 const long NONE = 0;
10673 published constants ColumnType {
10674 const long NOT_PSEUDO = 1;
10675 const long PSEUDO = 2;
10676 const long UNKNOWN = 0;
10678 published constants ColumnValue {
10679 const long NO_NULLS = 0;
10680 const long NULLABLE = 1;
10681 const long NULLABLE_UNKNOWN = 2;
10683 published interface XDriver;
10684 published interface XDriverAccess {
10685 interface ::com::sun::star::uno::XInterface;
10686 ::com::sun::star::sdbc::XDriver getDriverByURL([in] string url);
10688 published interface XConnectionPool {
10689 interface ::com::sun::star::sdbc::XDriverManager;
10690 interface ::com::sun::star::sdbc::XDriverAccess;
10692 published service ConnectionPool: ::com::sun::star::sdbc::XConnectionPool;
10693 published service ConnectionProperties {
10694 [property, optional] string user;
10695 [property, optional] string password;
10697 published exception DataTruncation: ::com::sun::star::sdbc::SQLWarning {
10698 long Index;
10699 boolean IsParameter;
10700 boolean DuringRead;
10701 long DataSize;
10702 long TransferSize;
10704 published constants DataType {
10705 const long ARRAY = 2003;
10706 const long BIGINT = -5;
10707 const long BINARY = -2;
10708 const long BIT = -7;
10709 const long BLOB = 2004;
10710 const long BOOLEAN = 16;
10711 const long CHAR = 1;
10712 const long CLOB = 2005;
10713 const long DATE = 91;
10714 const long DECIMAL = 3;
10715 const long DISTINCT = 2001;
10716 const long DOUBLE = 8;
10717 const long FLOAT = 6;
10718 const long INTEGER = 4;
10719 const long LONGVARBINARY = -4;
10720 const long LONGVARCHAR = -1;
10721 const long NUMERIC = 2;
10722 const long OBJECT = 2000;
10723 const long OTHER = 1111;
10724 const long REAL = 7;
10725 const long REF = 2006;
10726 const long SMALLINT = 5;
10727 const long SQLNULL = 0;
10728 const long STRUCT = 2002;
10729 const long TIME = 92;
10730 const long TIMESTAMP = 93;
10731 const long TINYINT = -6;
10732 const long VARBINARY = -3;
10733 const long VARCHAR = 12;
10735 published constants Deferrability {
10736 const long INITIALLY_DEFERRED = 5;
10737 const long INITIALLY_IMMEDIATE = 6;
10738 const long NONE = 7;
10740 published struct DriverPropertyInfo {
10741 string Name;
10742 string Description;
10743 boolean IsRequired;
10744 string Value;
10745 sequence< string > Choices;
10747 published interface XDriver {
10748 interface ::com::sun::star::uno::XInterface;
10749 ::com::sun::star::sdbc::XConnection connect([in] string url, [in] sequence< ::com::sun::star::beans::PropertyValue > info) raises (::com::sun::star::sdbc::SQLException);
10750 boolean acceptsURL([in] string url) raises (::com::sun::star::sdbc::SQLException);
10751 sequence< ::com::sun::star::sdbc::DriverPropertyInfo > getPropertyInfo([in] string url, [in] sequence< ::com::sun::star::beans::PropertyValue > info) raises (::com::sun::star::sdbc::SQLException);
10752 long getMajorVersion();
10753 long getMinorVersion();
10755 published service Driver {
10756 interface ::com::sun::star::sdbc::XDriver;
10758 published interface XDriverManager2 {
10759 interface ::com::sun::star::sdbc::XDriverManager;
10760 interface ::com::sun::star::sdbc::XDriverAccess;
10761 interface ::com::sun::star::container::XEnumerationAccess;
10763 published service DriverManager: ::com::sun::star::sdbc::XDriverManager2;
10764 published constants FetchDirection {
10765 const long FORWARD = 1000;
10766 const long REVERSE = 1001;
10767 const long UNKNOWN = 1002;
10769 published constants IndexType {
10770 const short CLUSTERED = 1;
10771 const short HASHED = 2;
10772 const short OTHER = 3;
10773 const short STATISTIC = 0;
10775 published constants KeyRule {
10776 const long CASCADE = 0;
10777 const long NO_ACTION = 3;
10778 const long RESTRICT = 1;
10779 const long SET_DEFAULT = 4;
10780 const long SET_NULL = 2;
10782 published constants ProcedureColumn {
10783 const long IN = 1;
10784 const long INOUT = 2;
10785 const long OUT = 4;
10786 const long RESULT = 3;
10787 const long RETURN = 5;
10788 const long UNKNOWN = 0;
10790 published constants ProcedureResult {
10791 const long NONE = 1;
10792 const long RETURN = 2;
10793 const long UNKNOWN = 0;
10795 published constants ResultSetConcurrency {
10796 const long READ_ONLY = 1007;
10797 const long UPDATABLE = 1008;
10799 published constants ResultSetType {
10800 const long FORWARD_ONLY = 1003;
10801 const long SCROLL_INSENSITIVE = 1004;
10802 const long SCROLL_SENSITIVE = 1005;
10804 published interface XBatchExecution {
10805 interface ::com::sun::star::uno::XInterface;
10806 void addBatch([in] string sql) raises (::com::sun::star::sdbc::SQLException);
10807 void clearBatch() raises (::com::sun::star::sdbc::SQLException);
10808 sequence< long > executeBatch() raises (::com::sun::star::sdbc::SQLException);
10810 published interface XStatement {
10811 interface ::com::sun::star::uno::XInterface;
10812 ::com::sun::star::sdbc::XResultSet executeQuery([in] string sql) raises (::com::sun::star::sdbc::SQLException);
10813 long executeUpdate([in] string sql) raises (::com::sun::star::sdbc::SQLException);
10814 boolean execute([in] string sql) raises (::com::sun::star::sdbc::SQLException);
10815 ::com::sun::star::sdbc::XConnection getConnection() raises (::com::sun::star::sdbc::SQLException);
10817 published service Statement {
10818 interface ::com::sun::star::sdbc::XCloseable;
10819 interface ::com::sun::star::beans::XPropertySet;
10820 interface ::com::sun::star::sdbc::XStatement;
10821 interface ::com::sun::star::sdbc::XWarningsSupplier;
10822 [optional] interface ::com::sun::star::lang::XComponent;
10823 [optional] interface ::com::sun::star::util::XCancellable;
10824 [optional] interface ::com::sun::star::sdbc::XBatchExecution;
10825 [optional] interface ::com::sun::star::sdbc::XMultipleResults;
10826 [property] long QueryTimeOut;
10827 [property] long MaxFieldSize;
10828 [property] long MaxRows;
10829 [property] string CursorName;
10830 [property] long ResultSetConcurrency;
10831 [property] long ResultSetType;
10832 [property] long FetchDirection;
10833 [property] long FetchSize;
10834 [property] boolean EscapeProcessing;
10836 published constants TransactionIsolation {
10837 const long NONE = 0;
10838 const long READ_COMMITTED = 2;
10839 const long READ_UNCOMMITTED = 1;
10840 const long REPEATABLE_READ = 4;
10841 const long SERIALIZABLE = 8;
10843 published interface XArray {
10844 interface ::com::sun::star::uno::XInterface;
10845 string getBaseTypeName() raises (::com::sun::star::sdbc::SQLException);
10846 long getBaseType() raises (::com::sun::star::sdbc::SQLException);
10847 sequence< any > getArray([in] ::com::sun::star::container::XNameAccess typeMap) raises (::com::sun::star::sdbc::SQLException);
10848 sequence< any > getArrayAtIndex([in] long index, [in] long count, [in] ::com::sun::star::container::XNameAccess typeMap) raises (::com::sun::star::sdbc::SQLException);
10849 ::com::sun::star::sdbc::XResultSet getResultSet([in] ::com::sun::star::container::XNameAccess typeMap) raises (::com::sun::star::sdbc::SQLException);
10850 ::com::sun::star::sdbc::XResultSet getResultSetAtIndex([in] long index, [in] long count, [in] ::com::sun::star::container::XNameAccess typeMap) raises (::com::sun::star::sdbc::SQLException);
10852 published interface XBlob {
10853 interface ::com::sun::star::uno::XInterface;
10854 hyper length() raises (::com::sun::star::sdbc::SQLException);
10855 sequence< byte > getBytes([in] hyper pos, [in] long length) raises (::com::sun::star::sdbc::SQLException);
10856 ::com::sun::star::io::XInputStream getBinaryStream() raises (::com::sun::star::sdbc::SQLException);
10857 hyper position([in] sequence< byte > pattern, [in] hyper start) raises (::com::sun::star::sdbc::SQLException);
10858 hyper positionOfBlob([in] ::com::sun::star::sdbc::XBlob pattern, [in] hyper start) raises (::com::sun::star::sdbc::SQLException);
10860 published interface XClob {
10861 interface ::com::sun::star::uno::XInterface;
10862 hyper length() raises (::com::sun::star::sdbc::SQLException);
10863 string getSubString([in] hyper pos, [in] long length) raises (::com::sun::star::sdbc::SQLException);
10864 ::com::sun::star::io::XInputStream getCharacterStream() raises (::com::sun::star::sdbc::SQLException);
10865 hyper position([in] string searchstr, [in] long start) raises (::com::sun::star::sdbc::SQLException);
10866 hyper positionOfClob([in] ::com::sun::star::sdbc::XClob pattern, [in] hyper start) raises (::com::sun::star::sdbc::SQLException);
10868 published interface XDatabaseMetaData {
10869 interface ::com::sun::star::uno::XInterface;
10870 boolean allProceduresAreCallable() raises (::com::sun::star::sdbc::SQLException);
10871 boolean allTablesAreSelectable() raises (::com::sun::star::sdbc::SQLException);
10872 string getURL() raises (::com::sun::star::sdbc::SQLException);
10873 string getUserName() raises (::com::sun::star::sdbc::SQLException);
10874 boolean isReadOnly() raises (::com::sun::star::sdbc::SQLException);
10875 boolean nullsAreSortedHigh() raises (::com::sun::star::sdbc::SQLException);
10876 boolean nullsAreSortedLow() raises (::com::sun::star::sdbc::SQLException);
10877 boolean nullsAreSortedAtStart() raises (::com::sun::star::sdbc::SQLException);
10878 boolean nullsAreSortedAtEnd() raises (::com::sun::star::sdbc::SQLException);
10879 string getDatabaseProductName() raises (::com::sun::star::sdbc::SQLException);
10880 string getDatabaseProductVersion() raises (::com::sun::star::sdbc::SQLException);
10881 string getDriverName() raises (::com::sun::star::sdbc::SQLException);
10882 string getDriverVersion() raises (::com::sun::star::sdbc::SQLException);
10883 long getDriverMajorVersion();
10884 long getDriverMinorVersion();
10885 boolean usesLocalFiles() raises (::com::sun::star::sdbc::SQLException);
10886 boolean usesLocalFilePerTable() raises (::com::sun::star::sdbc::SQLException);
10887 boolean supportsMixedCaseIdentifiers() raises (::com::sun::star::sdbc::SQLException);
10888 boolean storesUpperCaseIdentifiers() raises (::com::sun::star::sdbc::SQLException);
10889 boolean storesLowerCaseIdentifiers() raises (::com::sun::star::sdbc::SQLException);
10890 boolean storesMixedCaseIdentifiers() raises (::com::sun::star::sdbc::SQLException);
10891 boolean supportsMixedCaseQuotedIdentifiers() raises (::com::sun::star::sdbc::SQLException);
10892 boolean storesUpperCaseQuotedIdentifiers() raises (::com::sun::star::sdbc::SQLException);
10893 boolean storesLowerCaseQuotedIdentifiers() raises (::com::sun::star::sdbc::SQLException);
10894 boolean storesMixedCaseQuotedIdentifiers() raises (::com::sun::star::sdbc::SQLException);
10895 string getIdentifierQuoteString() raises (::com::sun::star::sdbc::SQLException);
10896 string getSQLKeywords() raises (::com::sun::star::sdbc::SQLException);
10897 string getNumericFunctions() raises (::com::sun::star::sdbc::SQLException);
10898 string getStringFunctions() raises (::com::sun::star::sdbc::SQLException);
10899 string getSystemFunctions() raises (::com::sun::star::sdbc::SQLException);
10900 string getTimeDateFunctions() raises (::com::sun::star::sdbc::SQLException);
10901 string getSearchStringEscape() raises (::com::sun::star::sdbc::SQLException);
10902 string getExtraNameCharacters() raises (::com::sun::star::sdbc::SQLException);
10903 boolean supportsAlterTableWithAddColumn() raises (::com::sun::star::sdbc::SQLException);
10904 boolean supportsAlterTableWithDropColumn() raises (::com::sun::star::sdbc::SQLException);
10905 boolean supportsColumnAliasing() raises (::com::sun::star::sdbc::SQLException);
10906 boolean nullPlusNonNullIsNull() raises (::com::sun::star::sdbc::SQLException);
10907 boolean supportsTypeConversion() raises (::com::sun::star::sdbc::SQLException);
10908 boolean supportsConvert([in] long fromType, [in] long toType) raises (::com::sun::star::sdbc::SQLException);
10909 boolean supportsTableCorrelationNames() raises (::com::sun::star::sdbc::SQLException);
10910 boolean supportsDifferentTableCorrelationNames() raises (::com::sun::star::sdbc::SQLException);
10911 boolean supportsExpressionsInOrderBy() raises (::com::sun::star::sdbc::SQLException);
10912 boolean supportsOrderByUnrelated() raises (::com::sun::star::sdbc::SQLException);
10913 boolean supportsGroupBy() raises (::com::sun::star::sdbc::SQLException);
10914 boolean supportsGroupByUnrelated() raises (::com::sun::star::sdbc::SQLException);
10915 boolean supportsGroupByBeyondSelect() raises (::com::sun::star::sdbc::SQLException);
10916 boolean supportsLikeEscapeClause() raises (::com::sun::star::sdbc::SQLException);
10917 boolean supportsMultipleResultSets() raises (::com::sun::star::sdbc::SQLException);
10918 boolean supportsMultipleTransactions() raises (::com::sun::star::sdbc::SQLException);
10919 boolean supportsNonNullableColumns() raises (::com::sun::star::sdbc::SQLException);
10920 boolean supportsMinimumSQLGrammar() raises (::com::sun::star::sdbc::SQLException);
10921 boolean supportsCoreSQLGrammar() raises (::com::sun::star::sdbc::SQLException);
10922 boolean supportsExtendedSQLGrammar() raises (::com::sun::star::sdbc::SQLException);
10923 boolean supportsANSI92EntryLevelSQL() raises (::com::sun::star::sdbc::SQLException);
10924 boolean supportsANSI92IntermediateSQL() raises (::com::sun::star::sdbc::SQLException);
10925 boolean supportsANSI92FullSQL() raises (::com::sun::star::sdbc::SQLException);
10926 boolean supportsIntegrityEnhancementFacility() raises (::com::sun::star::sdbc::SQLException);
10927 boolean supportsOuterJoins() raises (::com::sun::star::sdbc::SQLException);
10928 boolean supportsFullOuterJoins() raises (::com::sun::star::sdbc::SQLException);
10929 boolean supportsLimitedOuterJoins() raises (::com::sun::star::sdbc::SQLException);
10930 string getSchemaTerm() raises (::com::sun::star::sdbc::SQLException);
10931 string getProcedureTerm() raises (::com::sun::star::sdbc::SQLException);
10932 string getCatalogTerm() raises (::com::sun::star::sdbc::SQLException);
10933 boolean isCatalogAtStart() raises (::com::sun::star::sdbc::SQLException);
10934 string getCatalogSeparator() raises (::com::sun::star::sdbc::SQLException);
10935 boolean supportsSchemasInDataManipulation() raises (::com::sun::star::sdbc::SQLException);
10936 boolean supportsSchemasInProcedureCalls() raises (::com::sun::star::sdbc::SQLException);
10937 boolean supportsSchemasInTableDefinitions() raises (::com::sun::star::sdbc::SQLException);
10938 boolean supportsSchemasInIndexDefinitions() raises (::com::sun::star::sdbc::SQLException);
10939 boolean supportsSchemasInPrivilegeDefinitions() raises (::com::sun::star::sdbc::SQLException);
10940 boolean supportsCatalogsInDataManipulation() raises (::com::sun::star::sdbc::SQLException);
10941 boolean supportsCatalogsInProcedureCalls() raises (::com::sun::star::sdbc::SQLException);
10942 boolean supportsCatalogsInTableDefinitions() raises (::com::sun::star::sdbc::SQLException);
10943 boolean supportsCatalogsInIndexDefinitions() raises (::com::sun::star::sdbc::SQLException);
10944 boolean supportsCatalogsInPrivilegeDefinitions() raises (::com::sun::star::sdbc::SQLException);
10945 boolean supportsPositionedDelete() raises (::com::sun::star::sdbc::SQLException);
10946 boolean supportsPositionedUpdate() raises (::com::sun::star::sdbc::SQLException);
10947 boolean supportsSelectForUpdate() raises (::com::sun::star::sdbc::SQLException);
10948 boolean supportsStoredProcedures() raises (::com::sun::star::sdbc::SQLException);
10949 boolean supportsSubqueriesInComparisons() raises (::com::sun::star::sdbc::SQLException);
10950 boolean supportsSubqueriesInExists() raises (::com::sun::star::sdbc::SQLException);
10951 boolean supportsSubqueriesInIns() raises (::com::sun::star::sdbc::SQLException);
10952 boolean supportsSubqueriesInQuantifieds() raises (::com::sun::star::sdbc::SQLException);
10953 boolean supportsCorrelatedSubqueries() raises (::com::sun::star::sdbc::SQLException);
10954 boolean supportsUnion() raises (::com::sun::star::sdbc::SQLException);
10955 boolean supportsUnionAll() raises (::com::sun::star::sdbc::SQLException);
10956 boolean supportsOpenCursorsAcrossCommit() raises (::com::sun::star::sdbc::SQLException);
10957 boolean supportsOpenCursorsAcrossRollback() raises (::com::sun::star::sdbc::SQLException);
10958 boolean supportsOpenStatementsAcrossCommit() raises (::com::sun::star::sdbc::SQLException);
10959 boolean supportsOpenStatementsAcrossRollback() raises (::com::sun::star::sdbc::SQLException);
10960 long getMaxBinaryLiteralLength() raises (::com::sun::star::sdbc::SQLException);
10961 long getMaxCharLiteralLength() raises (::com::sun::star::sdbc::SQLException);
10962 long getMaxColumnNameLength() raises (::com::sun::star::sdbc::SQLException);
10963 long getMaxColumnsInGroupBy() raises (::com::sun::star::sdbc::SQLException);
10964 long getMaxColumnsInIndex() raises (::com::sun::star::sdbc::SQLException);
10965 long getMaxColumnsInOrderBy() raises (::com::sun::star::sdbc::SQLException);
10966 long getMaxColumnsInSelect() raises (::com::sun::star::sdbc::SQLException);
10967 long getMaxColumnsInTable() raises (::com::sun::star::sdbc::SQLException);
10968 long getMaxConnections() raises (::com::sun::star::sdbc::SQLException);
10969 long getMaxCursorNameLength() raises (::com::sun::star::sdbc::SQLException);
10970 long getMaxIndexLength() raises (::com::sun::star::sdbc::SQLException);
10971 long getMaxSchemaNameLength() raises (::com::sun::star::sdbc::SQLException);
10972 long getMaxProcedureNameLength() raises (::com::sun::star::sdbc::SQLException);
10973 long getMaxCatalogNameLength() raises (::com::sun::star::sdbc::SQLException);
10974 long getMaxRowSize() raises (::com::sun::star::sdbc::SQLException);
10975 boolean doesMaxRowSizeIncludeBlobs() raises (::com::sun::star::sdbc::SQLException);
10976 long getMaxStatementLength() raises (::com::sun::star::sdbc::SQLException);
10977 long getMaxStatements() raises (::com::sun::star::sdbc::SQLException);
10978 long getMaxTableNameLength() raises (::com::sun::star::sdbc::SQLException);
10979 long getMaxTablesInSelect() raises (::com::sun::star::sdbc::SQLException);
10980 long getMaxUserNameLength() raises (::com::sun::star::sdbc::SQLException);
10981 long getDefaultTransactionIsolation() raises (::com::sun::star::sdbc::SQLException);
10982 boolean supportsTransactions() raises (::com::sun::star::sdbc::SQLException);
10983 boolean supportsTransactionIsolationLevel([in] long level) raises (::com::sun::star::sdbc::SQLException);
10984 boolean supportsDataDefinitionAndDataManipulationTransactions() raises (::com::sun::star::sdbc::SQLException);
10985 boolean supportsDataManipulationTransactionsOnly() raises (::com::sun::star::sdbc::SQLException);
10986 boolean dataDefinitionCausesTransactionCommit() raises (::com::sun::star::sdbc::SQLException);
10987 boolean dataDefinitionIgnoredInTransactions() raises (::com::sun::star::sdbc::SQLException);
10988 ::com::sun::star::sdbc::XResultSet getProcedures([in] any catalog, [in] string schemaPattern, [in] string procedureNamePattern) raises (::com::sun::star::sdbc::SQLException);
10989 ::com::sun::star::sdbc::XResultSet getProcedureColumns([in] any catalog, [in] string schemaPattern, [in] string procedureNamePattern, [in] string columnNamePattern) raises (::com::sun::star::sdbc::SQLException);
10990 ::com::sun::star::sdbc::XResultSet getTables([in] any catalog, [in] string schemaPattern, [in] string tableNamePattern, [in] sequence< string > types) raises (::com::sun::star::sdbc::SQLException);
10991 ::com::sun::star::sdbc::XResultSet getSchemas() raises (::com::sun::star::sdbc::SQLException);
10992 ::com::sun::star::sdbc::XResultSet getCatalogs() raises (::com::sun::star::sdbc::SQLException);
10993 ::com::sun::star::sdbc::XResultSet getTableTypes() raises (::com::sun::star::sdbc::SQLException);
10994 ::com::sun::star::sdbc::XResultSet getColumns([in] any catalog, [in] string schemaPattern, [in] string tableNamePattern, [in] string columnNamePattern) raises (::com::sun::star::sdbc::SQLException);
10995 ::com::sun::star::sdbc::XResultSet getColumnPrivileges([in] any catalog, [in] string schema, [in] string table, [in] string columnNamePattern) raises (::com::sun::star::sdbc::SQLException);
10996 ::com::sun::star::sdbc::XResultSet getTablePrivileges([in] any catalog, [in] string schemaPattern, [in] string tableNamePattern) raises (::com::sun::star::sdbc::SQLException);
10997 ::com::sun::star::sdbc::XResultSet getBestRowIdentifier([in] any catalog, [in] string schema, [in] string table, [in] long scope, [in] boolean nullable) raises (::com::sun::star::sdbc::SQLException);
10998 ::com::sun::star::sdbc::XResultSet getVersionColumns([in] any catalog, [in] string schema, [in] string table) raises (::com::sun::star::sdbc::SQLException);
10999 ::com::sun::star::sdbc::XResultSet getPrimaryKeys([in] any catalog, [in] string schema, [in] string table) raises (::com::sun::star::sdbc::SQLException);
11000 ::com::sun::star::sdbc::XResultSet getImportedKeys([in] any catalog, [in] string schema, [in] string table) raises (::com::sun::star::sdbc::SQLException);
11001 ::com::sun::star::sdbc::XResultSet getExportedKeys([in] any catalog, [in] string schema, [in] string table) raises (::com::sun::star::sdbc::SQLException);
11002 ::com::sun::star::sdbc::XResultSet getCrossReference([in] any primaryCatalog, [in] string primarySchema, [in] string primaryTable, [in] any foreignCatalog, [in] string foreignSchema, [in] string foreignTable) raises (::com::sun::star::sdbc::SQLException);
11003 ::com::sun::star::sdbc::XResultSet getTypeInfo() raises (::com::sun::star::sdbc::SQLException);
11004 ::com::sun::star::sdbc::XResultSet getIndexInfo([in] any catalog, [in] string schema, [in] string table, [in] boolean unique, [in] boolean approximate) raises (::com::sun::star::sdbc::SQLException);
11005 boolean supportsResultSetType([in] long setType) raises (::com::sun::star::sdbc::SQLException);
11006 boolean supportsResultSetConcurrency([in] long setType, [in] long concurrency) raises (::com::sun::star::sdbc::SQLException);
11007 boolean ownUpdatesAreVisible([in] long setType) raises (::com::sun::star::sdbc::SQLException);
11008 boolean ownDeletesAreVisible([in] long setType) raises (::com::sun::star::sdbc::SQLException);
11009 boolean ownInsertsAreVisible([in] long setType) raises (::com::sun::star::sdbc::SQLException);
11010 boolean othersUpdatesAreVisible([in] long setType) raises (::com::sun::star::sdbc::SQLException);
11011 boolean othersDeletesAreVisible([in] long setType) raises (::com::sun::star::sdbc::SQLException);
11012 boolean othersInsertsAreVisible([in] long setType) raises (::com::sun::star::sdbc::SQLException);
11013 boolean updatesAreDetected([in] long setType) raises (::com::sun::star::sdbc::SQLException);
11014 boolean deletesAreDetected([in] long setType) raises (::com::sun::star::sdbc::SQLException);
11015 boolean insertsAreDetected([in] long setType) raises (::com::sun::star::sdbc::SQLException);
11016 boolean supportsBatchUpdates() raises (::com::sun::star::sdbc::SQLException);
11017 ::com::sun::star::sdbc::XResultSet getUDTs([in] any catalog, [in] string schemaPattern, [in] string typeNamePattern, [in] sequence< long > types) raises (::com::sun::star::sdbc::SQLException);
11018 ::com::sun::star::sdbc::XConnection getConnection() raises (::com::sun::star::sdbc::SQLException);
11020 published interface XGeneratedResultSet {
11021 interface ::com::sun::star::uno::XInterface;
11022 ::com::sun::star::sdbc::XResultSet getGeneratedValues() raises (::com::sun::star::sdbc::SQLException);
11024 published interface XPooledConnection {
11025 interface ::com::sun::star::uno::XInterface;
11026 ::com::sun::star::sdbc::XConnection getConnection() raises (::com::sun::star::sdbc::SQLException);
11028 published interface XRef {
11029 interface ::com::sun::star::uno::XInterface;
11030 string getBaseTypeName() raises (::com::sun::star::sdbc::SQLException);
11032 published interface XResultSetMetaData {
11033 interface ::com::sun::star::uno::XInterface;
11034 long getColumnCount() raises (::com::sun::star::sdbc::SQLException);
11035 boolean isAutoIncrement([in] long column) raises (::com::sun::star::sdbc::SQLException);
11036 boolean isCaseSensitive([in] long column) raises (::com::sun::star::sdbc::SQLException);
11037 boolean isSearchable([in] long column) raises (::com::sun::star::sdbc::SQLException);
11038 boolean isCurrency([in] long column) raises (::com::sun::star::sdbc::SQLException);
11039 long isNullable([in] long column) raises (::com::sun::star::sdbc::SQLException);
11040 boolean isSigned([in] long column) raises (::com::sun::star::sdbc::SQLException);
11041 long getColumnDisplaySize([in] long column) raises (::com::sun::star::sdbc::SQLException);
11042 string getColumnLabel([in] long column) raises (::com::sun::star::sdbc::SQLException);
11043 string getColumnName([in] long column) raises (::com::sun::star::sdbc::SQLException);
11044 string getSchemaName([in] long column) raises (::com::sun::star::sdbc::SQLException);
11045 long getPrecision([in] long column) raises (::com::sun::star::sdbc::SQLException);
11046 long getScale([in] long column) raises (::com::sun::star::sdbc::SQLException);
11047 string getTableName([in] long column) raises (::com::sun::star::sdbc::SQLException);
11048 string getCatalogName([in] long column) raises (::com::sun::star::sdbc::SQLException);
11049 long getColumnType([in] long column) raises (::com::sun::star::sdbc::SQLException);
11050 string getColumnTypeName([in] long column) raises (::com::sun::star::sdbc::SQLException);
11051 boolean isReadOnly([in] long column) raises (::com::sun::star::sdbc::SQLException);
11052 boolean isWritable([in] long column) raises (::com::sun::star::sdbc::SQLException);
11053 boolean isDefinitelyWritable([in] long column) raises (::com::sun::star::sdbc::SQLException);
11054 string getColumnServiceName([in] long column) raises (::com::sun::star::sdbc::SQLException);
11056 published interface XRowSetListener {
11057 interface ::com::sun::star::lang::XEventListener;
11058 void cursorMoved([in] ::com::sun::star::lang::EventObject event);
11059 /** @deprecated */ void rowChanged([in] ::com::sun::star::lang::EventObject event);
11060 void rowSetChanged([in] ::com::sun::star::lang::EventObject event);
11062 published interface XSQLInput;
11063 published interface XSQLOutput;
11064 published interface XSQLData {
11065 interface ::com::sun::star::uno::XInterface;
11066 string getSQLTypeName() raises (::com::sun::star::sdbc::SQLException);
11067 void readSQL([in] ::com::sun::star::sdbc::XSQLInput stream, [in] string typeName) raises (::com::sun::star::sdbc::SQLException);
11068 void writeSQL([in] ::com::sun::star::sdbc::XSQLOutput stream) raises (::com::sun::star::sdbc::SQLException);
11070 published interface XSQLInput {
11071 interface ::com::sun::star::uno::XInterface;
11072 string readString() raises (::com::sun::star::sdbc::SQLException);
11073 boolean readBoolean() raises (::com::sun::star::sdbc::SQLException);
11074 byte readByte() raises (::com::sun::star::sdbc::SQLException);
11075 short readShort() raises (::com::sun::star::sdbc::SQLException);
11076 long readInt() raises (::com::sun::star::sdbc::SQLException);
11077 hyper readLong() raises (::com::sun::star::sdbc::SQLException);
11078 float readFloat() raises (::com::sun::star::sdbc::SQLException);
11079 double readDouble() raises (::com::sun::star::sdbc::SQLException);
11080 sequence< byte > readBytes() raises (::com::sun::star::sdbc::SQLException);
11081 ::com::sun::star::util::Date readDate() raises (::com::sun::star::sdbc::SQLException);
11082 ::com::sun::star::util::Time readTime() raises (::com::sun::star::sdbc::SQLException);
11083 ::com::sun::star::util::DateTime readTimestamp() raises (::com::sun::star::sdbc::SQLException);
11084 ::com::sun::star::io::XInputStream readBinaryStream() raises (::com::sun::star::sdbc::SQLException);
11085 ::com::sun::star::io::XInputStream readCharacterStream() raises (::com::sun::star::sdbc::SQLException);
11086 any readObject() raises (::com::sun::star::sdbc::SQLException);
11087 ::com::sun::star::sdbc::XRef readRef() raises (::com::sun::star::sdbc::SQLException);
11088 ::com::sun::star::sdbc::XBlob readBlob() raises (::com::sun::star::sdbc::SQLException);
11089 ::com::sun::star::sdbc::XClob readClob() raises (::com::sun::star::sdbc::SQLException);
11090 ::com::sun::star::sdbc::XArray readArray() raises (::com::sun::star::sdbc::SQLException);
11091 boolean wasNull() raises (::com::sun::star::sdbc::SQLException);
11093 published interface XStruct;
11094 published interface XSQLOutput {
11095 interface ::com::sun::star::uno::XInterface;
11096 void writeString([in] string x) raises (::com::sun::star::sdbc::SQLException);
11097 void writeBoolean([in] boolean x) raises (::com::sun::star::sdbc::SQLException);
11098 void writeByte([in] byte x) raises (::com::sun::star::sdbc::SQLException);
11099 void writeShort([in] short x) raises (::com::sun::star::sdbc::SQLException);
11100 void writeInt([in] long x) raises (::com::sun::star::sdbc::SQLException);
11101 void writeLong([in] hyper x) raises (::com::sun::star::sdbc::SQLException);
11102 void writeFloat([in] float x) raises (::com::sun::star::sdbc::SQLException);
11103 void writeDouble([in] double x) raises (::com::sun::star::sdbc::SQLException);
11104 void writeBytes([in] sequence< byte > x) raises (::com::sun::star::sdbc::SQLException);
11105 void writeDate([in] ::com::sun::star::util::Date x) raises (::com::sun::star::sdbc::SQLException);
11106 void writeTime([in] ::com::sun::star::util::Time x) raises (::com::sun::star::sdbc::SQLException);
11107 void writeTimestamp([in] ::com::sun::star::util::DateTime x) raises (::com::sun::star::sdbc::SQLException);
11108 void writeBinaryStream([in] ::com::sun::star::io::XInputStream x) raises (::com::sun::star::sdbc::SQLException);
11109 void writeCharacterStream([in] ::com::sun::star::io::XInputStream x) raises (::com::sun::star::sdbc::SQLException);
11110 void writeObject([in] ::com::sun::star::sdbc::XSQLData x) raises (::com::sun::star::sdbc::SQLException);
11111 void writeRef([in] ::com::sun::star::sdbc::XRef x) raises (::com::sun::star::sdbc::SQLException);
11112 void writeBlob([in] ::com::sun::star::sdbc::XBlob x) raises (::com::sun::star::sdbc::SQLException);
11113 void writeClob([in] ::com::sun::star::sdbc::XClob x) raises (::com::sun::star::sdbc::SQLException);
11114 void writeStruct([in] ::com::sun::star::sdbc::XStruct x) raises (::com::sun::star::sdbc::SQLException);
11115 void writeArray([in] ::com::sun::star::sdbc::XArray x) raises (::com::sun::star::sdbc::SQLException);
11117 published interface XStruct {
11118 interface ::com::sun::star::uno::XInterface;
11119 string getSQLTypeName() raises (::com::sun::star::sdbc::SQLException);
11120 sequence< any > getAttributes([in] ::com::sun::star::container::XNameAccess typeMap) raises (::com::sun::star::sdbc::SQLException);
11123 module sdbcx {
11124 published constants CheckOption {
11125 const long CASCADE = 2;
11126 const long LOCAL = 3;
11127 const long NONE = 0;
11129 published service ColumnDescriptor {
11130 service ::com::sun::star::sdbcx::Descriptor;
11131 [property] long Type;
11132 [property] string TypeName;
11133 [property] long Precision;
11134 [property] long Scale;
11135 [property] long IsNullable;
11136 [property] boolean IsAutoIncrement;
11137 [property, optional] boolean IsRowVersion;
11138 [property, optional] string Description;
11139 [property, optional] string DefaultValue;
11140 [property, optional] string AutoIncrementCreation;
11142 published constants CompareBookmark {
11143 const long EQUAL = 0;
11144 const long GREATER = 1;
11145 const long LESS = -1;
11146 const long NOT_COMPARABLE = 3;
11147 const long NOT_EQUAL = 2;
11149 published interface XAppend {
11150 interface ::com::sun::star::uno::XInterface;
11151 void appendByDescriptor([in] ::com::sun::star::beans::XPropertySet descriptor) raises (::com::sun::star::sdbc::SQLException, ::com::sun::star::container::ElementExistException);
11153 published interface XDrop {
11154 interface ::com::sun::star::uno::XInterface;
11155 void dropByName([in] string elementName) raises (::com::sun::star::sdbc::SQLException, ::com::sun::star::container::NoSuchElementException);
11156 void dropByIndex([in] long index) raises (::com::sun::star::sdbc::SQLException, ::com::sun::star::lang::IndexOutOfBoundsException);
11158 published service Container {
11159 interface ::com::sun::star::container::XNameAccess;
11160 interface ::com::sun::star::container::XIndexAccess;
11161 interface ::com::sun::star::container::XEnumerationAccess;
11162 [optional] interface ::com::sun::star::util::XRefreshable;
11163 [optional] interface ::com::sun::star::sdbcx::XDataDescriptorFactory;
11164 [optional] interface ::com::sun::star::sdbcx::XAppend;
11165 [optional] interface ::com::sun::star::sdbcx::XDrop;
11167 published interface XCreateCatalog {
11168 interface ::com::sun::star::uno::XInterface;
11169 void createCatalog([in] sequence< ::com::sun::star::beans::PropertyValue > info) raises (::com::sun::star::sdbc::SQLException, ::com::sun::star::container::ElementExistException);
11171 published interface XDataDefinitionSupplier {
11172 interface ::com::sun::star::uno::XInterface;
11173 ::com::sun::star::sdbcx::XTablesSupplier getDataDefinitionByConnection([in] ::com::sun::star::sdbc::XConnection connection) raises (::com::sun::star::sdbc::SQLException);
11174 ::com::sun::star::sdbcx::XTablesSupplier getDataDefinitionByURL([in] string url, [in] sequence< ::com::sun::star::beans::PropertyValue > info) raises (::com::sun::star::sdbc::SQLException);
11176 published interface XDropCatalog {
11177 interface ::com::sun::star::uno::XInterface;
11178 void dropCatalog([in] string catalogName, [in] sequence< ::com::sun::star::beans::PropertyValue > info) raises (::com::sun::star::sdbc::SQLException, ::com::sun::star::container::NoSuchElementException);
11180 published service Driver {
11181 service ::com::sun::star::sdbc::Driver;
11182 interface ::com::sun::star::sdbcx::XDataDefinitionSupplier;
11183 [optional] interface ::com::sun::star::sdbcx::XCreateCatalog;
11184 [optional] interface ::com::sun::star::sdbcx::XDropCatalog;
11186 published interface XAuthorizable {
11187 interface ::com::sun::star::uno::XInterface;
11188 long getPrivileges([in] string objName, [in] long objType) raises (::com::sun::star::sdbc::SQLException);
11189 long getGrantablePrivileges([in] string objName, [in] long objType) raises (::com::sun::star::sdbc::SQLException);
11190 void grantPrivileges([in] string objName, [in] long objType, [in] long objPrivileges) raises (::com::sun::star::sdbc::SQLException);
11191 void revokePrivileges([in] string objName, [in] long objType, [in] long objPrivileges) raises (::com::sun::star::sdbc::SQLException);
11193 published service Group {
11194 interface ::com::sun::star::sdbcx::XUsersSupplier;
11195 interface ::com::sun::star::sdbcx::XAuthorizable;
11196 interface ::com::sun::star::beans::XPropertySet;
11197 [property, readonly] string Name;
11199 published service GroupDescriptor {
11200 service ::com::sun::star::sdbcx::Descriptor;
11201 [property] string Name;
11203 published service Index {
11204 interface ::com::sun::star::sdbcx::XColumnsSupplier;
11205 interface ::com::sun::star::beans::XPropertySet;
11206 [optional] interface ::com::sun::star::sdbcx::XDataDescriptorFactory;
11207 [property, readonly] string Name;
11208 [property, readonly] string Catalog;
11209 [property, readonly] boolean IsUnique;
11210 [property, readonly] boolean IsPrimaryKeyIndex;
11211 [property, readonly] boolean IsClustered;
11213 published service IndexColumn {
11214 service ::com::sun::star::sdbcx::Column;
11215 [property, readonly] boolean IsAscending;
11217 published service IndexColumnDescriptor {
11218 service ::com::sun::star::sdbcx::Descriptor;
11219 [property] boolean IsAscending;
11221 published service IndexDescriptor {
11222 service ::com::sun::star::sdbcx::Descriptor;
11223 interface ::com::sun::star::sdbcx::XColumnsSupplier;
11224 [property] string Catalog;
11225 [property] boolean IsUnique;
11226 [property] boolean IsClustered;
11228 published service Key {
11229 interface ::com::sun::star::sdbcx::XColumnsSupplier;
11230 interface ::com::sun::star::beans::XPropertySet;
11231 [optional] interface ::com::sun::star::sdbcx::XDataDescriptorFactory;
11232 [property, readonly] string Name;
11233 [property, readonly] long Type;
11234 [property, readonly] string ReferencedTable;
11235 [property, readonly] long UpdateRule;
11236 [property, readonly] long DeleteRule;
11238 published service KeyColumn {
11239 service ::com::sun::star::sdbcx::Column;
11240 [property, readonly] string RelatedColumn;
11242 published service KeyColumnDescriptor {
11243 service ::com::sun::star::sdbcx::Descriptor;
11244 [property] string RelatedColumn;
11246 published service KeyDescriptor {
11247 service ::com::sun::star::sdbcx::Descriptor;
11248 interface ::com::sun::star::sdbcx::XColumnsSupplier;
11249 [property] long Type;
11250 [property] string ReferencedTable;
11251 [property] long UpdateRule;
11252 [property] long DeleteRule;
11254 published constants KeyType {
11255 const long FOREIGN = 3;
11256 const long PRIMARY = 1;
11257 const long UNIQUE = 2;
11259 published service PreparedStatement {
11260 service ::com::sun::star::sdbc::PreparedStatement;
11261 [property] boolean UseBookmarks;
11263 published constants Privilege {
11264 const long ALTER = 64;
11265 const long CREATE = 32;
11266 const long DELETE = 8;
11267 const long DROP = 256;
11268 const long INSERT = 2;
11269 const long READ = 16;
11270 const long REFERENCE = 128;
11271 const long SELECT = 1;
11272 const long UPDATE = 4;
11274 published constants PrivilegeObject {
11275 const long COLUMN = 2;
11276 const long TABLE = 0;
11277 const long VIEW = 1;
11279 published service ReferenceColumn {
11280 service ::com::sun::star::sdbcx::Column;
11281 [property, readonly] string ReferencedColumn;
11283 published service Statement {
11284 service ::com::sun::star::sdbc::Statement;
11285 [property] boolean UseBookmarks;
11287 published interface XUser {
11288 interface ::com::sun::star::sdbcx::XAuthorizable;
11289 void changePassword([in] string oldPassword, [in] string newPassword) raises (::com::sun::star::sdbc::SQLException);
11291 published service User {
11292 interface ::com::sun::star::sdbcx::XUser;
11293 interface ::com::sun::star::beans::XPropertySet;
11294 [optional] interface ::com::sun::star::sdbcx::XGroupsSupplier;
11295 [property, readonly] string Name;
11297 published service UserDescriptor {
11298 service ::com::sun::star::sdbcx::Descriptor;
11299 [property] string Password;
11301 interface XAlterView {
11302 interface ::com::sun::star::uno::XInterface;
11303 void alterCommand([in] string NewCommand) raises (::com::sun::star::sdbc::SQLException);
11305 published service View {
11306 interface ::com::sun::star::beans::XPropertySet;
11307 [optional] interface ::com::sun::star::sdbcx::XRename;
11308 [optional] interface ::com::sun::star::sdbcx::XAlterView;
11309 [property, readonly] string Name;
11310 [property, readonly] string CatalogName;
11311 [property, readonly] string SchemaName;
11312 [property, readonly] string Command;
11313 [property, readonly] long CheckOption;
11315 published service ViewDescriptor {
11316 service ::com::sun::star::sdbcx::Descriptor;
11317 [property] string CatalogName;
11318 [property] string SchemaName;
11319 [property] string Command;
11320 [property] long CheckOption;
11323 module sheet {
11324 published interface XSpreadsheet;
11325 published struct ActivationEvent: ::com::sun::star::lang::EventObject {
11326 ::com::sun::star::sheet::XSpreadsheet ActiveSheet;
11328 published interface XAddIn {
11329 interface ::com::sun::star::lang::XLocalizable;
11330 string getProgrammaticFuntionName([in] string aDisplayName);
11331 string getDisplayFunctionName([in] string aProgrammaticName);
11332 string getFunctionDescription([in] string aProgrammaticName);
11333 string getDisplayArgumentName([in] string aProgrammaticFunctionName, [in] long nArgument);
11334 string getArgumentDescription([in] string aProgrammaticFunctionName, [in] long nArgument);
11335 string getProgrammaticCategoryName([in] string aProgrammaticFunctionName);
11336 string getDisplayCategoryName([in] string aProgrammaticFunctionName);
11338 published struct LocalizedName {
11339 ::com::sun::star::lang::Locale Locale;
11340 string Name;
11342 published interface XCompatibilityNames {
11343 interface ::com::sun::star::uno::XInterface;
11344 sequence< ::com::sun::star::sheet::LocalizedName > getCompatibilityNames([in] string aProgrammaticName);
11346 published service AddIn {
11347 interface ::com::sun::star::lang::XServiceName;
11348 interface ::com::sun::star::sheet::XAddIn;
11349 [optional] interface ::com::sun::star::sheet::XCompatibilityNames;
11351 published enum Border {
11352 TOP = 0,
11353 BOTTOM = 1,
11354 RIGHT = 2,
11355 LEFT = 3
11357 published interface XSheetAnnotation {
11358 interface ::com::sun::star::uno::XInterface;
11359 ::com::sun::star::table::CellAddress getPosition();
11360 string getAuthor();
11361 string getDate();
11362 boolean getIsVisible();
11363 void setIsVisible([in] boolean bIsVisible);
11365 published interface XSheetAnnotationShapeSupplier {
11366 interface ::com::sun::star::uno::XInterface;
11367 ::com::sun::star::drawing::XShape getAnnotationShape();
11369 published service CellAnnotation {
11370 interface ::com::sun::star::sheet::XSheetAnnotation;
11371 interface ::com::sun::star::container::XChild;
11372 interface ::com::sun::star::text::XSimpleText;
11373 [optional] interface ::com::sun::star::sheet::XSheetAnnotationShapeSupplier;
11375 published service CellAnnotationShape {
11376 service ::com::sun::star::drawing::CaptionShape;
11378 published interface XSheetAnnotations {
11379 interface ::com::sun::star::container::XIndexAccess;
11380 void insertNew([in] ::com::sun::star::table::CellAddress aPosition, [in] string aText);
11381 void removeByIndex([in] long nIndex);
11383 published service CellAnnotations {
11384 interface ::com::sun::star::sheet::XSheetAnnotations;
11385 interface ::com::sun::star::container::XEnumerationAccess;
11387 published service CellAnnotationsEnumeration {
11388 interface ::com::sun::star::container::XEnumeration;
11391 module table {
11392 published struct CellRangeAddress {
11393 short Sheet;
11394 long StartColumn;
11395 long StartRow;
11396 long EndColumn;
11397 long EndRow;
11400 module sheet {
11401 published interface XAreaLink {
11402 interface ::com::sun::star::uno::XInterface;
11403 string getSourceArea();
11404 void setSourceArea([in] string aSourceArea);
11405 ::com::sun::star::table::CellRangeAddress getDestArea();
11406 void setDestArea([in] ::com::sun::star::table::CellRangeAddress aDestArea);
11408 published service CellAreaLink {
11409 interface ::com::sun::star::sheet::XAreaLink;
11410 interface ::com::sun::star::util::XRefreshable;
11411 interface ::com::sun::star::beans::XPropertySet;
11412 [property] string Url;
11413 [property] string Filter;
11414 [property] string FilterOptions;
11415 /** @deprecated */ [property] long RefreshDelay;
11416 [property, optional] long RefreshPeriod;
11418 published interface XAreaLinks {
11419 interface ::com::sun::star::container::XIndexAccess;
11420 void insertAtPosition([in] ::com::sun::star::table::CellAddress aDestPos, [in] string aFileName, [in] string aSourceArea, [in] string aFilter, [in] string aFilterOptions);
11421 void removeByIndex([in] long nIndex);
11423 published service CellAreaLinks {
11424 interface ::com::sun::star::sheet::XAreaLinks;
11425 interface ::com::sun::star::container::XIndexAccess;
11426 interface ::com::sun::star::container::XEnumerationAccess;
11428 published service CellAreaLinksEnumeration {
11429 interface ::com::sun::star::container::XEnumeration;
11431 published enum CellDeleteMode {
11432 NONE = 0,
11433 UP = 1,
11434 LEFT = 2,
11435 ROWS = 3,
11436 COLUMNS = 4
11438 published constants CellFlags {
11439 const long ANNOTATION = 8;
11440 const long DATETIME = 2;
11441 const long EDITATTR = 256;
11442 const long FORMATTED = 512;
11443 const long FORMULA = 16;
11444 const long HARDATTR = 32;
11445 const long OBJECTS = 128;
11446 const long STRING = 4;
11447 const long STYLES = 64;
11448 const long VALUE = 1;
11450 published service CellFormatRanges {
11451 interface ::com::sun::star::container::XIndexAccess;
11452 interface ::com::sun::star::container::XEnumerationAccess;
11454 published service CellFormatRangesEnumeration {
11455 interface ::com::sun::star::container::XEnumeration;
11457 published enum CellInsertMode {
11458 NONE = 0,
11459 DOWN = 1,
11460 RIGHT = 2,
11461 ROWS = 3,
11462 COLUMNS = 4
11464 published service Cells {
11465 interface ::com::sun::star::container::XEnumerationAccess;
11467 published service CellsEnumeration {
11468 interface ::com::sun::star::container::XEnumeration;
11470 published enum ConditionOperator {
11471 NONE = 0,
11472 EQUAL = 1,
11473 NOT_EQUAL = 2,
11474 GREATER = 3,
11475 GREATER_EQUAL = 4,
11476 LESS = 5,
11477 LESS_EQUAL = 6,
11478 BETWEEN = 7,
11479 NOT_BETWEEN = 8,
11480 FORMULA = 9
11482 published enum GeneralFunction {
11483 NONE = 0,
11484 AUTO = 1,
11485 SUM = 2,
11486 COUNT = 3,
11487 AVERAGE = 4,
11488 MAX = 5,
11489 MIN = 6,
11490 PRODUCT = 7,
11491 COUNTNUMS = 8,
11492 STDEV = 9,
11493 STDEVP = 10,
11494 VAR = 11,
11495 VARP = 12
11497 /** @deprecated */ published interface XConsolidationDescriptor {
11498 interface ::com::sun::star::uno::XInterface;
11499 ::com::sun::star::sheet::GeneralFunction getFunction();
11500 void setFunction([in] ::com::sun::star::sheet::GeneralFunction nFunction);
11501 sequence< ::com::sun::star::table::CellRangeAddress > getSources();
11502 void setSources([in] sequence< ::com::sun::star::table::CellRangeAddress > aSources);
11503 ::com::sun::star::table::CellAddress getStartOutputPosition();
11504 void setStartOutputPosition([in] ::com::sun::star::table::CellAddress aStartOutputPosition);
11505 boolean getUseColumnHeaders();
11506 void setUseColumnHeaders([in] boolean bUseColumnHeaders);
11507 boolean getUseRowHeaders();
11508 void setUseRowHeaders([in] boolean bUseRowHeaders);
11509 boolean getInsertLinks();
11510 void setInsertLinks([in] boolean bInsertLinks);
11512 published service ConsolidationDescriptor {
11513 interface ::com::sun::star::sheet::XConsolidationDescriptor;
11515 /** @deprecated */ published interface XDDELink {
11516 interface ::com::sun::star::uno::XInterface;
11517 string getApplication();
11518 string getTopic();
11519 string getItem();
11521 published interface XDDELinkResults {
11522 interface ::com::sun::star::uno::XInterface;
11523 sequence< sequence< any > > getResults();
11524 void setResults([in] sequence< sequence< any > > aResults);
11526 published service DDELink {
11527 interface ::com::sun::star::container::XNamed;
11528 interface ::com::sun::star::sheet::XDDELink;
11529 interface ::com::sun::star::util::XRefreshable;
11530 [optional] interface ::com::sun::star::sheet::XDDELinkResults;
11532 published enum DDELinkMode {
11533 DEFAULT = 0,
11534 ENGLISH = 1,
11535 TEXT = 2
11537 published interface XDDELinks {
11538 interface ::com::sun::star::container::XNameAccess;
11539 ::com::sun::star::sheet::XDDELink addDDELink([in] string aApplication, [in] string aTopic, [in] string aItem, [in] ::com::sun::star::sheet::DDELinkMode nMode);
11541 published service DDELinks {
11542 interface ::com::sun::star::container::XNameAccess;
11543 interface ::com::sun::star::container::XIndexAccess;
11544 interface ::com::sun::star::container::XEnumerationAccess;
11545 [optional] interface ::com::sun::star::sheet::XDDELinks;
11547 published service DDELinksEnumeration {
11548 interface ::com::sun::star::container::XEnumeration;
11550 published enum DataImportMode {
11551 NONE = 0,
11552 SQL = 1,
11553 TABLE = 2,
11554 QUERY = 3
11556 published interface XDataPilotField;
11557 published interface XDataPilotDataLayoutFieldSupplier {
11558 interface ::com::sun::star::uno::XInterface;
11559 ::com::sun::star::sheet::XDataPilotField getDataLayoutField();
11561 published interface XSheetFilterDescriptor;
11562 published interface XDataPilotDescriptor {
11563 interface ::com::sun::star::container::XNamed;
11564 string getTag();
11565 void setTag([in] string aTag);
11566 ::com::sun::star::table::CellRangeAddress getSourceRange();
11567 void setSourceRange([in] ::com::sun::star::table::CellRangeAddress aSourceRange);
11568 ::com::sun::star::sheet::XSheetFilterDescriptor getFilterDescriptor();
11569 ::com::sun::star::container::XIndexAccess getDataPilotFields();
11570 ::com::sun::star::container::XIndexAccess getColumnFields();
11571 ::com::sun::star::container::XIndexAccess getRowFields();
11572 ::com::sun::star::container::XIndexAccess getPageFields();
11573 ::com::sun::star::container::XIndexAccess getDataFields();
11574 ::com::sun::star::container::XIndexAccess getHiddenFields();
11576 published service DataPilotDescriptor {
11577 interface ::com::sun::star::sheet::XDataPilotDescriptor;
11578 [optional] interface ::com::sun::star::beans::XPropertySet;
11579 [optional] interface ::com::sun::star::sheet::XDataPilotDataLayoutFieldSupplier;
11580 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > ImportDescriptor;
11581 [property, optional] string SourceServiceName;
11582 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > ServiceArguments;
11583 [property, optional] boolean IgnoreEmptyRows;
11584 [property, optional] boolean RepeatIfEmpty;
11585 [property, optional] boolean ColumnGrand;
11586 [property, optional] boolean RowGrand;
11587 [property, optional] boolean ShowFilterButton;
11588 [property, optional] boolean DrillDownOnDoubleClick;
11589 [property, optional] string GrandTotalName;
11591 published struct DataPilotFieldAutoShowInfo {
11592 boolean IsEnabled;
11593 long ShowItemsMode;
11594 long ItemCount;
11595 string DataField;
11597 published interface XDataPilotField;
11598 published struct DataPilotFieldGroupInfo {
11599 boolean HasAutoStart;
11600 boolean HasAutoEnd;
11601 boolean HasDateValues;
11602 double Start;
11603 double End;
11604 double Step;
11605 long GroupBy;
11606 ::com::sun::star::sheet::XDataPilotField SourceField;
11607 ::com::sun::star::container::XNameAccess Groups;
11609 published struct DataPilotFieldLayoutInfo {
11610 long LayoutMode;
11611 boolean AddEmptyLines;
11613 published enum DataPilotFieldOrientation {
11614 HIDDEN = 0,
11615 COLUMN = 1,
11616 ROW = 2,
11617 PAGE = 3,
11618 DATA = 4
11620 published struct DataPilotFieldReference {
11621 long ReferenceType;
11622 string ReferenceField;
11623 long ReferenceItemType;
11624 string ReferenceItemName;
11626 published struct DataPilotFieldSortInfo {
11627 string Field;
11628 boolean IsAscending;
11629 long Mode;
11631 published interface XDataPilotField {
11632 interface ::com::sun::star::uno::XInterface;
11633 ::com::sun::star::container::XIndexAccess getItems();
11635 published interface XDataPilotFieldGrouping {
11636 interface ::com::sun::star::uno::XInterface;
11637 ::com::sun::star::sheet::XDataPilotField createNameGroup([in] sequence< string > aItems) raises (::com::sun::star::lang::IllegalArgumentException);
11638 ::com::sun::star::sheet::XDataPilotField createDateGroup([in] ::com::sun::star::sheet::DataPilotFieldGroupInfo aInfo) raises (::com::sun::star::lang::IllegalArgumentException);
11640 published service DataPilotField {
11641 interface ::com::sun::star::container::XNamed;
11642 interface ::com::sun::star::beans::XPropertySet;
11643 [optional] interface ::com::sun::star::sheet::XDataPilotField;
11644 [optional] interface ::com::sun::star::sheet::XDataPilotFieldGrouping;
11645 [property] ::com::sun::star::sheet::DataPilotFieldOrientation Orientation;
11646 [property] ::com::sun::star::sheet::GeneralFunction Function;
11647 [property, optional] sequence< ::com::sun::star::sheet::GeneralFunction > Subtotals;
11648 [property, optional] string SelectedPage;
11649 [property, optional] boolean UseSelectedPage;
11650 [property, optional] string UsedHierarchy;
11651 [property, optional] boolean HasSortInfo;
11652 [property, optional] ::com::sun::star::sheet::DataPilotFieldSortInfo SortInfo;
11653 [property, optional] boolean HasLayoutInfo;
11654 [property, optional] ::com::sun::star::sheet::DataPilotFieldLayoutInfo LayoutInfo;
11655 [property, optional] boolean HasAutoShowInfo;
11656 [property, optional] ::com::sun::star::sheet::DataPilotFieldAutoShowInfo AutoShowInfo;
11657 [property, optional] boolean HasReference;
11658 [property, optional] ::com::sun::star::sheet::DataPilotFieldReference Reference;
11659 [property, optional] boolean IsGroupField;
11660 [property, optional] ::com::sun::star::sheet::DataPilotFieldGroupInfo GroupInfo;
11661 [property, optional] boolean ShowEmpty;
11663 published service DataPilotFieldGroup {
11664 interface ::com::sun::star::container::XNamed;
11665 interface ::com::sun::star::container::XIndexAccess;
11666 interface ::com::sun::star::container::XEnumerationAccess;
11667 interface ::com::sun::star::container::XNameAccess;
11668 [optional] interface ::com::sun::star::container::XNameContainer;
11670 published constants DataPilotFieldGroupBy {
11671 const long DAYS = 8;
11672 const long HOURS = 4;
11673 const long MINUTES = 2;
11674 const long MONTHS = 16;
11675 const long QUARTERS = 32;
11676 const long SECONDS = 1;
11677 const long YEARS = 64;
11679 published service DataPilotFieldGroupItem {
11680 interface ::com::sun::star::container::XNamed;
11682 published service DataPilotFieldGroups {
11683 interface ::com::sun::star::container::XIndexAccess;
11684 interface ::com::sun::star::container::XEnumerationAccess;
11685 interface ::com::sun::star::container::XNameAccess;
11686 [optional] interface ::com::sun::star::container::XNameContainer;
11688 published service DataPilotFields {
11689 interface ::com::sun::star::container::XIndexAccess;
11690 interface ::com::sun::star::container::XEnumerationAccess;
11691 interface ::com::sun::star::container::XNameAccess;
11693 published service DataPilotFieldsEnumeration {
11694 interface ::com::sun::star::container::XEnumeration;
11696 published enum FilterConnection {
11697 AND = 0,
11698 OR = 1
11700 published enum FilterOperator {
11701 EMPTY = 0,
11702 NOT_EMPTY = 1,
11703 EQUAL = 2,
11704 NOT_EQUAL = 3,
11705 GREATER = 4,
11706 GREATER_EQUAL = 5,
11707 LESS = 6,
11708 LESS_EQUAL = 7,
11709 TOP_VALUES = 8,
11710 TOP_PERCENT = 9,
11711 BOTTOM_VALUES = 10,
11712 BOTTOM_PERCENT = 11
11714 published struct TableFilterField {
11715 ::com::sun::star::sheet::FilterConnection Connection;
11716 long Field;
11717 ::com::sun::star::sheet::FilterOperator Operator;
11718 boolean IsNumeric;
11719 double NumericValue;
11720 string StringValue;
11722 published interface XDataPilotTable {
11723 interface ::com::sun::star::uno::XInterface;
11724 ::com::sun::star::table::CellRangeAddress getOutputRange();
11725 void refresh();
11727 published service DataPilotTable {
11728 interface ::com::sun::star::sheet::XDataPilotDescriptor;
11729 interface ::com::sun::star::sheet::XDataPilotTable;
11730 [optional] interface ::com::sun::star::util::XModifyBroadcaster;
11732 published interface XDataPilotTables {
11733 interface ::com::sun::star::container::XNameAccess;
11734 ::com::sun::star::sheet::XDataPilotDescriptor createDataPilotDescriptor();
11735 void insertNewByName([in] string aName, [in] ::com::sun::star::table::CellAddress OutputAddress, [in] ::com::sun::star::sheet::XDataPilotDescriptor xDescriptor);
11736 void removeByName([in] string aName);
11738 published service DataPilotTables {
11739 interface ::com::sun::star::sheet::XDataPilotTables;
11740 interface ::com::sun::star::container::XEnumerationAccess;
11741 interface ::com::sun::star::container::XIndexAccess;
11743 published service DataPilotTablesEnumeration {
11744 interface ::com::sun::star::container::XEnumeration;
11746 published service DatabaseImportDescriptor {
11747 [property] ::com::sun::star::sheet::DataImportMode SourceType;
11748 [property] string DatabaseName;
11749 [property] string SourceObject;
11750 [property, optional] boolean IsNative;
11751 [property, optional] string ConnectionResource;
11754 module table {
11755 published interface XCellRange;
11757 module sheet {
11758 published interface XCellRangeReferrer {
11759 interface ::com::sun::star::uno::XInterface;
11760 ::com::sun::star::table::XCellRange getReferredCells();
11762 published interface XSheetFilterDescriptor;
11763 published interface XSubTotalDescriptor;
11764 published interface XDatabaseRange {
11765 interface ::com::sun::star::uno::XInterface;
11766 ::com::sun::star::table::CellRangeAddress getDataArea();
11767 void setDataArea([in] ::com::sun::star::table::CellRangeAddress aDataArea);
11768 sequence< ::com::sun::star::beans::PropertyValue > getSortDescriptor();
11769 ::com::sun::star::sheet::XSheetFilterDescriptor getFilterDescriptor();
11770 ::com::sun::star::sheet::XSubTotalDescriptor getSubTotalDescriptor();
11771 sequence< ::com::sun::star::beans::PropertyValue > getImportDescriptor();
11772 void refresh();
11774 published service DatabaseRange {
11775 interface ::com::sun::star::sheet::XDatabaseRange;
11776 interface ::com::sun::star::sheet::XCellRangeReferrer;
11777 interface ::com::sun::star::beans::XPropertySet;
11778 interface ::com::sun::star::container::XNamed;
11779 [optional] interface ::com::sun::star::util::XRefreshable;
11780 [property] boolean MoveCells;
11781 [property] boolean KeepFormats;
11782 [property] boolean StripData;
11783 [property, optional] boolean AutoFilter;
11784 [property, optional] boolean UseFilterCriteriaSource;
11785 [property, optional] ::com::sun::star::table::CellRangeAddress FilterCriteriaSource;
11786 [property, optional] long RefreshPeriod;
11787 [property, optional] boolean FromSelection;
11788 [property, optional, readonly] long TokenIndex;
11789 [property, optional] boolean TotalsRow;
11790 [property, optional] boolean ContainsHeader;
11792 published interface XDatabaseRanges {
11793 interface ::com::sun::star::container::XNameAccess;
11794 void addNewByName([in] string aName, [in] ::com::sun::star::table::CellRangeAddress aRange);
11795 void removeByName([in] string aName);
11797 published service DatabaseRanges {
11798 interface ::com::sun::star::sheet::XDatabaseRanges;
11799 interface ::com::sun::star::container::XEnumerationAccess;
11800 interface ::com::sun::star::container::XIndexAccess;
11802 published service DatabaseRangesEnumeration {
11803 interface ::com::sun::star::container::XEnumeration;
11805 published constants DimensionFlags {
11806 const long NO_COLUMN_ORIENTATION = 1;
11807 const long NO_DATA_ORIENTATION = 8;
11808 const long NO_PAGE_ORIENTATION = 4;
11809 const long NO_ROW_ORIENTATION = 2;
11811 published service DocumentSettings {
11812 service ::com::sun::star::document::Settings;
11813 interface ::com::sun::star::beans::XPropertySet;
11814 [property, optional] boolean ShowZeroValues;
11815 [property, optional] boolean ShowNotes;
11816 [property, optional] boolean ShowGrid;
11817 [property, optional] ::com::sun::star::util::Color GridColor;
11818 [property, optional] boolean ShowPageBreaks;
11819 [property, optional] boolean HasColumnRowHeaders;
11820 [property, optional] boolean HasSheetTabs;
11821 [property, optional] boolean IsOutlineSymbolsSet;
11822 [property, optional] boolean IsSnapToRaster;
11823 [property, optional] boolean RasterIsVisible;
11824 [property, optional] long RasterResolutionX;
11825 [property, optional] long RasterResolutionY;
11826 [property, optional] long RasterSubdivisionX;
11827 [property, optional] long RasterSubdivisionY;
11828 [property, optional] boolean IsRasterAxisSynchronized;
11830 published enum FillDateMode {
11831 FILL_DATE_DAY = 0,
11832 FILL_DATE_WEEKDAY = 1,
11833 FILL_DATE_MONTH = 2,
11834 FILL_DATE_YEAR = 3
11836 published enum FillDirection {
11837 TO_BOTTOM = 0,
11838 TO_RIGHT = 1,
11839 TO_TOP = 2,
11840 TO_LEFT = 3
11842 published enum FillMode {
11843 SIMPLE = 0,
11844 LINEAR = 1,
11845 GROWTH = 2,
11846 DATE = 3,
11847 AUTO = 4
11849 published constants FilterOperator2 {
11850 const long BEGINS_WITH = 14;
11851 const long BOTTOM_PERCENT = 11;
11852 const long BOTTOM_VALUES = 10;
11853 const long CONTAINS = 12;
11854 const long DOES_NOT_BEGIN_WITH = 15;
11855 const long DOES_NOT_CONTAIN = 13;
11856 const long DOES_NOT_END_WITH = 17;
11857 const long EMPTY = 0;
11858 const long ENDS_WITH = 16;
11859 const long EQUAL = 2;
11860 const long GREATER = 4;
11861 const long GREATER_EQUAL = 5;
11862 const long LESS = 6;
11863 const long LESS_EQUAL = 7;
11864 const long NOT_EMPTY = 1;
11865 const long NOT_EQUAL = 3;
11866 const long TOP_PERCENT = 9;
11867 const long TOP_VALUES = 8;
11869 published constants FormulaResult {
11870 const long ERROR = 4;
11871 const long STRING = 2;
11872 const long VALUE = 1;
11874 /** @deprecated */ published service SpreadsheetDocumentSettings {
11875 interface ::com::sun::star::beans::XPropertySet;
11876 [property] boolean IsIterationEnabled;
11877 [property] long IterationCount;
11878 [property] double IterationEpsilon;
11879 [property] short StandardDecimals;
11880 [property] ::com::sun::star::util::Date NullDate;
11881 [property] short DefaultTabStop;
11882 [property] boolean IgnoreCase;
11883 [property] boolean CalcAsShown;
11884 [property] boolean MatchWholeCell;
11885 [property] boolean SpellOnline;
11886 [property] boolean LookUpLabels;
11887 [property] boolean RegularExpressions;
11888 [property, optional, readonly] ::com::sun::star::i18n::XForbiddenCharacters ForbiddenCharacters;
11889 [property, optional, readonly] boolean HasDrawPages;
11890 [property, optional] ::com::sun::star::lang::Locale CharLocale;
11891 [property, optional] ::com::sun::star::lang::Locale CharLocaleAsian;
11892 [property, optional] ::com::sun::star::lang::Locale CharLocaleComplex;
11893 [property, optional] boolean IsLoaded;
11894 [property, optional] boolean IsUndoEnabled;
11895 [property, optional] boolean IsAdjustHeightEnabled;
11896 [property, optional] boolean IsExecuteLinkEnabled;
11897 [property, optional, readonly] ::com::sun::star::awt::XDevice ReferenceDevice;
11898 [property, optional] boolean RecordChanges;
11899 [property, optional, readonly] boolean IsRecordChangesProtected;
11900 [property, optional] boolean Wildcards;
11902 published interface XFunctionAccess {
11903 interface ::com::sun::star::uno::XInterface;
11904 any callFunction([in] string aName, [in] sequence< any > aArguments) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::IllegalArgumentException);
11906 published service FunctionAccess {
11907 service ::com::sun::star::sheet::SpreadsheetDocumentSettings;
11908 interface ::com::sun::star::sheet::XFunctionAccess;
11909 [property, optional] boolean IsArrayFunction;
11911 published constants FunctionCategory {
11912 const long ADDIN = 11;
11913 const long DATABASE = 1;
11914 const long DATETIME = 2;
11915 const long FINANCIAL = 3;
11916 const long INFORMATION = 4;
11917 const long LOGICAL = 5;
11918 const long MATHEMATICAL = 6;
11919 const long MATRIX = 7;
11920 const long SPREADSHEET = 9;
11921 const long STATISTICAL = 8;
11922 const long TEXT = 10;
11924 published service FunctionDescription {
11925 [property, readonly] long Id;
11926 [property, readonly] long Category;
11927 [property, readonly] string Name;
11928 [property, readonly] string Description;
11929 [property, readonly] sequence< ::com::sun::star::sheet::FunctionArgument > Arguments;
11931 published service FunctionDescriptionEnumeration {
11932 interface ::com::sun::star::container::XEnumeration;
11934 published interface XFunctionDescriptions {
11935 interface ::com::sun::star::container::XIndexAccess;
11936 sequence< ::com::sun::star::beans::PropertyValue > getById([in] long nId) raises (::com::sun::star::lang::IllegalArgumentException);
11938 published service FunctionDescriptions {
11939 interface ::com::sun::star::sheet::XFunctionDescriptions;
11940 interface ::com::sun::star::container::XNameAccess;
11941 interface ::com::sun::star::container::XEnumerationAccess;
11943 published interface XGlobalSheetSettings {
11944 interface ::com::sun::star::uno::XInterface;
11945 [attribute] boolean MoveSelection;
11946 [attribute] short MoveDirection;
11947 [attribute] boolean EnterEdit;
11948 [attribute] boolean ExtendFormat;
11949 [attribute] boolean RangeFinder;
11950 [attribute] boolean ExpandReferences;
11951 [attribute] boolean MarkHeader;
11952 [attribute] boolean UseTabCol;
11953 [attribute] short Metric;
11954 [attribute] short Scale;
11955 [attribute] boolean DoAutoComplete;
11956 [attribute] short StatusBarFunction;
11957 [attribute] sequence< string > UserLists;
11958 [attribute] short LinkUpdateMode;
11959 [attribute] boolean PrintAllSheets;
11960 [attribute] boolean PrintEmptyPages;
11961 [attribute] boolean UsePrinterMetrics;
11962 [attribute] boolean ReplaceCellsWarning;
11964 published service GlobalSheetSettings: ::com::sun::star::sheet::XGlobalSheetSettings;
11965 published struct GoalResult {
11966 double Divergence;
11967 double Result;
11969 published interface XHeaderFooterContent {
11970 interface ::com::sun::star::uno::XInterface;
11971 ::com::sun::star::text::XText getLeftText();
11972 ::com::sun::star::text::XText getCenterText();
11973 ::com::sun::star::text::XText getRightText();
11975 published service HeaderFooterContent {
11976 interface ::com::sun::star::sheet::XHeaderFooterContent;
11978 published interface XLabelRange {
11979 interface ::com::sun::star::uno::XInterface;
11980 ::com::sun::star::table::CellRangeAddress getLabelArea();
11981 void setLabelArea([in] ::com::sun::star::table::CellRangeAddress aLabelArea);
11982 ::com::sun::star::table::CellRangeAddress getDataArea();
11983 void setDataArea([in] ::com::sun::star::table::CellRangeAddress aDataArea);
11985 published service LabelRange {
11986 interface ::com::sun::star::sheet::XLabelRange;
11988 published interface XLabelRanges {
11989 interface ::com::sun::star::container::XIndexAccess;
11990 void addNew([in] ::com::sun::star::table::CellRangeAddress aLabelArea, [in] ::com::sun::star::table::CellRangeAddress aDataArea);
11991 void removeByIndex([in] long nIndex);
11993 published service LabelRanges {
11994 interface ::com::sun::star::sheet::XLabelRanges;
11995 interface ::com::sun::star::container::XIndexAccess;
11996 interface ::com::sun::star::container::XEnumerationAccess;
11998 published service LabelRangesEnumeration {
11999 interface ::com::sun::star::container::XEnumeration;
12001 published constants MoveDirection {
12002 const short DOWN = 0;
12003 const short LEFT = 3;
12004 const short RIGHT = 1;
12005 const short UP = 2;
12007 published interface XNamedRange {
12008 interface ::com::sun::star::container::XNamed;
12009 string getContent();
12010 void setContent([in] string aContent);
12011 ::com::sun::star::table::CellAddress getReferencePosition();
12012 void setReferencePosition([in] ::com::sun::star::table::CellAddress aReferencePosition);
12013 long getType();
12014 void setType([in] long nType);
12016 published service NamedRange {
12017 interface ::com::sun::star::sheet::XNamedRange;
12018 interface ::com::sun::star::sheet::XCellRangeReferrer;
12019 [property, optional, readonly] long TokenIndex;
12020 [property, optional] boolean IsSharedFormula;
12022 published constants NamedRangeFlag {
12023 const long COLUMN_HEADER = 4;
12024 const long FILTER_CRITERIA = 1;
12025 const long PRINT_AREA = 2;
12026 const long ROW_HEADER = 8;
12028 published interface XNamedRanges {
12029 interface ::com::sun::star::container::XNameAccess;
12030 void addNewByName([in] string aName, [in] string aContent, [in] ::com::sun::star::table::CellAddress aPosition, [in] long nType);
12031 void addNewFromTitles([in] ::com::sun::star::table::CellRangeAddress aSource, [in] ::com::sun::star::sheet::Border aBorder);
12032 void removeByName([in] string aName);
12033 void outputList([in] ::com::sun::star::table::CellAddress aOutputPosition);
12035 published service NamedRanges {
12036 interface ::com::sun::star::sheet::XNamedRanges;
12037 interface ::com::sun::star::container::XIndexAccess;
12038 interface ::com::sun::star::container::XEnumerationAccess;
12039 [optional] interface ::com::sun::star::document::XActionLockable;
12041 published service NamedRangesEnumeration {
12042 interface ::com::sun::star::container::XEnumeration;
12044 published enum PasteOperation {
12045 NONE = 0,
12046 ADD = 1,
12047 SUBTRACT = 2,
12048 MULTIPLY = 3,
12049 DIVIDE = 4
12051 published service RangeSelectionArguments {
12052 [property] string InitialValue;
12053 [property] string Title;
12054 [property] boolean CloseOnMouseRelease;
12055 [property, optional] boolean SingleCellMode;
12057 published struct RangeSelectionEvent: ::com::sun::star::lang::EventObject {
12058 string RangeDescriptor;
12060 published interface XRecentFunctions {
12061 interface ::com::sun::star::uno::XInterface;
12062 sequence< long > getRecentFunctionIds();
12063 void setRecentFunctionIds([in] sequence< long > aRecentFunctionIds);
12064 long getMaxRecentFunctions();
12066 published service RecentFunctions: ::com::sun::star::sheet::XRecentFunctions;
12067 published struct ResultEvent: ::com::sun::star::lang::EventObject {
12068 any Value;
12070 published interface XScenario {
12071 interface ::com::sun::star::uno::XInterface;
12072 boolean getIsScenario();
12073 string getScenarioComment();
12074 void setScenarioComment([in] string aScenarioComment);
12075 void addRanges([in] sequence< ::com::sun::star::table::CellRangeAddress > aRanges);
12076 void apply();
12078 published interface XScenarios {
12079 interface ::com::sun::star::container::XNameAccess;
12080 void addNewByName([in] string aName, [in] sequence< ::com::sun::star::table::CellRangeAddress > aRanges, [in] string aComment);
12081 void removeByName([in] string aName);
12083 published service Scenarios {
12084 interface ::com::sun::star::sheet::XScenarios;
12085 interface ::com::sun::star::container::XEnumerationAccess;
12086 interface ::com::sun::star::container::XIndexAccess;
12088 published service ScenariosEnumeration {
12089 interface ::com::sun::star::container::XEnumeration;
12091 published interface XSheetCellRanges;
12092 published interface XCellRangesQuery {
12093 interface ::com::sun::star::uno::XInterface;
12094 ::com::sun::star::sheet::XSheetCellRanges queryVisibleCells();
12095 ::com::sun::star::sheet::XSheetCellRanges queryEmptyCells();
12096 ::com::sun::star::sheet::XSheetCellRanges queryContentCells([in] short nContentFlags);
12097 ::com::sun::star::sheet::XSheetCellRanges queryFormulaCells([in] long nResultFlags);
12098 ::com::sun::star::sheet::XSheetCellRanges queryColumnDifferences([in] ::com::sun::star::table::CellAddress aCompare);
12099 ::com::sun::star::sheet::XSheetCellRanges queryRowDifferences([in] ::com::sun::star::table::CellAddress aCompare);
12100 ::com::sun::star::sheet::XSheetCellRanges queryIntersection([in] ::com::sun::star::table::CellRangeAddress aRange);
12102 published interface XSheetCellRanges;
12103 published interface XFormulaQuery {
12104 interface ::com::sun::star::uno::XInterface;
12105 ::com::sun::star::sheet::XSheetCellRanges queryDependents([in] boolean bRecursive);
12106 ::com::sun::star::sheet::XSheetCellRanges queryPrecedents([in] boolean bRecursive);
12108 published service SheetRangesQuery {
12109 interface ::com::sun::star::sheet::XCellRangesQuery;
12110 interface ::com::sun::star::sheet::XFormulaQuery;
12112 published interface XCellAddressable {
12113 interface ::com::sun::star::uno::XInterface;
12114 ::com::sun::star::table::CellAddress getCellAddress();
12116 published interface XSheetAnnotationAnchor {
12117 interface ::com::sun::star::uno::XInterface;
12118 ::com::sun::star::sheet::XSheetAnnotation getAnnotation();
12121 module table {
12122 published enum CellHoriJustify {
12123 STANDARD = 0,
12124 LEFT = 1,
12125 CENTER = 2,
12126 RIGHT = 3,
12127 BLOCK = 4,
12128 REPEAT = 5
12130 published enum CellOrientation {
12131 STANDARD = 0,
12132 TOPBOTTOM = 1,
12133 BOTTOMTOP = 2,
12134 STACKED = 3
12136 published struct TableBorder {
12137 ::com::sun::star::table::BorderLine TopLine;
12138 boolean IsTopLineValid;
12139 ::com::sun::star::table::BorderLine BottomLine;
12140 boolean IsBottomLineValid;
12141 ::com::sun::star::table::BorderLine LeftLine;
12142 boolean IsLeftLineValid;
12143 ::com::sun::star::table::BorderLine RightLine;
12144 boolean IsRightLineValid;
12145 ::com::sun::star::table::BorderLine HorizontalLine;
12146 boolean IsHorizontalLineValid;
12147 ::com::sun::star::table::BorderLine VerticalLine;
12148 boolean IsVerticalLineValid;
12149 short Distance;
12150 boolean IsDistanceValid;
12152 published struct TableBorder2 {
12153 ::com::sun::star::table::BorderLine2 TopLine;
12154 boolean IsTopLineValid;
12155 ::com::sun::star::table::BorderLine2 BottomLine;
12156 boolean IsBottomLineValid;
12157 ::com::sun::star::table::BorderLine2 LeftLine;
12158 boolean IsLeftLineValid;
12159 ::com::sun::star::table::BorderLine2 RightLine;
12160 boolean IsRightLineValid;
12161 ::com::sun::star::table::BorderLine2 HorizontalLine;
12162 boolean IsHorizontalLineValid;
12163 ::com::sun::star::table::BorderLine2 VerticalLine;
12164 boolean IsVerticalLineValid;
12165 short Distance;
12166 boolean IsDistanceValid;
12169 module util {
12170 published struct CellProtection {
12171 boolean IsLocked;
12172 boolean IsFormulaHidden;
12173 boolean IsHidden;
12174 boolean IsPrintHidden;
12177 module table {
12178 published service CellProperties {
12179 interface ::com::sun::star::beans::XPropertySet;
12180 [property, optional] string CellStyle;
12181 [property] ::com::sun::star::util::Color CellBackColor;
12182 [property] boolean IsCellBackgroundTransparent;
12183 [property] ::com::sun::star::table::CellHoriJustify HoriJustify;
12184 [property] long VertJustify;
12185 [property] boolean IsTextWrapped;
12186 [property] short ParaIndent;
12187 [property] ::com::sun::star::table::CellOrientation Orientation;
12188 [property] long RotateAngle;
12189 [property] long RotateReference;
12190 [property, optional] boolean AsianVerticalMode;
12191 [property] ::com::sun::star::table::TableBorder TableBorder;
12192 [property] ::com::sun::star::table::BorderLine TopBorder;
12193 [property] ::com::sun::star::table::BorderLine BottomBorder;
12194 [property] ::com::sun::star::table::BorderLine LeftBorder;
12195 [property] ::com::sun::star::table::BorderLine RightBorder;
12196 [property] long NumberFormat;
12197 [property] ::com::sun::star::table::ShadowFormat ShadowFormat;
12198 [property] ::com::sun::star::util::CellProtection CellProtection;
12199 [property, optional] ::com::sun::star::container::XNameContainer UserDefinedAttributes;
12200 [property, optional] ::com::sun::star::table::BorderLine DiagonalTLBR;
12201 [property, optional] ::com::sun::star::table::BorderLine DiagonalBLTR;
12202 [property, optional] boolean ShrinkToFit;
12203 [property, optional] ::com::sun::star::table::TableBorder2 TableBorder2;
12204 [property, optional] ::com::sun::star::table::BorderLine2 TopBorder2;
12205 [property, optional] ::com::sun::star::table::BorderLine2 BottomBorder2;
12206 [property, optional] ::com::sun::star::table::BorderLine2 LeftBorder2;
12207 [property, optional] ::com::sun::star::table::BorderLine2 RightBorder2;
12208 [property, optional] ::com::sun::star::table::BorderLine2 DiagonalTLBR2;
12209 [property, optional] ::com::sun::star::table::BorderLine2 DiagonalBLTR2;
12210 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > CellInteropGrabBag;
12212 published enum CellContentType {
12213 EMPTY = 0,
12214 VALUE = 1,
12215 TEXT = 2,
12216 FORMULA = 3
12218 published interface XCell {
12219 interface ::com::sun::star::uno::XInterface;
12220 string getFormula();
12221 void setFormula([in] string aFormula);
12222 double getValue();
12223 void setValue([in] double nValue);
12224 ::com::sun::star::table::CellContentType getType();
12225 long getError();
12227 published service Cell {
12228 service ::com::sun::star::table::CellProperties;
12229 interface ::com::sun::star::table::XCell;
12230 interface ::com::sun::star::text::XText;
12232 published interface XTableColumns;
12233 published interface XTableRows;
12234 published interface XColumnRowRange {
12235 interface ::com::sun::star::uno::XInterface;
12236 ::com::sun::star::table::XTableColumns getColumns();
12237 ::com::sun::star::table::XTableRows getRows();
12240 module text {
12241 /** @deprecated */ published interface XRelativeTextContentInsert {
12242 interface ::com::sun::star::uno::XInterface;
12243 void insertTextContentBefore([in] ::com::sun::star::text::XTextContent xNewContent, [in] ::com::sun::star::text::XTextContent xSuccessor) raises (::com::sun::star::lang::IllegalArgumentException);
12244 void insertTextContentAfter([in] ::com::sun::star::text::XTextContent xNewContent, [in] ::com::sun::star::text::XTextContent xPredecessor) raises (::com::sun::star::lang::IllegalArgumentException);
12246 published interface XTextRangeCompare {
12247 interface ::com::sun::star::uno::XInterface;
12248 short compareRegionStarts([in] ::com::sun::star::text::XTextRange xR1, [in] ::com::sun::star::text::XTextRange xR2) raises (::com::sun::star::lang::IllegalArgumentException);
12249 short compareRegionEnds([in] ::com::sun::star::text::XTextRange xR1, [in] ::com::sun::star::text::XTextRange xR2) raises (::com::sun::star::lang::IllegalArgumentException);
12251 published interface XTextRangeMover {
12252 interface ::com::sun::star::uno::XInterface;
12253 void moveTextRange([in] ::com::sun::star::text::XTextRange xRange, [in] short nParagraphs);
12255 published service Text {
12256 interface ::com::sun::star::container::XEnumerationAccess;
12257 interface ::com::sun::star::text::XText;
12258 [optional] interface ::com::sun::star::text::XTextRangeCompare;
12259 [optional] interface ::com::sun::star::text::XTextRangeMover;
12260 /** @deprecated */ [optional] interface ::com::sun::star::text::XRelativeTextContentInsert;
12261 [property, optional] ::com::sun::star::beans::PropertyValues StartRedline;
12262 [property, maybevoid, optional] ::com::sun::star::beans::PropertyValues EndRedline;
12264 published interface XTextFieldsSupplier {
12265 interface ::com::sun::star::uno::XInterface;
12266 ::com::sun::star::container::XEnumerationAccess getTextFields();
12267 ::com::sun::star::container::XNameAccess getTextFieldMasters();
12270 module util {
12271 published interface XIndent {
12272 interface ::com::sun::star::uno::XInterface;
12273 void decrementIndent();
12274 void incrementIndent();
12276 published interface XSearchDescriptor;
12277 published interface XSearchable {
12278 interface ::com::sun::star::uno::XInterface;
12279 ::com::sun::star::util::XSearchDescriptor createSearchDescriptor();
12280 ::com::sun::star::container::XIndexAccess findAll([in] ::com::sun::star::util::XSearchDescriptor xDesc);
12281 ::com::sun::star::uno::XInterface findFirst([in] ::com::sun::star::util::XSearchDescriptor xDesc);
12282 ::com::sun::star::uno::XInterface findNext([in] ::com::sun::star::uno::XInterface xStartAt, [in] ::com::sun::star::util::XSearchDescriptor xDesc);
12284 published interface XReplaceDescriptor;
12285 published interface XSearchDescriptor;
12286 published interface XReplaceable {
12287 interface ::com::sun::star::util::XSearchable;
12288 ::com::sun::star::util::XReplaceDescriptor createReplaceDescriptor();
12289 long replaceAll([in] ::com::sun::star::util::XSearchDescriptor xDesc);
12292 module sheet {
12293 published interface XSheetConditionalEntries;
12294 published service SheetCell {
12295 service ::com::sun::star::table::Cell;
12296 service ::com::sun::star::text::Text;
12297 service ::com::sun::star::style::CharacterProperties;
12298 service ::com::sun::star::style::CharacterPropertiesAsian;
12299 service ::com::sun::star::style::CharacterPropertiesComplex;
12300 service ::com::sun::star::style::ParagraphProperties;
12301 service ::com::sun::star::sheet::SheetRangesQuery;
12302 [optional] service ::com::sun::star::style::ParagraphPropertiesAsian;
12303 [optional] service ::com::sun::star::style::ParagraphPropertiesComplex;
12304 interface ::com::sun::star::document::XActionLockable;
12305 interface ::com::sun::star::util::XReplaceable;
12306 interface ::com::sun::star::util::XIndent;
12307 interface ::com::sun::star::table::XColumnRowRange;
12308 interface ::com::sun::star::sheet::XCellAddressable;
12309 interface ::com::sun::star::sheet::XSheetAnnotationAnchor;
12310 interface ::com::sun::star::text::XTextFieldsSupplier;
12311 [optional] interface ::com::sun::star::beans::XTolerantMultiPropertySet;
12312 [optional] interface ::com::sun::star::util::XModifyBroadcaster;
12313 [property, readonly] ::com::sun::star::awt::Point Position;
12314 [property, readonly] ::com::sun::star::awt::Size Size;
12315 [property, optional] string FormulaLocal;
12316 [property, readonly] long FormulaResultType;
12317 [property] ::com::sun::star::sheet::XSheetConditionalEntries ConditionalFormat;
12318 [property, optional] ::com::sun::star::sheet::XSheetConditionalEntries ConditionalFormatLocal;
12319 [property] ::com::sun::star::beans::XPropertySet Validation;
12320 [property, optional] ::com::sun::star::beans::XPropertySet ValidationLocal;
12321 [property, optional, readonly] string AbsoluteName;
12323 published interface XArrayFormulaRange {
12324 interface ::com::sun::star::uno::XInterface;
12325 string getArrayFormula();
12326 void setArrayFormula([in] string aFormula);
12328 published interface XCellFormatRangesSupplier {
12329 interface ::com::sun::star::uno::XInterface;
12330 ::com::sun::star::container::XIndexAccess getCellFormatRanges();
12332 published interface XCellRangeAddressable {
12333 interface ::com::sun::star::uno::XInterface;
12334 ::com::sun::star::table::CellRangeAddress getRangeAddress();
12336 published interface XCellRangeData {
12337 interface ::com::sun::star::uno::XInterface;
12338 sequence< sequence< any > > getDataArray();
12339 void setDataArray([in] sequence< sequence< any > > aArray);
12341 published interface XCellRangeFormula {
12342 interface ::com::sun::star::uno::XInterface;
12343 sequence< sequence< string > > getFormulaArray();
12344 void setFormulaArray([in] sequence< sequence< string > > aArray);
12346 published interface XCellSeries {
12347 interface ::com::sun::star::uno::XInterface;
12348 void fillSeries([in] ::com::sun::star::sheet::FillDirection nFillDirection, [in] ::com::sun::star::sheet::FillMode nFillMode, [in] ::com::sun::star::sheet::FillDateMode nFillDateMode, [in] double fStep, [in] double fEndValue);
12349 void fillAuto([in] ::com::sun::star::sheet::FillDirection nFillDirection, [in] long nSourceCount);
12351 published enum TableOperationMode {
12352 COLUMN = 0,
12353 ROW = 1,
12354 BOTH = 2
12356 published interface XMultipleOperation {
12357 interface ::com::sun::star::uno::XInterface;
12358 void setTableOperation([in] ::com::sun::star::table::CellRangeAddress aFormulaRange, [in] ::com::sun::star::sheet::TableOperationMode nMode, [in] ::com::sun::star::table::CellAddress aColumnCell, [in] ::com::sun::star::table::CellAddress aRowCell);
12361 module table {
12362 published interface XCellRange {
12363 interface ::com::sun::star::uno::XInterface;
12364 ::com::sun::star::table::XCell getCellByPosition([in] long nColumn, [in] long nRow) raises (::com::sun::star::lang::IndexOutOfBoundsException);
12365 ::com::sun::star::table::XCellRange getCellRangeByPosition([in] long nLeft, [in] long nTop, [in] long nRight, [in] long nBottom) raises (::com::sun::star::lang::IndexOutOfBoundsException);
12366 ::com::sun::star::table::XCellRange getCellRangeByName([in] string aRange);
12369 module sheet {
12370 published interface XSpreadsheet;
12371 published interface XSheetCellRange {
12372 interface ::com::sun::star::table::XCellRange;
12373 ::com::sun::star::sheet::XSpreadsheet getSpreadsheet();
12375 published interface XSheetFilterDescriptor;
12376 published interface XSheetFilterable {
12377 interface ::com::sun::star::uno::XInterface;
12378 ::com::sun::star::sheet::XSheetFilterDescriptor createFilterDescriptor([in] boolean bEmpty);
12379 void filter([in] ::com::sun::star::sheet::XSheetFilterDescriptor xDescriptor);
12381 published interface XSheetFilterDescriptor;
12382 published interface XSheetFilterableEx {
12383 interface ::com::sun::star::sheet::XSheetFilterable;
12384 ::com::sun::star::sheet::XSheetFilterDescriptor createFilterDescriptorByObject([in] ::com::sun::star::sheet::XSheetFilterable xObject);
12386 published interface XSheetOperation {
12387 interface ::com::sun::star::uno::XInterface;
12388 double computeFunction([in] ::com::sun::star::sheet::GeneralFunction nFunction) raises (::com::sun::star::uno::Exception);
12389 void clearContents([in] long nContentFlags);
12391 published interface XSubTotalDescriptor;
12392 published interface XSubTotalCalculatable {
12393 interface ::com::sun::star::uno::XInterface;
12394 ::com::sun::star::sheet::XSubTotalDescriptor createSubTotalDescriptor([in] boolean bEmpty);
12395 void applySubTotals([in] ::com::sun::star::sheet::XSubTotalDescriptor xDescriptor, [in] boolean bReplace);
12396 void removeSubTotals();
12398 published interface XUniqueCellFormatRangesSupplier {
12399 interface ::com::sun::star::uno::XInterface;
12400 ::com::sun::star::container::XIndexAccess getUniqueCellFormatRanges();
12403 module table {
12404 published service CellRange {
12405 service ::com::sun::star::table::CellProperties;
12406 interface ::com::sun::star::table::XCellRange;
12408 published interface XAutoFormattable {
12409 interface ::com::sun::star::uno::XInterface;
12410 void autoFormat([in] string aName) raises (::com::sun::star::lang::IllegalArgumentException);
12413 module util {
12414 published interface XImportable {
12415 interface ::com::sun::star::uno::XInterface;
12416 sequence< ::com::sun::star::beans::PropertyValue > createImportDescriptor([in] boolean bEmpty);
12417 void doImport([in] sequence< ::com::sun::star::beans::PropertyValue > aDescriptor);
12419 published interface XMergeable {
12420 interface ::com::sun::star::uno::XInterface;
12421 void merge([in] boolean bMerge);
12422 boolean getIsMerged();
12424 published interface XSortable {
12425 interface ::com::sun::star::uno::XInterface;
12426 sequence< ::com::sun::star::beans::PropertyValue > createSortDescriptor();
12427 void sort([in] sequence< ::com::sun::star::beans::PropertyValue > xDescriptor);
12430 module sheet {
12431 published interface XSheetConditionalEntries;
12432 published service SheetCellRange {
12433 service ::com::sun::star::table::CellRange;
12434 service ::com::sun::star::style::CharacterProperties;
12435 service ::com::sun::star::style::CharacterPropertiesAsian;
12436 service ::com::sun::star::style::CharacterPropertiesComplex;
12437 service ::com::sun::star::style::ParagraphProperties;
12438 service ::com::sun::star::sheet::SheetRangesQuery;
12439 interface ::com::sun::star::util::XReplaceable;
12440 interface ::com::sun::star::util::XMergeable;
12441 interface ::com::sun::star::util::XIndent;
12442 interface ::com::sun::star::table::XColumnRowRange;
12443 interface ::com::sun::star::table::XAutoFormattable;
12444 interface ::com::sun::star::sheet::XSheetCellRange;
12445 interface ::com::sun::star::sheet::XCellRangeData;
12446 interface ::com::sun::star::sheet::XCellRangeAddressable;
12447 interface ::com::sun::star::sheet::XSheetOperation;
12448 interface ::com::sun::star::sheet::XCellSeries;
12449 interface ::com::sun::star::sheet::XArrayFormulaRange;
12450 interface ::com::sun::star::sheet::XMultipleOperation;
12451 interface ::com::sun::star::util::XSortable;
12452 interface ::com::sun::star::util::XImportable;
12453 interface ::com::sun::star::sheet::XSubTotalCalculatable;
12454 interface ::com::sun::star::sheet::XSheetFilterableEx;
12455 interface ::com::sun::star::sheet::XCellFormatRangesSupplier;
12456 interface ::com::sun::star::sheet::XUniqueCellFormatRangesSupplier;
12457 interface ::com::sun::star::chart::XChartDataArray;
12458 [optional] interface ::com::sun::star::sheet::XCellRangeFormula;
12459 [optional] interface ::com::sun::star::beans::XTolerantMultiPropertySet;
12460 [optional] interface ::com::sun::star::util::XModifyBroadcaster;
12461 [property, readonly] ::com::sun::star::awt::Point Position;
12462 [property, readonly] ::com::sun::star::awt::Size Size;
12463 [property] ::com::sun::star::sheet::XSheetConditionalEntries ConditionalFormat;
12464 [property, optional] ::com::sun::star::sheet::XSheetConditionalEntries ConditionalFormatLocal;
12465 [property] ::com::sun::star::beans::XPropertySet Validation;
12466 [property, optional] ::com::sun::star::beans::XPropertySet ValidationLocal;
12467 [property, optional, readonly] string AbsoluteName;
12469 published interface XSheetCellCursor {
12470 interface ::com::sun::star::sheet::XSheetCellRange;
12471 void collapseToCurrentRegion();
12472 void collapseToCurrentArray();
12473 void collapseToMergedArea();
12474 void expandToEntireColumns();
12475 void expandToEntireRows();
12476 void collapseToSize([in] long nColumns, [in] long nRows);
12478 published interface XUsedAreaCursor {
12479 interface ::com::sun::star::uno::XInterface;
12480 void gotoStartOfUsedArea([in] boolean bExpand);
12481 void gotoEndOfUsedArea([in] boolean bExpand);
12484 module table {
12485 published interface XCellCursor {
12486 interface ::com::sun::star::table::XCellRange;
12487 void gotoStart();
12488 void gotoEnd();
12489 void gotoNext();
12490 void gotoPrevious();
12491 void gotoOffset([in] long nColumnOffset, [in] long nRowOffset);
12493 published service CellCursor {
12494 interface ::com::sun::star::table::XCellCursor;
12497 module sheet {
12498 published service SheetCellCursor {
12499 service ::com::sun::star::table::CellCursor;
12500 service ::com::sun::star::sheet::SheetCellRange;
12501 interface ::com::sun::star::sheet::XSheetCellCursor;
12502 interface ::com::sun::star::sheet::XUsedAreaCursor;
12504 published interface XSheetCellRanges {
12505 interface ::com::sun::star::container::XIndexAccess;
12506 ::com::sun::star::container::XEnumerationAccess getCells();
12507 string getRangeAddressesAsString();
12508 sequence< ::com::sun::star::table::CellRangeAddress > getRangeAddresses();
12510 published interface XSheetCellRangeContainer {
12511 interface ::com::sun::star::sheet::XSheetCellRanges;
12512 void addRangeAddress([in] ::com::sun::star::table::CellRangeAddress aCellRangeAddress, [in] boolean bMergeRanges);
12513 void removeRangeAddress([in] ::com::sun::star::table::CellRangeAddress aCellRangeAddress) raises (::com::sun::star::container::NoSuchElementException);
12514 void addRangeAddresses([in] sequence< ::com::sun::star::table::CellRangeAddress > aCellRangeAddresses, [in] boolean bMergeRanges);
12515 void removeRangeAddresses([in] sequence< ::com::sun::star::table::CellRangeAddress > aCellRangeAddresses) raises (::com::sun::star::container::NoSuchElementException);
12517 published interface XSheetConditionalEntries;
12518 published service SheetCellRanges {
12519 service ::com::sun::star::table::CellProperties;
12520 service ::com::sun::star::style::CharacterProperties;
12521 service ::com::sun::star::style::CharacterPropertiesAsian;
12522 service ::com::sun::star::style::CharacterPropertiesComplex;
12523 service ::com::sun::star::style::ParagraphProperties;
12524 service ::com::sun::star::sheet::SheetRangesQuery;
12525 interface ::com::sun::star::util::XReplaceable;
12526 interface ::com::sun::star::util::XIndent;
12527 interface ::com::sun::star::sheet::XSheetOperation;
12528 interface ::com::sun::star::chart::XChartDataArray;
12529 interface ::com::sun::star::sheet::XSheetCellRangeContainer;
12530 interface ::com::sun::star::container::XEnumerationAccess;
12531 interface ::com::sun::star::container::XNameContainer;
12532 [property] ::com::sun::star::sheet::XSheetConditionalEntries ConditionalFormat;
12533 [property, optional] ::com::sun::star::sheet::XSheetConditionalEntries ConditionalFormatLocal;
12534 [property] ::com::sun::star::beans::XPropertySet Validation;
12535 [property, optional] ::com::sun::star::beans::XPropertySet ValidationLocal;
12536 [property, optional, readonly] string AbsoluteName;
12538 published service SheetCellRangesEnumeration {
12539 interface ::com::sun::star::container::XEnumeration;
12541 published interface XSheetFilterDescriptor {
12542 interface ::com::sun::star::uno::XInterface;
12543 sequence< ::com::sun::star::sheet::TableFilterField > getFilterFields();
12544 void setFilterFields([in] sequence< ::com::sun::star::sheet::TableFilterField > aFilterFields);
12546 published struct TableFilterField2 {
12547 ::com::sun::star::sheet::FilterConnection Connection;
12548 long Field;
12549 long Operator;
12550 boolean IsNumeric;
12551 double NumericValue;
12552 string StringValue;
12554 published interface XSheetFilterDescriptor2 {
12555 interface ::com::sun::star::uno::XInterface;
12556 sequence< ::com::sun::star::sheet::TableFilterField2 > getFilterFields2();
12557 void setFilterFields2([in] sequence< ::com::sun::star::sheet::TableFilterField2 > aFilterFields);
12560 module table {
12561 published enum TableOrientation {
12562 COLUMNS = 0,
12563 ROWS = 1
12566 module sheet {
12567 published service SheetFilterDescriptor {
12568 interface ::com::sun::star::sheet::XSheetFilterDescriptor;
12569 interface ::com::sun::star::beans::XPropertySet;
12570 [optional] interface ::com::sun::star::sheet::XSheetFilterDescriptor2;
12571 [property] boolean IsCaseSensitive;
12572 [property] boolean SkipDuplicates;
12573 [property] boolean UseRegularExpressions;
12574 [property] boolean SaveOutputPosition;
12575 [property] ::com::sun::star::table::TableOrientation Orientation;
12576 [property] boolean ContainsHeader;
12577 [property] boolean CopyOutputData;
12578 [property] ::com::sun::star::table::CellAddress OutputPosition;
12579 [property, readonly] long MaxFieldCount;
12581 published service SheetLink {
12582 interface ::com::sun::star::container::XNamed;
12583 interface ::com::sun::star::util::XRefreshable;
12584 interface ::com::sun::star::beans::XPropertySet;
12585 [property] string Url;
12586 [property] string Filter;
12587 [property] string FilterOptions;
12589 published enum SheetLinkMode {
12590 NONE = 0,
12591 NORMAL = 1,
12592 VALUE = 2
12594 published service SheetLinks {
12595 interface ::com::sun::star::container::XIndexAccess;
12596 interface ::com::sun::star::container::XNameAccess;
12597 interface ::com::sun::star::container::XEnumerationAccess;
12599 published service SheetLinksEnumeration {
12600 interface ::com::sun::star::container::XEnumeration;
12603 module util {
12604 /** @deprecated */ published service SortDescriptor {
12605 interface ::com::sun::star::beans::XPropertySet;
12606 [property] boolean IsCaseSensitive;
12607 [property, optional] boolean SortAscending;
12608 [property] boolean SortColumns;
12609 [property] ::com::sun::star::lang::Locale CollatorLocale;
12610 [property, optional] string CollatorAlgorithm;
12612 /** @deprecated */ published enum SortFieldType {
12613 AUTOMATIC = 0,
12614 NUMERIC = 1,
12615 ALPHANUMERIC = 2
12617 /** @deprecated */ published struct SortField {
12618 long Field;
12619 boolean SortAscending;
12620 ::com::sun::star::util::SortFieldType FieldType;
12623 module table {
12624 /** @deprecated */ published service TableSortDescriptor {
12625 service ::com::sun::star::util::SortDescriptor;
12626 [property] sequence< ::com::sun::star::util::SortField > SortFields;
12627 [property, readonly] long MaxFieldCount;
12628 /** @deprecated */ [property] ::com::sun::star::table::TableOrientation Orientation;
12629 [property] boolean ContainsHeader;
12632 module sheet {
12633 published service SheetSortDescriptor {
12634 service ::com::sun::star::table::TableSortDescriptor;
12635 [property] boolean BindFormatsToContent;
12636 [property] boolean IsUserListEnabled;
12637 [property] long UserListIndex;
12638 [property] boolean CopyOutputData;
12639 [property] ::com::sun::star::table::CellAddress OutputPosition;
12642 module table {
12643 published enum TableSortFieldType {
12644 AUTOMATIC = 0,
12645 NUMERIC = 1,
12646 ALPHANUMERIC = 2
12648 published struct TableSortField {
12649 long Field;
12650 boolean IsAscending;
12651 boolean IsCaseSensitive;
12652 ::com::sun::star::table::TableSortFieldType FieldType;
12653 ::com::sun::star::lang::Locale CollatorLocale;
12654 string CollatorAlgorithm;
12657 module util {
12658 published service SortDescriptor2 {
12661 module table {
12662 published service TableSortDescriptor2 {
12663 service ::com::sun::star::util::SortDescriptor2;
12664 [property] sequence< ::com::sun::star::table::TableSortField > SortFields;
12665 [property, readonly] long MaxSortFieldsCount;
12666 [property] boolean IsSortColumns;
12669 module sheet {
12670 published service SheetSortDescriptor2 {
12671 service ::com::sun::star::table::TableSortDescriptor2;
12672 [property] boolean BindFormatsToContent;
12673 [property] boolean IsUserListEnabled;
12674 [property] long UserListIndex;
12675 [property] boolean CopyOutputData;
12676 [property] ::com::sun::star::table::CellAddress OutputPosition;
12677 [property] boolean ContainsHeader;
12679 published interface XCellRangeMovement {
12680 interface ::com::sun::star::uno::XInterface;
12681 void insertCells([in] ::com::sun::star::table::CellRangeAddress aRange, [in] ::com::sun::star::sheet::CellInsertMode nMode);
12682 void removeRange([in] ::com::sun::star::table::CellRangeAddress aRange, [in] ::com::sun::star::sheet::CellDeleteMode nMode);
12683 void moveRange([in] ::com::sun::star::table::CellAddress aDestination, [in] ::com::sun::star::table::CellRangeAddress aSource);
12684 void copyRange([in] ::com::sun::star::table::CellAddress aDestination, [in] ::com::sun::star::table::CellRangeAddress aSource);
12686 published interface XDataPilotTablesSupplier {
12687 interface ::com::sun::star::uno::XInterface;
12688 ::com::sun::star::sheet::XDataPilotTables getDataPilotTables();
12690 published interface XPrintAreas {
12691 interface ::com::sun::star::uno::XInterface;
12692 sequence< ::com::sun::star::table::CellRangeAddress > getPrintAreas();
12693 void setPrintAreas([in] sequence< ::com::sun::star::table::CellRangeAddress > aPrintAreas);
12694 boolean getPrintTitleColumns();
12695 void setPrintTitleColumns([in] boolean bPrintTitleColumns);
12696 ::com::sun::star::table::CellRangeAddress getTitleColumns();
12697 void setTitleColumns([in] ::com::sun::star::table::CellRangeAddress aTitleColumns);
12698 boolean getPrintTitleRows();
12699 void setPrintTitleRows([in] boolean bPrintTitleRows);
12700 ::com::sun::star::table::CellRangeAddress getTitleRows();
12701 void setTitleRows([in] ::com::sun::star::table::CellRangeAddress aTitleRows);
12703 published interface XScenariosSupplier {
12704 interface ::com::sun::star::uno::XInterface;
12705 ::com::sun::star::sheet::XScenarios getScenarios();
12707 published interface XSheetAnnotationsSupplier {
12708 interface ::com::sun::star::uno::XInterface;
12709 ::com::sun::star::sheet::XSheetAnnotations getAnnotations();
12711 published interface XSheetAuditing {
12712 interface ::com::sun::star::uno::XInterface;
12713 boolean hideDependents([in] ::com::sun::star::table::CellAddress aPosition);
12714 boolean hidePrecedents([in] ::com::sun::star::table::CellAddress aPosition);
12715 boolean showDependents([in] ::com::sun::star::table::CellAddress aPosition);
12716 boolean showPrecedents([in] ::com::sun::star::table::CellAddress aPosition);
12717 boolean showErrors([in] ::com::sun::star::table::CellAddress aPosition);
12718 boolean showInvalid();
12719 void clearArrows();
12721 /** @deprecated */ published interface XSheetLinkable {
12722 interface ::com::sun::star::uno::XInterface;
12723 ::com::sun::star::sheet::SheetLinkMode getLinkMode();
12724 void setLinkMode([in] ::com::sun::star::sheet::SheetLinkMode nLinkMode);
12725 string getLinkUrl();
12726 void setLinkUrl([in] string aLinkUrl);
12727 string getLinkSheetName();
12728 void setLinkSheetName([in] string aLinkSheetName);
12729 void link([in] string aUrl, [in] string aSheetName, [in] string aFilterName, [in] string aFilterOptions, [in] ::com::sun::star::sheet::SheetLinkMode nMode);
12731 published interface XSheetOutline {
12732 interface ::com::sun::star::uno::XInterface;
12733 void group([in] ::com::sun::star::table::CellRangeAddress aRange, [in] ::com::sun::star::table::TableOrientation nOrientation);
12734 void ungroup([in] ::com::sun::star::table::CellRangeAddress aRange, [in] ::com::sun::star::table::TableOrientation nOrientation);
12735 void autoOutline([in] ::com::sun::star::table::CellRangeAddress aRange);
12736 void clearOutline();
12737 void hideDetail([in] ::com::sun::star::table::CellRangeAddress aRange);
12738 void showDetail([in] ::com::sun::star::table::CellRangeAddress aRange);
12739 void showLevel([in] short nLevel, [in] ::com::sun::star::table::TableOrientation nOrientation);
12741 published struct TablePageBreakData {
12742 long Position;
12743 boolean ManualBreak;
12745 /** @deprecated */ published interface XSheetPageBreak {
12746 interface ::com::sun::star::uno::XInterface;
12747 sequence< ::com::sun::star::sheet::TablePageBreakData > getColumnPageBreaks();
12748 sequence< ::com::sun::star::sheet::TablePageBreakData > getRowPageBreaks();
12749 void removeAllManualPageBreaks();
12751 published interface XSpreadsheet {
12752 interface ::com::sun::star::sheet::XSheetCellRange;
12753 ::com::sun::star::sheet::XSheetCellCursor createCursor();
12754 ::com::sun::star::sheet::XSheetCellCursor createCursorByRange([in] ::com::sun::star::sheet::XSheetCellRange aRange);
12757 module table {
12758 published interface XTableCharts;
12759 published interface XTableChartsSupplier {
12760 interface ::com::sun::star::uno::XInterface;
12761 ::com::sun::star::table::XTableCharts getCharts();
12764 module util {
12765 published interface XProtectable {
12766 interface ::com::sun::star::uno::XInterface;
12767 void protect([in] string aPassword);
12768 void unprotect([in] string aPassword) raises (::com::sun::star::lang::IllegalArgumentException);
12769 boolean isProtected();
12772 module sheet {
12773 published interface XCalculatable {
12774 interface ::com::sun::star::uno::XInterface;
12775 void calculate();
12776 void calculateAll();
12777 boolean isAutomaticCalculationEnabled();
12778 void enableAutomaticCalculation([in] boolean bEnabled);
12780 /** @deprecated */ published interface XConsolidatable {
12781 interface ::com::sun::star::uno::XInterface;
12782 ::com::sun::star::sheet::XConsolidationDescriptor createConsolidationDescriptor([in] boolean bEmpty);
12783 void consolidate([in] ::com::sun::star::sheet::XConsolidationDescriptor xDescriptor);
12785 published interface XDocumentAuditing {
12786 interface ::com::sun::star::uno::XInterface;
12787 void refreshArrows();
12789 published interface XGoalSeek {
12790 interface ::com::sun::star::uno::XInterface;
12791 ::com::sun::star::sheet::GoalResult seekGoal([in] ::com::sun::star::table::CellAddress aFormulaPosition, [in] ::com::sun::star::table::CellAddress aVariablePosition, [in] string aGoalValue);
12793 published interface XSpreadsheets;
12794 published interface XSpreadsheetDocument {
12795 interface ::com::sun::star::uno::XInterface;
12796 ::com::sun::star::sheet::XSpreadsheets getSheets();
12798 published service SpreadsheetDocument {
12799 service ::com::sun::star::document::OfficeDocument;
12800 /** @deprecated */ [optional] service ::com::sun::star::sheet::SpreadsheetDocumentSettings;
12801 interface ::com::sun::star::lang::XMultiServiceFactory;
12802 interface ::com::sun::star::frame::XModel;
12803 interface ::com::sun::star::document::XActionLockable;
12804 interface ::com::sun::star::document::XLinkTargetSupplier;
12805 interface ::com::sun::star::util::XProtectable;
12806 interface ::com::sun::star::sheet::XSpreadsheetDocument;
12807 interface ::com::sun::star::sheet::XCalculatable;
12808 interface ::com::sun::star::sheet::XDocumentAuditing;
12809 interface ::com::sun::star::sheet::XConsolidatable;
12810 interface ::com::sun::star::sheet::XGoalSeek;
12811 interface ::com::sun::star::drawing::XDrawPagesSupplier;
12812 interface ::com::sun::star::style::XStyleFamiliesSupplier;
12813 interface ::com::sun::star::util::XNumberFormatsSupplier;
12814 [property, readonly] ::com::sun::star::sheet::XNamedRanges NamedRanges;
12815 [property, readonly] ::com::sun::star::sheet::XDatabaseRanges DatabaseRanges;
12816 [property, readonly] ::com::sun::star::sheet::XLabelRanges ColumnLabelRanges;
12817 [property, readonly] ::com::sun::star::sheet::XLabelRanges RowLabelRanges;
12818 [property, readonly] ::com::sun::star::container::XNameAccess SheetLinks;
12819 [property, readonly] ::com::sun::star::sheet::XAreaLinks AreaLinks;
12820 [property, readonly] ::com::sun::star::container::XNameAccess DDELinks;
12822 published service SpreadsheetDrawPage {
12823 interface ::com::sun::star::drawing::XDrawPage;
12824 interface ::com::sun::star::drawing::XShapeGrouper;
12826 published interface XViewPane {
12827 interface ::com::sun::star::uno::XInterface;
12828 long getFirstVisibleColumn();
12829 void setFirstVisibleColumn([in] long nFirstVisibleColumn);
12830 long getFirstVisibleRow();
12831 void setFirstVisibleRow([in] long nFirstVisibleRow);
12832 ::com::sun::star::table::CellRangeAddress getVisibleRange();
12834 published service SpreadsheetViewPane {
12835 interface ::com::sun::star::sheet::XViewPane;
12836 interface ::com::sun::star::sheet::XCellRangeReferrer;
12837 [optional] interface ::com::sun::star::view::XControlAccess;
12839 published service SpreadsheetViewSettings {
12840 interface ::com::sun::star::beans::XPropertySet;
12841 [property] boolean ShowFormulas;
12842 [property] boolean ShowZeroValues;
12843 [property] boolean IsValueHighlightingEnabled;
12844 [property] boolean ShowNotes;
12845 [property] boolean HasVerticalScrollBar;
12846 [property] boolean HasHorizontalScrollBar;
12847 [property] boolean HasSheetTabs;
12848 [property] boolean IsOutlineSymbolsSet;
12849 [property] boolean HasColumnRowHeaders;
12850 [property] boolean ShowGrid;
12851 [property] ::com::sun::star::util::Color GridColor;
12852 [property] boolean ShowHelpLines;
12853 [property] boolean ShowAnchor;
12854 [property] boolean ShowPageBreaks;
12855 [property] short ShowObjects;
12856 [property] short ShowCharts;
12857 [property] short ShowDrawing;
12858 [property] boolean HideSpellMarks;
12859 [property] short ZoomType;
12860 [property] short ZoomValue;
12862 published interface XActivationEventListener;
12863 published interface XActivationBroadcaster {
12864 interface ::com::sun::star::uno::XInterface;
12865 void addActivationEventListener([in] ::com::sun::star::sheet::XActivationEventListener aListener);
12866 void removeActivationEventListener([in] ::com::sun::star::sheet::XActivationEventListener aListener);
12868 published interface XEnhancedMouseClickBroadcaster {
12869 interface ::com::sun::star::uno::XInterface;
12870 void addEnhancedMouseClickHandler([in] ::com::sun::star::awt::XEnhancedMouseClickHandler aListener);
12871 void removeEnhancedMouseClickHandler([in] ::com::sun::star::awt::XEnhancedMouseClickHandler aListener);
12873 published interface XRangeSelectionChangeListener;
12874 published interface XRangeSelectionListener;
12875 published interface XRangeSelection {
12876 interface ::com::sun::star::uno::XInterface;
12877 void startRangeSelection([in] sequence< ::com::sun::star::beans::PropertyValue > aArguments);
12878 void abortRangeSelection();
12879 void addRangeSelectionListener([in] ::com::sun::star::sheet::XRangeSelectionListener aListener);
12880 void removeRangeSelectionListener([in] ::com::sun::star::sheet::XRangeSelectionListener aListener);
12881 void addRangeSelectionChangeListener([in] ::com::sun::star::sheet::XRangeSelectionChangeListener aListener);
12882 void removeRangeSelectionChangeListener([in] ::com::sun::star::sheet::XRangeSelectionChangeListener aListener);
12884 published interface XSpreadsheetView {
12885 interface ::com::sun::star::uno::XInterface;
12886 ::com::sun::star::sheet::XSpreadsheet getActiveSheet();
12887 void setActiveSheet([in] ::com::sun::star::sheet::XSpreadsheet xActiveSheet);
12889 published interface XViewFreezable {
12890 interface ::com::sun::star::uno::XInterface;
12891 boolean hasFrozenPanes();
12892 void freezeAtPosition([in] long nColumns, [in] long nRows);
12894 /** @deprecated */ published interface XViewSplitable {
12895 interface ::com::sun::star::uno::XInterface;
12896 boolean getIsWindowSplit();
12897 long getSplitHorizontal();
12898 long getSplitVertical();
12899 long getSplitColumn();
12900 long getSplitRow();
12901 void splitAtPosition([in] long nPixelX, [in] long nPixelY);
12903 published service SpreadsheetView {
12904 service ::com::sun::star::frame::Controller;
12905 service ::com::sun::star::sheet::SpreadsheetViewSettings;
12906 service ::com::sun::star::sheet::SpreadsheetViewPane;
12907 interface ::com::sun::star::sheet::XSpreadsheetView;
12908 interface ::com::sun::star::container::XIndexAccess;
12909 interface ::com::sun::star::container::XEnumerationAccess;
12910 interface ::com::sun::star::view::XSelectionSupplier;
12911 interface ::com::sun::star::sheet::XViewSplitable;
12912 interface ::com::sun::star::sheet::XViewFreezable;
12913 interface ::com::sun::star::sheet::XRangeSelection;
12914 [optional] interface ::com::sun::star::sheet::XEnhancedMouseClickBroadcaster;
12915 [optional] interface ::com::sun::star::sheet::XActivationBroadcaster;
12917 published constants SpreadsheetViewObjectsMode {
12918 const short HIDE = 1;
12919 const short SHOW = 0;
12921 published service SpreadsheetViewPanesEnumeration {
12922 interface ::com::sun::star::container::XEnumeration;
12924 published interface XCellRangesAccess {
12925 interface ::com::sun::star::uno::XInterface;
12926 ::com::sun::star::table::XCell getCellByPosition([in] long nColumn, [in] long nRow, [in] long nSheet) raises (::com::sun::star::lang::IndexOutOfBoundsException);
12927 ::com::sun::star::table::XCellRange getCellRangeByPosition([in] long nLeft, [in] long nTop, [in] long nRight, [in] long nBottom, [in] long nSheet) raises (::com::sun::star::lang::IndexOutOfBoundsException);
12928 sequence< ::com::sun::star::table::XCellRange > getCellRangesByName([in] string aRange) raises (::com::sun::star::lang::IllegalArgumentException);
12930 published interface XSpreadsheets {
12931 interface ::com::sun::star::container::XNameContainer;
12932 void insertNewByName([in] string aName, [in] short nPosition);
12933 void moveByName([in] string aName, [in] short nDestination);
12934 void copyByName([in] string aName, [in] string aCopy, [in] short nDestination);
12936 published service Spreadsheets {
12937 interface ::com::sun::star::sheet::XSpreadsheets;
12938 interface ::com::sun::star::container::XIndexAccess;
12939 interface ::com::sun::star::container::XEnumerationAccess;
12940 [optional] interface ::com::sun::star::sheet::XCellRangesAccess;
12942 published service SpreadsheetsEnumeration {
12943 interface ::com::sun::star::container::XEnumeration;
12945 published constants StatusBarFunction {
12946 const short AVERAGE = 1;
12947 const short COUNT = 3;
12948 const short COUNTNUMS = 2;
12949 const short MAX = 4;
12950 const short MIN = 5;
12951 const short NONE = 0;
12952 const short SUM = 9;
12954 published struct SubTotalColumn {
12955 long Column;
12956 ::com::sun::star::sheet::GeneralFunction Function;
12958 published interface XSubTotalDescriptor {
12959 interface ::com::sun::star::uno::XInterface;
12960 void addNew([in] sequence< ::com::sun::star::sheet::SubTotalColumn > aSubTotalColumns, [in] long nGroupColumn);
12961 void clear();
12963 published service SubTotalDescriptor {
12964 interface ::com::sun::star::sheet::XSubTotalDescriptor;
12965 interface ::com::sun::star::container::XEnumerationAccess;
12966 interface ::com::sun::star::container::XIndexAccess;
12967 interface ::com::sun::star::beans::XPropertySet;
12968 [property] boolean InsertPageBreaks;
12969 [property] boolean IsCaseSensitive;
12970 [property] boolean EnableUserSortList;
12971 [property] long UserSortListIndex;
12972 [property] boolean BindFormatsToContent;
12973 [property] boolean EnableSort;
12974 [property] boolean SortAscending;
12975 [property, readonly] long MaxFieldCount;
12977 published interface XSubTotalField {
12978 interface ::com::sun::star::uno::XInterface;
12979 long getGroupColumn();
12980 void setGroupColumn([in] long nGroupColumn);
12981 sequence< ::com::sun::star::sheet::SubTotalColumn > getSubTotalColumns();
12982 void setSubTotalColumns([in] sequence< ::com::sun::star::sheet::SubTotalColumn > aSubTotalColumns);
12984 published service SubTotalField {
12985 interface ::com::sun::star::sheet::XSubTotalField;
12987 published service SubTotalFieldsEnumeration {
12988 interface ::com::sun::star::container::XEnumeration;
12990 published service TableAutoFormat {
12991 interface ::com::sun::star::beans::XPropertySet;
12992 interface ::com::sun::star::container::XIndexAccess;
12993 interface ::com::sun::star::container::XEnumerationAccess;
12994 interface ::com::sun::star::container::XNamed;
12995 [property] boolean IncludeFont;
12996 [property] boolean IncludeJustify;
12997 [property] boolean IncludeBorder;
12998 [property] boolean IncludeBackground;
12999 [property] boolean IncludeNumberFormat;
13000 [property] boolean IncludeWidthAndHeight;
13002 published service TableAutoFormatEnumeration {
13003 interface ::com::sun::star::container::XEnumeration;
13005 published service TableAutoFormatField {
13006 interface ::com::sun::star::beans::XPropertySet;
13007 [property] string CharFontName;
13008 [property, optional] string CharFontNameAsian;
13009 [property, optional] string CharFontNameComplex;
13010 [property] string CharFontStyleName;
13011 [property, optional] string CharFontStyleNameAsian;
13012 [property, optional] string CharFontStyleNameComplex;
13013 [property] string CharFontCharSet;
13014 [property, optional] string CharFontCharSetAsian;
13015 [property, optional] string CharFontCharSetComplex;
13016 [property] string CharFontFamily;
13017 [property, optional] string CharFontFamilyAsian;
13018 [property, optional] string CharFontFamilyComplex;
13019 [property] string CharFontPitch;
13020 [property, optional] string CharFontPitchAsian;
13021 [property, optional] string CharFontPitchComplex;
13022 [property] float CharHeight;
13023 [property, optional] float CharHeightAsian;
13024 [property, optional] float CharHeightComplex;
13025 [property] float CharWeight;
13026 [property, optional] float CharWeightAsian;
13027 [property, optional] float CharWeightComplex;
13028 [property] ::com::sun::star::awt::FontSlant CharPosture;
13029 [property, optional] ::com::sun::star::awt::FontSlant CharPostureAsian;
13030 [property, optional] ::com::sun::star::awt::FontSlant CharPostureComplex;
13031 [property] short CharUnderline;
13032 [property] boolean CharCrossedOut;
13033 [property] boolean CharContoured;
13034 [property] boolean CharShadowed;
13035 [property] ::com::sun::star::util::Color CharColor;
13036 [property] ::com::sun::star::util::Color CellBackColor;
13037 [property] boolean IsCellBackgroundTransparent;
13038 [property, optional] ::com::sun::star::table::ShadowFormat ShadowFormat;
13039 [property, optional] ::com::sun::star::table::CellHoriJustify HoriJustify;
13040 [property, optional] long VertJustify;
13041 [property, optional] boolean IsTextWrapped;
13042 [property, optional] ::com::sun::star::table::CellOrientation Orientation;
13043 [property, optional] long RotateAngle;
13044 [property, optional] long RotateReference;
13045 [property, optional] long ParaTopMargin;
13046 [property, optional] long ParaBottomMargin;
13047 [property, optional] long ParaLeftMargin;
13048 [property, optional] long ParaRightMargin;
13049 [property, optional] ::com::sun::star::table::TableBorder TableBorder;
13050 [property, optional] ::com::sun::star::table::TableBorder2 TableBorder2;
13052 published service TableAutoFormats {
13053 interface ::com::sun::star::container::XNameContainer;
13054 interface ::com::sun::star::container::XIndexAccess;
13055 interface ::com::sun::star::container::XEnumerationAccess;
13057 published service TableAutoFormatsEnumeration {
13058 interface ::com::sun::star::container::XEnumeration;
13061 module style {
13062 published service CellStyle {
13063 service ::com::sun::star::style::Style;
13066 module sheet {
13067 published service TableCellStyle {
13068 service ::com::sun::star::table::CellProperties;
13069 service ::com::sun::star::style::CellStyle;
13070 service ::com::sun::star::style::CharacterProperties;
13071 service ::com::sun::star::style::CharacterPropertiesAsian;
13072 service ::com::sun::star::style::CharacterPropertiesComplex;
13073 service ::com::sun::star::style::ParagraphProperties;
13075 published interface XSheetCondition {
13076 interface ::com::sun::star::uno::XInterface;
13077 ::com::sun::star::sheet::ConditionOperator getOperator();
13078 void setOperator([in] ::com::sun::star::sheet::ConditionOperator nOperator);
13079 string getFormula1();
13080 void setFormula1([in] string aFormula1);
13081 string getFormula2();
13082 void setFormula2([in] string aFormula2);
13083 ::com::sun::star::table::CellAddress getSourcePosition();
13084 void setSourcePosition([in] ::com::sun::star::table::CellAddress aSourcePosition);
13086 published interface XSheetConditionalEntry {
13087 interface ::com::sun::star::uno::XInterface;
13088 string getStyleName();
13089 void setStyleName([in] string aStyleName);
13091 published service TableConditionalEntry {
13092 interface ::com::sun::star::sheet::XSheetCondition;
13093 interface ::com::sun::star::sheet::XSheetConditionalEntry;
13095 published service TableConditionalEntryEnumeration {
13096 interface ::com::sun::star::container::XEnumeration;
13098 published interface XSheetConditionalEntries {
13099 interface ::com::sun::star::container::XIndexAccess;
13100 void addNew([in] sequence< ::com::sun::star::beans::PropertyValue > aConditionalEntry);
13101 void removeByIndex([in] long nIndex);
13102 void clear();
13104 published service TableConditionalFormat {
13105 interface ::com::sun::star::sheet::XSheetConditionalEntries;
13106 interface ::com::sun::star::container::XNameAccess;
13107 interface ::com::sun::star::container::XEnumerationAccess;
13108 interface ::com::sun::star::container::XIndexAccess;
13111 module style {
13112 published enum PageStyleLayout {
13113 ALL = 0,
13114 LEFT = 1,
13115 RIGHT = 2,
13116 MIRRORED = 3
13119 module text {
13120 published interface XTextColumns;
13122 module style {
13123 published service PageProperties {
13124 [property] ::com::sun::star::util::Color BackColor;
13125 [property] string BackGraphicURL;
13126 [property] string BackGraphicFilter;
13127 [property] ::com::sun::star::style::GraphicLocation BackGraphicLocation;
13128 [property] boolean BackTransparent;
13129 [property] long LeftMargin;
13130 [property] long RightMargin;
13131 [property] long TopMargin;
13132 [property] long BottomMargin;
13133 [property] ::com::sun::star::table::BorderLine LeftBorder;
13134 [property] ::com::sun::star::table::BorderLine RightBorder;
13135 [property] ::com::sun::star::table::BorderLine TopBorder;
13136 [property] ::com::sun::star::table::BorderLine BottomBorder;
13137 [property] long LeftBorderDistance;
13138 [property] long RightBorderDistance;
13139 [property] long TopBorderDistance;
13140 [property] long BottomBorderDistance;
13141 [property] ::com::sun::star::table::ShadowFormat ShadowFormat;
13142 [property] boolean IsLandscape;
13143 [property] short NumberingType;
13144 [property] ::com::sun::star::style::PageStyleLayout PageStyleLayout;
13145 [property] string PrinterPaperTray;
13146 [property, optional] boolean RegisterModeActive;
13147 [property, optional] string RegisterParagraphStyle;
13148 [property] ::com::sun::star::awt::Size Size;
13149 [property] long Width;
13150 [property] long Height;
13151 [property, optional] ::com::sun::star::text::XTextColumns TextColumns;
13152 [property] ::com::sun::star::container::XNameContainer UserDefinedAttributes;
13153 [property, maybevoid] ::com::sun::star::util::Color HeaderBackColor;
13154 [property, maybevoid] string HeaderBackGraphicURL;
13155 [property, maybevoid] string HeaderBackGraphicFilter;
13156 [property, maybevoid] ::com::sun::star::style::GraphicLocation HeaderBackGraphicLocation;
13157 [property, maybevoid] long HeaderLeftMargin;
13158 [property, maybevoid] long HeaderRightMargin;
13159 [property, maybevoid] boolean HeaderBackTransparent;
13160 [property, maybevoid] ::com::sun::star::table::BorderLine HeaderLeftBorder;
13161 [property, maybevoid] ::com::sun::star::table::BorderLine HeaderRightBorder;
13162 [property, maybevoid] ::com::sun::star::table::BorderLine HeaderTopBorder;
13163 [property, maybevoid] ::com::sun::star::table::BorderLine HeaderBottomBorder;
13164 [property, maybevoid] long HeaderLeftBorderDistance;
13165 [property, maybevoid] long HeaderRightBorderDistance;
13166 [property, maybevoid] long HeaderTopBorderDistance;
13167 [property, maybevoid] long HeaderBottomBorderDistance;
13168 [property, maybevoid] ::com::sun::star::table::ShadowFormat HeaderShadowFormat;
13169 [property, maybevoid] long HeaderBodyDistance;
13170 [property, maybevoid] boolean HeaderIsShared;
13171 [property, maybevoid, optional] boolean FirstIsShared;
13172 [property, maybevoid] long HeaderHeight;
13173 [property, maybevoid] boolean HeaderIsDynamicHeight;
13174 [property] boolean HeaderIsOn;
13175 [property, maybevoid, optional] ::com::sun::star::text::XText HeaderText;
13176 [property, maybevoid, optional] ::com::sun::star::text::XText HeaderTextLeft;
13177 [property, maybevoid, optional] ::com::sun::star::text::XText HeaderTextRight;
13178 [property, maybevoid] ::com::sun::star::util::Color FooterBackColor;
13179 [property, maybevoid] string FooterBackGraphicURL;
13180 [property, maybevoid] string FooterBackGraphicFilter;
13181 [property, maybevoid] ::com::sun::star::style::GraphicLocation FooterBackGraphicLocation;
13182 [property, maybevoid] long FooterLeftMargin;
13183 [property, maybevoid] long FooterRightMargin;
13184 [property, maybevoid] boolean FooterBackTransparent;
13185 [property, maybevoid] ::com::sun::star::table::BorderLine FooterLeftBorder;
13186 [property, maybevoid] ::com::sun::star::table::BorderLine FooterRightBorder;
13187 [property, maybevoid] ::com::sun::star::table::BorderLine FooterTopBorder;
13188 [property, maybevoid] ::com::sun::star::table::BorderLine FooterBottomBorder;
13189 [property, maybevoid] long FooterLeftBorderDistance;
13190 [property, maybevoid] long FooterRightBorderDistance;
13191 [property, maybevoid] long FooterTopBorderDistance;
13192 [property, maybevoid] long FooterBottomBorderDistance;
13193 [property, maybevoid] ::com::sun::star::table::ShadowFormat FooterShadowFormat;
13194 [property, maybevoid] long FooterBodyDistance;
13195 [property, maybevoid] boolean FooterIsDynamicHeight;
13196 [property, maybevoid] boolean FooterIsShared;
13197 [property, maybevoid] long FooterHeight;
13198 [property] boolean FooterIsOn;
13199 [property, maybevoid, optional] ::com::sun::star::text::XText FooterText;
13200 [property, maybevoid, optional] ::com::sun::star::text::XText FooterTextLeft;
13201 [property, maybevoid, optional] ::com::sun::star::text::XText FooterTextRight;
13202 [property, optional] long FootnoteHeight;
13203 [property, optional] short FootnoteLineWeight;
13204 [property, optional] short FootnoteLineStyle;
13205 [property, optional] ::com::sun::star::util::Color FootnoteLineColor;
13206 [property, optional] byte FootnoteLineRelativeWidth;
13207 [property, optional] short FootnoteLineAdjust;
13208 [property, optional] long FootnoteLineTextDistance;
13209 [property, optional] long FootnoteLineDistance;
13210 [property, optional] short WritingMode;
13211 [property, optional] short GridMode;
13212 [property, optional] ::com::sun::star::util::Color GridColor;
13213 [property, optional] short GridLines;
13214 [property, optional] long GridBaseHeight;
13215 [property, optional] long GridRubyHeight;
13216 [property, optional] boolean GridRubyBelow;
13217 [property, optional] boolean GridPrint;
13218 [property, optional] boolean GridDisplay;
13219 [property, maybevoid, optional] boolean HeaderDynamicSpacing;
13220 [property, maybevoid, optional] boolean FooterDynamicSpacing;
13221 [property] long BorderDistance;
13222 [property, maybevoid] long FooterBorderDistance;
13223 [property, maybevoid] long HeaderBorderDistance;
13225 published service PageStyle {
13226 service ::com::sun::star::style::Style;
13227 service ::com::sun::star::style::PageProperties;
13230 module sheet {
13231 published service TablePageStyle {
13232 service ::com::sun::star::style::PageStyle;
13233 [property] boolean CenterHorizontally;
13234 [property] boolean CenterVertically;
13235 [property] boolean PrintAnnotations;
13236 [property] boolean PrintGrid;
13237 [property] boolean PrintHeaders;
13238 [property] boolean PrintCharts;
13239 [property] boolean PrintObjects;
13240 [property] boolean PrintDrawing;
13241 [property] boolean PrintFormulas;
13242 [property] boolean PrintZeroValues;
13243 [property] boolean PrintDownFirst;
13244 [property] ::com::sun::star::sheet::XHeaderFooterContent LeftPageHeaderContent;
13245 [property] ::com::sun::star::sheet::XHeaderFooterContent LeftPageFooterContent;
13246 [property] ::com::sun::star::sheet::XHeaderFooterContent RightPageHeaderContent;
13247 [property] ::com::sun::star::sheet::XHeaderFooterContent RightPageFooterContent;
13248 [property] short FirstPageNumber;
13249 [property] short PageScale;
13250 [property] short ScaleToPages;
13251 [property, optional] short ScaleToPagesX;
13252 [property, optional] short ScaleToPagesY;
13254 published enum ValidationAlertStyle {
13255 STOP = 0,
13256 WARNING = 1,
13257 INFO = 2,
13258 MACRO = 3
13260 published enum ValidationType {
13261 ANY = 0,
13262 WHOLE = 1,
13263 DECIMAL = 2,
13264 DATE = 3,
13265 TIME = 4,
13266 TEXT_LEN = 5,
13267 LIST = 6,
13268 CUSTOM = 7
13270 published service TableValidation {
13271 interface ::com::sun::star::beans::XPropertySet;
13272 interface ::com::sun::star::sheet::XSheetCondition;
13273 [property] ::com::sun::star::sheet::ValidationType Type;
13274 [property] boolean ShowInputMessage;
13275 [property] string InputTitle;
13276 [property] string InputMessage;
13277 [property] boolean ShowErrorMessage;
13278 [property] string ErrorTitle;
13279 [property] string ErrorMessage;
13280 [property] boolean IgnoreBlankCells;
13281 [property] ::com::sun::star::sheet::ValidationAlertStyle ErrorAlertStyle;
13282 [property, optional] short ShowList;
13284 published service UniqueCellFormatRanges {
13285 interface ::com::sun::star::container::XIndexAccess;
13286 interface ::com::sun::star::container::XEnumerationAccess;
13288 published service UniqueCellFormatRangesEnumeration {
13289 interface ::com::sun::star::container::XEnumeration;
13291 published interface XResultListener;
13292 published interface XVolatileResult {
13293 interface ::com::sun::star::uno::XInterface;
13294 void addResultListener([in] ::com::sun::star::sheet::XResultListener aListener);
13295 void removeResultListener([in] ::com::sun::star::sheet::XResultListener aListener);
13297 published service VolatileResult {
13298 interface ::com::sun::star::sheet::XVolatileResult;
13300 published interface XActivationEventListener {
13301 interface ::com::sun::star::lang::XEventListener;
13302 void activeSpreadsheetChanged([in] ::com::sun::star::sheet::ActivationEvent aEvent);
13304 /** @deprecated */ published interface XFillAcrossSheet {
13305 interface ::com::sun::star::uno::XInterface;
13306 void fillAcrossSheets([in] long nContentFlags);
13308 published interface XRangeSelectionChangeListener {
13309 interface ::com::sun::star::lang::XEventListener;
13310 void descriptorChanged([in] ::com::sun::star::sheet::RangeSelectionEvent aEvent);
13312 published interface XRangeSelectionListener {
13313 interface ::com::sun::star::lang::XEventListener;
13314 void done([in] ::com::sun::star::sheet::RangeSelectionEvent aEvent);
13315 void aborted([in] ::com::sun::star::sheet::RangeSelectionEvent aEvent);
13317 published interface XResultListener {
13318 interface ::com::sun::star::lang::XEventListener;
13319 void modified([in] ::com::sun::star::sheet::ResultEvent aEvent);
13321 /** @deprecated */ published interface XSheetPastable {
13322 interface ::com::sun::star::uno::XInterface;
13323 void paste([in] ::com::sun::star::table::CellAddress aDestination);
13324 void pasteFormat([in] ::com::sun::star::table::CellAddress aDestination, [in] string aFormat);
13325 void pasteCellRange([in] ::com::sun::star::table::CellRangeAddress aDestination, [in] ::com::sun::star::sheet::PasteOperation nOperation, [in] short nContents, [in] boolean bSkipEmpty, [in] boolean bTranspose, [in] boolean bAsLink, [in] ::com::sun::star::sheet::CellInsertMode nInsert);
13327 /** @deprecated */ published interface XViewPanesSupplier {
13328 interface ::com::sun::star::uno::XInterface;
13329 ::com::sun::star::container::XIndexAccess getViewPanes();
13332 module style {
13333 published constants CaseMap {
13334 const short LOWERCASE = 2;
13335 const short NONE = 0;
13336 const short SMALLCAPS = 4;
13337 const short TITLE = 3;
13338 const short UPPERCASE = 1;
13340 published service CharacterStyle {
13341 service ::com::sun::star::style::Style;
13342 service ::com::sun::star::style::CharacterProperties;
13343 [property] float CharDiffHeight;
13344 [property] short CharPropHeight;
13345 [property] float CharDiffHeightAsian;
13346 [property] short CharPropHeightAsian;
13347 [property] float CharDiffHeightComplex;
13348 [property] short CharPropHeightComplex;
13350 published constants FootnoteLineStyle {
13351 const short DASHED = 3;
13352 const short DOTTED = 2;
13353 const short NONE = 0;
13354 const short SOLID = 1;
13356 published constants LineNumberPosition {
13357 const short INSIDE = 2;
13358 const short LEFT = 0;
13359 const short OUTSIDE = 3;
13360 const short RIGHT = 1;
13362 published constants LineSpacingMode {
13363 const short FIX = 3;
13364 const short LEADING = 2;
13365 const short MINIMUM = 1;
13366 const short PROP = 0;
13368 published service NumberingAlignment {
13369 [property] ::com::sun::star::style::HorizontalAlignment Alignment;
13370 [property] short TextMarginDistance;
13371 [property] short TextNumberingDistance;
13372 [property] short Insertion;
13374 published service NumberingLevel {
13375 [property] short NumberingType;
13376 [property] short ParentNumbering;
13377 [property] string Prefix;
13378 [property] string Suffix;
13379 [property] string CharStyleName;
13380 [property] short BulletId;
13381 [property] string BulletFontName;
13382 [property] string GraphicURL;
13383 [property] short StartWith;
13385 published service NumberingRule {
13386 service ::com::sun::star::style::NumberingAlignment;
13387 service ::com::sun::star::style::NumberingLevel;
13389 published constants NumberingType {
13390 const short AIU_FULLWIDTH_JA = 21;
13391 const short AIU_HALFWIDTH_JA = 22;
13392 const short ARABIC = 4;
13393 const short BITMAP = 8;
13394 const short CHARS_ARABIC = 31;
13395 const short CHARS_ARABIC_ABJAD = 54;
13396 const short CHARS_CYRILLIC_LOWER_LETTER_BG = 39;
13397 const short CHARS_CYRILLIC_LOWER_LETTER_N_BG = 41;
13398 const short CHARS_CYRILLIC_LOWER_LETTER_N_RU = 45;
13399 const short CHARS_CYRILLIC_LOWER_LETTER_N_SR = 51;
13400 const short CHARS_CYRILLIC_LOWER_LETTER_RU = 43;
13401 const short CHARS_CYRILLIC_LOWER_LETTER_SR = 49;
13402 const short CHARS_CYRILLIC_UPPER_LETTER_BG = 38;
13403 const short CHARS_CYRILLIC_UPPER_LETTER_N_BG = 40;
13404 const short CHARS_CYRILLIC_UPPER_LETTER_N_RU = 44;
13405 const short CHARS_CYRILLIC_UPPER_LETTER_N_SR = 50;
13406 const short CHARS_CYRILLIC_UPPER_LETTER_RU = 42;
13407 const short CHARS_CYRILLIC_UPPER_LETTER_SR = 48;
13408 const short CHARS_GREEK_LOWER_LETTER = 53;
13409 const short CHARS_GREEK_UPPER_LETTER = 52;
13410 const short CHARS_HEBREW = 33;
13411 const short CHARS_KHMER = 35;
13412 const short CHARS_LAO = 36;
13413 const short CHARS_LOWER_LETTER = 1;
13414 const short CHARS_LOWER_LETTER_N = 10;
13415 const short CHARS_MYANMAR = 47;
13416 const short CHARS_NEPALI = 34;
13417 const short CHARS_PERSIAN = 46;
13418 const short CHARS_PERSIAN_WORD = 55;
13419 const short CHARS_THAI = 32;
13420 const short CHARS_TIBETAN = 37;
13421 const short CHARS_UPPER_LETTER = 0;
13422 const short CHARS_UPPER_LETTER_N = 9;
13423 const short CHAR_SPECIAL = 6;
13424 const short CIRCLE_NUMBER = 14;
13425 const short DI_ZI_ZH = 19;
13426 const short FULLWIDTH_ARABIC = 13;
13427 const short HANGUL_CIRCLED_JAMO_KO = 29;
13428 const short HANGUL_CIRCLED_SYLLABLE_KO = 30;
13429 const short HANGUL_JAMO_KO = 27;
13430 const short HANGUL_SYLLABLE_KO = 28;
13431 const short IROHA_FULLWIDTH_JA = 23;
13432 const short IROHA_HALFWIDTH_JA = 24;
13433 const short NATIVE_NUMBERING = 12;
13434 const short NUMBER_HANGUL_KO = 26;
13435 const short NUMBER_LOWER_ZH = 15;
13436 const short NUMBER_NONE = 5;
13437 const short NUMBER_TRADITIONAL_JA = 20;
13438 const short NUMBER_UPPER_KO = 25;
13439 const short NUMBER_UPPER_ZH = 16;
13440 const short NUMBER_UPPER_ZH_TW = 17;
13441 const short PAGE_DESCRIPTOR = 7;
13442 const short ROMAN_LOWER = 3;
13443 const short ROMAN_UPPER = 2;
13444 const short TIAN_GAN_ZH = 18;
13445 const short TRANSLITERATION = 11;
13448 module xml {
13449 published service ParaUserDefinedAttributesSupplier {
13450 [property] ::com::sun::star::container::XNameContainer ParaUserDefinedAttributes;
13453 module style {
13454 published service ParagraphStyle {
13455 service ::com::sun::star::style::Style;
13456 service ::com::sun::star::style::ParagraphProperties;
13457 [optional] service ::com::sun::star::xml::ParaUserDefinedAttributesSupplier;
13458 [property] long ParaLeftMarginRelative;
13459 [property] long ParaRightMarginRelative;
13460 [property] long ParaTopMarginRelative;
13461 [property] long ParaBottomMarginRelative;
13462 [property] short Category;
13463 [property] float CharDiffHeight;
13464 [property] short CharPropHeight;
13465 [property] float CharDiffHeightAsian;
13466 [property] short CharPropHeightAsian;
13467 [property] float CharDiffHeightComplex;
13468 [property] short CharPropHeightComplex;
13469 [property, optional, readonly] string PageStyleName;
13471 published constants ParagraphStyleCategory {
13472 const short CHAPTER = 1;
13473 const short EXTRA = 4;
13474 const short HTML = 5;
13475 const short INDEX = 3;
13476 const short LIST = 2;
13477 const short TEXT = 0;
13479 published service StyleFamilies {
13480 interface ::com::sun::star::container::XNameAccess;
13481 [optional] interface ::com::sun::star::container::XIndexAccess;
13483 published service StyleFamily {
13484 interface ::com::sun::star::container::XNameAccess;
13485 [optional] interface ::com::sun::star::container::XNameContainer;
13486 [optional] interface ::com::sun::star::container::XIndexAccess;
13488 published interface XStyleLoader {
13489 interface ::com::sun::star::uno::XInterface;
13490 void loadStylesFromURL([in] string URL, [in] sequence< ::com::sun::star::beans::PropertyValue > aOptions) raises (::com::sun::star::io::IOException);
13491 sequence< ::com::sun::star::beans::PropertyValue > getStyleLoaderOptions();
13494 module svg {
13495 /** @deprecated */ published interface XSVGPrinter {
13496 interface ::com::sun::star::uno::XInterface;
13497 boolean startJob([in] ::com::sun::star::xml::sax::XDocumentHandler aHandler, [in] sequence< byte > aJobSetup, [in] string aJobName, [in] unsigned long nCopies, [in] boolean bCollate);
13498 void printPage([in] sequence< byte > aPrintPage);
13499 void endJob();
13501 /** @deprecated */ published interface XSVGWriter {
13502 interface ::com::sun::star::uno::XInterface;
13503 void write([in] ::com::sun::star::xml::sax::XDocumentHandler aHandler, [in] sequence< byte > aMtf);
13506 module system {
13507 published interface XSimpleMailClient;
13508 published interface XSimpleMailClientSupplier {
13509 interface ::com::sun::star::uno::XInterface;
13510 ::com::sun::star::system::XSimpleMailClient querySimpleMailClient();
13512 published service SimpleCommandMail: ::com::sun::star::system::XSimpleMailClientSupplier;
13513 published constants SimpleMailClientFlags {
13514 const long DEFAULTS = 0;
13515 const long NO_LOGON_DIALOG = 2;
13516 const long NO_USER_INTERFACE = 1;
13518 published service SimpleSystemMail: ::com::sun::star::system::XSimpleMailClientSupplier;
13519 published exception SystemShellExecuteException: ::com::sun::star::uno::Exception {
13520 long PosixError;
13522 published interface XSystemShellExecute {
13523 interface ::com::sun::star::uno::XInterface;
13524 void execute([in] string aCommand, [in] string aParameter, [in] long nFlags) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::system::SystemShellExecuteException);
13526 published service SystemShellExecute: ::com::sun::star::system::XSystemShellExecute;
13527 published constants SystemShellExecuteFlags {
13528 const long DEFAULTS = 0;
13529 const long NO_SYSTEM_ERROR_MESSAGE = 1;
13530 const long URIS_ONLY = 2;
13532 published interface XSimpleMailMessage;
13533 published interface XSimpleMailClient {
13534 interface ::com::sun::star::uno::XInterface;
13535 ::com::sun::star::system::XSimpleMailMessage createSimpleMailMessage();
13536 void sendSimpleMailMessage([in] ::com::sun::star::system::XSimpleMailMessage xSimpleMailMessage, [in] long aFlag) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::Exception);
13538 published interface XSimpleMailMessage {
13539 interface ::com::sun::star::uno::XInterface;
13540 void setRecipient([in] string aRecipient);
13541 string getRecipient();
13542 void setCcRecipient([in] sequence< string > aCcRecipient);
13543 sequence< string > getCcRecipient();
13544 void setBccRecipient([in] sequence< string > aBccRecipient);
13545 sequence< string > getBccRecipient();
13546 void setOriginator([in] string aOriginator);
13547 string getOriginator();
13548 void setSubject([in] string aSubject);
13549 string getSubject();
13550 void setAttachement([in] sequence< string > aAttachement) raises (::com::sun::star::lang::IllegalArgumentException);
13551 sequence< string > getAttachement();
13554 module table {
13555 published enum CellVertJustify {
13556 STANDARD = 0,
13557 TOP = 1,
13558 CENTER = 2,
13559 BOTTOM = 3
13561 published struct TableBorderDistances {
13562 short TopDistance;
13563 boolean IsTopDistanceValid;
13564 short BottomDistance;
13565 boolean IsBottomDistanceValid;
13566 short LeftDistance;
13567 boolean IsLeftDistanceValid;
13568 short RightDistance;
13569 boolean IsRightDistanceValid;
13571 published interface XTableChart {
13572 interface ::com::sun::star::uno::XInterface;
13573 boolean getHasColumnHeaders();
13574 void setHasColumnHeaders([in] boolean bHasColumnHeaders);
13575 boolean getHasRowHeaders();
13576 void setHasRowHeaders([in] boolean bHasRowHeaders);
13577 sequence< ::com::sun::star::table::CellRangeAddress > getRanges();
13578 void setRanges([in] sequence< ::com::sun::star::table::CellRangeAddress > aRanges);
13580 published service TableChart {
13581 interface ::com::sun::star::table::XTableChart;
13582 interface ::com::sun::star::document::XEmbeddedObjectSupplier;
13583 interface ::com::sun::star::container::XNamed;
13585 published interface XTableCharts {
13586 interface ::com::sun::star::container::XNameAccess;
13587 void addNewByName([in] string aName, [in] ::com::sun::star::awt::Rectangle aRect, [in] sequence< ::com::sun::star::table::CellRangeAddress > aRanges, [in] boolean bColumnHeaders, [in] boolean bRowHeaders);
13588 void removeByName([in] string aName);
13590 published service TableCharts {
13591 interface ::com::sun::star::table::XTableCharts;
13592 interface ::com::sun::star::container::XIndexAccess;
13593 interface ::com::sun::star::container::XEnumerationAccess;
13595 published service TableChartsEnumeration {
13596 interface ::com::sun::star::container::XEnumeration;
13598 published service TableColumn {
13599 interface ::com::sun::star::table::XCellRange;
13600 interface ::com::sun::star::beans::XPropertySet;
13601 interface ::com::sun::star::container::XNamed;
13602 [property] long Width;
13603 [property] boolean OptimalWidth;
13604 [property] boolean IsVisible;
13605 [property] boolean IsStartOfNewPage;
13607 published interface XTableColumns {
13608 interface ::com::sun::star::container::XIndexAccess;
13609 void insertByIndex([in] long nIndex, [in] long nCount);
13610 void removeByIndex([in] long nIndex, [in] long nCount);
13612 published service TableColumns {
13613 interface ::com::sun::star::table::XTableColumns;
13614 interface ::com::sun::star::container::XEnumerationAccess;
13615 [optional] interface ::com::sun::star::container::XNameAccess;
13617 published service TableColumnsEnumeration {
13618 interface ::com::sun::star::container::XEnumeration;
13620 published service TableRow {
13621 interface ::com::sun::star::table::XCellRange;
13622 interface ::com::sun::star::beans::XPropertySet;
13623 [property] long Height;
13624 [property] boolean OptimalHeight;
13625 [property] boolean IsVisible;
13626 [property] boolean IsStartOfNewPage;
13628 published interface XTableRows {
13629 interface ::com::sun::star::container::XIndexAccess;
13630 void insertByIndex([in] long nIndex, [in] long nCount);
13631 void removeByIndex([in] long nIndex, [in] long nCount);
13633 published service TableRows {
13634 interface ::com::sun::star::table::XTableRows;
13635 interface ::com::sun::star::container::XEnumerationAccess;
13637 published service TableRowsEnumeration {
13638 interface ::com::sun::star::container::XEnumeration;
13641 module task {
13642 published interface XJobListener;
13643 published interface XAsyncJob {
13644 interface ::com::sun::star::uno::XInterface;
13645 void executeAsync([in] sequence< ::com::sun::star::beans::NamedValue > Arguments, [in] ::com::sun::star::task::XJobListener Listener) raises (::com::sun::star::lang::IllegalArgumentException);
13647 published service AsyncJob {
13648 interface ::com::sun::star::task::XAsyncJob;
13649 [optional] interface ::com::sun::star::util::XCloseable;
13651 published enum PasswordRequestMode {
13652 PASSWORD_CREATE = 0,
13653 PASSWORD_ENTER = 1,
13654 PASSWORD_REENTER = 2
13656 published exception PasswordRequest: ::com::sun::star::task::ClassifiedInteractionRequest {
13657 ::com::sun::star::task::PasswordRequestMode Mode;
13659 published exception DocumentMSPasswordRequest: ::com::sun::star::task::PasswordRequest {
13660 string Name;
13662 published exception DocumentPasswordRequest: ::com::sun::star::task::PasswordRequest {
13663 string Name;
13665 published exception ErrorCodeRequest: ::com::sun::star::uno::Exception {
13666 long ErrCode;
13668 published service InteractionHandler: ::com::sun::star::task::XInteractionHandler2 {
13669 createWithParent([in] ::com::sun::star::awt::XWindow parent);
13670 createWithParentAndContext([in] ::com::sun::star::awt::XWindow parent, [in] string context);
13672 published service Job {
13673 interface ::com::sun::star::task::XJob;
13674 [optional] interface ::com::sun::star::util::XCloseable;
13676 published interface XJobExecutor {
13677 interface ::com::sun::star::uno::XInterface;
13678 void trigger([in] string Event);
13680 /** @deprecated */ published service JobExecutor: ::com::sun::star::task::XJobExecutor;
13681 published exception MasterPasswordRequest: ::com::sun::star::task::PasswordRequest {
13683 published exception NoMasterException: ::com::sun::star::uno::RuntimeException {
13684 ::com::sun::star::task::PasswordRequestMode Mode;
13686 published interface XRestartManager {
13687 interface ::com::sun::star::uno::XInterface;
13688 void requestRestart([in] ::com::sun::star::task::XInteractionHandler xInteractionHandler) raises (::com::sun::star::uno::Exception);
13689 boolean isRestartRequested([in] boolean bInitialized) raises (::com::sun::star::uno::Exception);
13691 published exception PDFExportException: ::com::sun::star::uno::Exception {
13692 sequence< long > ErrorCodes;
13694 published interface XMasterPasswordHandling {
13695 interface ::com::sun::star::uno::XInterface;
13696 boolean authorizateWithMasterPassword([in] ::com::sun::star::task::XInteractionHandler xHandler);
13697 boolean changeMasterPassword([in] ::com::sun::star::task::XInteractionHandler xHandler);
13698 void removeMasterPassword();
13699 boolean hasMasterPassword();
13700 boolean allowPersistentStoring([in] boolean bAllow);
13701 boolean isPersistentStoringAllowed();
13703 published interface XMasterPasswordHandling2 {
13704 interface ::com::sun::star::task::XMasterPasswordHandling;
13705 boolean useDefaultMasterPassword([in] ::com::sun::star::task::XInteractionHandler xHandler);
13706 boolean isDefaultMasterPasswordUsed();
13708 published struct UserRecord {
13709 string UserName;
13710 sequence< string > Passwords;
13712 published struct UrlRecord {
13713 string Url;
13714 sequence< ::com::sun::star::task::UserRecord > UserList;
13716 published interface XPasswordContainer {
13717 interface ::com::sun::star::uno::XInterface;
13718 void add([in] string Url, [in] string UserName, [in] sequence< string > Passwords, [in] ::com::sun::star::task::XInteractionHandler Handler);
13719 void addPersistent([in] string Url, [in] string UserName, [in] sequence< string > Passwords, [in] ::com::sun::star::task::XInteractionHandler Handler);
13720 ::com::sun::star::task::UrlRecord find([in] string Url, [in] ::com::sun::star::task::XInteractionHandler Handler);
13721 ::com::sun::star::task::UrlRecord findForName([in] string Url, [in] string UserName, [in] ::com::sun::star::task::XInteractionHandler Handler);
13722 void remove([in] string Url, [in] string UserName);
13723 void removePersistent([in] string Url, [in] string UserName);
13724 void removeAllPersistent();
13725 sequence< ::com::sun::star::task::UrlRecord > getAllPersistent([in] ::com::sun::star::task::XInteractionHandler Handler);
13727 published interface XUrlContainer {
13728 interface ::com::sun::star::uno::XInterface;
13729 void addUrl([in] string Url, [in] boolean MakePersistent);
13730 string findUrl([in] string Url);
13731 void removeUrl([in] string Url);
13732 sequence< string > getUrls([in] boolean OnlyPersistent);
13734 published interface XPasswordContainer2 {
13735 interface ::com::sun::star::task::XPasswordContainer;
13736 interface ::com::sun::star::task::XMasterPasswordHandling2;
13737 interface ::com::sun::star::task::XUrlContainer;
13739 published service PasswordContainer: ::com::sun::star::task::XPasswordContainer2;
13740 published service PasswordContainerInteractionHandler: ::com::sun::star::task::XInteractionHandler;
13741 published exception UnsupportedOverwriteRequest: ::com::sun::star::task::ClassifiedInteractionRequest {
13742 string Name;
13744 published interface XInteractionApprove {
13745 interface ::com::sun::star::task::XInteractionContinuation;
13747 published interface XInteractionDisapprove {
13748 interface ::com::sun::star::task::XInteractionContinuation;
13750 published interface XInteractionPassword {
13751 interface ::com::sun::star::task::XInteractionContinuation;
13752 void setPassword([in] string aPasswd);
13753 string getPassword();
13755 published interface XInteractionPassword2 {
13756 interface ::com::sun::star::task::XInteractionPassword;
13757 void setPasswordToModify([in] string aPasswd);
13758 string getPasswordToModify();
13759 void setRecommendReadOnly([in] boolean bReadOnly);
13760 boolean getRecommendReadOnly();
13762 published interface XJobListener {
13763 interface ::com::sun::star::lang::XEventListener;
13764 void jobFinished([in] ::com::sun::star::task::XAsyncJob Job, [in] any Result);
13766 published interface XStatusIndicator {
13767 interface ::com::sun::star::uno::XInterface;
13768 void start([in] string Text, [in] long Range);
13769 void end();
13770 void setText([in] string Text);
13771 void setValue([in] long Value);
13772 void reset();
13774 /** @deprecated */ published interface XStatusIndicatorSupplier {
13775 interface ::com::sun::star::uno::XInterface;
13776 /** @deprecated */ ::com::sun::star::task::XStatusIndicator getStatusIndicator();
13778 published singleton theJobExecutor: ::com::sun::star::task::XJobExecutor;
13780 module text {
13781 published constants AuthorDisplayFormat {
13782 const short FIRST_NAME = 2;
13783 const short FULL = 0;
13784 const short INITIALS = 3;
13785 const short LAST_NAME = 1;
13787 published interface XAutoTextGroup;
13788 published interface XAutoTextContainer {
13789 interface ::com::sun::star::container::XNameAccess;
13790 ::com::sun::star::text::XAutoTextGroup insertNewByName([in] string aGroupName) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::ElementExistException);
13791 void removeByName([in] string aGroupName) raises (::com::sun::star::container::NoSuchElementException);
13793 published interface XAutoTextContainer2 {
13794 interface ::com::sun::star::text::XAutoTextContainer;
13795 interface ::com::sun::star::container::XIndexAccess;
13797 published service AutoTextContainer: ::com::sun::star::text::XAutoTextContainer2;
13798 /** @deprecated */ published interface XAutoTextEntry {
13799 interface ::com::sun::star::uno::XInterface;
13800 void applyTo([in] ::com::sun::star::text::XTextRange xRange);
13802 published service AutoTextEntry {
13803 interface ::com::sun::star::text::XAutoTextEntry;
13804 interface ::com::sun::star::text::XText;
13806 published interface XAutoTextGroup {
13807 interface ::com::sun::star::container::XNameAccess;
13808 sequence< string > getTitles();
13809 void renameByName([in] string aElementName, [in] string aNewElementName, [in] string aNewElementTitle) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::ElementExistException, ::com::sun::star::io::IOException);
13810 ::com::sun::star::text::XAutoTextEntry insertNewByName([in] string aName, [in] string aTitle, [in] ::com::sun::star::text::XTextRange xTextRange) raises (::com::sun::star::container::ElementExistException);
13811 void removeByName([in] string aEntryName) raises (::com::sun::star::container::NoSuchElementException);
13813 published service AutoTextGroup {
13814 interface ::com::sun::star::text::XAutoTextGroup;
13815 interface ::com::sun::star::container::XIndexAccess;
13816 interface ::com::sun::star::container::XNamed;
13817 [property, readonly] string FilePath;
13818 [property] string Title;
13820 published interface XTextFrame;
13821 published service BaseFrameProperties {
13822 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
13823 [property] short AnchorPageNo;
13824 [property] ::com::sun::star::text::XTextFrame AnchorFrame;
13825 [property] ::com::sun::star::util::Color BackColor;
13826 [property] string BackGraphicURL;
13827 [property] string BackGraphicFilter;
13828 [property] ::com::sun::star::style::GraphicLocation BackGraphicLocation;
13829 [property] ::com::sun::star::table::BorderLine LeftBorder;
13830 [property] ::com::sun::star::table::BorderLine RightBorder;
13831 [property] ::com::sun::star::table::BorderLine TopBorder;
13832 [property] ::com::sun::star::table::BorderLine BottomBorder;
13833 [property] long BorderDistance;
13834 [property] long LeftBorderDistance;
13835 [property] long RightBorderDistance;
13836 [property] long TopBorderDistance;
13837 [property] long BottomBorderDistance;
13838 [property] boolean BackTransparent;
13839 [property] boolean ContentProtected;
13840 [property] long LeftMargin;
13841 [property] long RightMargin;
13842 [property] long TopMargin;
13843 [property] long BottomMargin;
13844 [property] long Height;
13845 [property] long Width;
13846 [property] short RelativeHeight;
13847 [property] short RelativeWidth;
13848 [property] boolean IsSyncWidthToHeight;
13849 [property] boolean IsSyncHeightToWidth;
13850 [property] short HoriOrient;
13851 [property] long HoriOrientPosition;
13852 [property] short HoriOrientRelation;
13853 [property] short VertOrient;
13854 [property] long VertOrientPosition;
13855 [property] short VertOrientRelation;
13856 [property] string HyperLinkURL;
13857 [property] string HyperLinkTarget;
13858 [property] string HyperLinkName;
13859 [property] boolean Opaque;
13860 [property] boolean PageToggle;
13861 [property] boolean PositionProtected;
13862 [property] boolean Print;
13863 [property] ::com::sun::star::table::ShadowFormat ShadowFormat;
13864 [property] boolean ServerMap;
13865 [property] ::com::sun::star::awt::Size Size;
13866 [property] boolean SizeProtected;
13867 /** @deprecated */ [property] ::com::sun::star::text::WrapTextMode Surround;
13868 [property] boolean SurroundAnchorOnly;
13869 [property, optional] short WrapInfluenceOnPosition;
13870 [property, maybevoid, optional] ::com::sun::star::awt::Size LayoutSize;
13871 [property, optional] string Title;
13872 [property, optional] string Description;
13873 [property, optional] ::com::sun::star::drawing::FillStyle FillStyle;
13874 [property, optional] ::com::sun::star::awt::Gradient FillGradient;
13875 [property, optional] string FillGradientName;
13876 [property, optional] short ShadowTransparence;
13877 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > FrameInteropGrabBag;
13878 [property, optional] short RelativeHeightRelation;
13879 [property, optional] short RelativeWidthRelation;
13881 published service BaseFrame {
13882 service ::com::sun::star::text::BaseFrameProperties;
13883 service ::com::sun::star::text::TextContent;
13884 interface ::com::sun::star::beans::XPropertySet;
13885 interface ::com::sun::star::container::XNamed;
13886 [optional] interface ::com::sun::star::drawing::XShape;
13887 [property] string FrameStyleName;
13889 /** @deprecated */ published interface XDocumentIndex {
13890 interface ::com::sun::star::text::XTextContent;
13891 string getServiceName();
13892 void update();
13894 published interface XTextColumns;
13895 published interface XTextSection;
13896 published service BaseIndex {
13897 interface ::com::sun::star::text::XDocumentIndex;
13898 [optional] interface ::com::sun::star::util::XRefreshable;
13899 [property] string Title;
13900 [property] boolean IsProtected;
13901 [property] string ParaStyleHeading;
13902 [property] string ParaStyleLevel1;
13903 [property, optional] string ParaStyleLevel2;
13904 [property, optional] string ParaStyleLevel3;
13905 [property, optional] string ParaStyleLevel4;
13906 [property, optional] string ParaStyleLevel5;
13907 [property, optional] string ParaStyleLevel6;
13908 [property, optional] string ParaStyleLevel7;
13909 [property, optional] string ParaStyleLevel8;
13910 [property, optional] string ParaStyleLevel9;
13911 [property, optional] string ParaStyleLevel10;
13912 [property, optional] string ParaStyleSeparator;
13913 [property] ::com::sun::star::text::XTextColumns TextColumns;
13914 [property] string BackGraphicURL;
13915 [property] string BackGraphicFilter;
13916 [property] ::com::sun::star::style::GraphicLocation BackGraphicLocation;
13917 [property] ::com::sun::star::util::Color BackColor;
13918 [property] boolean BackTransparent;
13919 [property, optional] ::com::sun::star::container::XIndexReplace LevelFormat;
13920 [property, optional] boolean CreateFromChapter;
13921 [property] ::com::sun::star::text::XTextSection ContentSection;
13922 [property] ::com::sun::star::text::XTextSection HeaderSection;
13924 published service BaseIndexMark {
13925 service ::com::sun::star::text::TextContent;
13926 [property] string AlternativeText;
13928 published service Bibliography {
13929 service ::com::sun::star::text::BaseIndex;
13930 [property] ::com::sun::star::lang::Locale Locale;
13931 [property] string SortAlgorithm;
13933 published constants BibliographyDataField {
13934 const short ADDRESS = 2;
13935 const short ANNOTE = 3;
13936 const short AUTHOR = 4;
13937 const short BIBILIOGRAPHIC_TYPE = 1;
13938 const short BOOKTITLE = 5;
13939 const short CHAPTER = 6;
13940 const short CUSTOM1 = 25;
13941 const short CUSTOM2 = 26;
13942 const short CUSTOM3 = 27;
13943 const short CUSTOM4 = 28;
13944 const short CUSTOM5 = 29;
13945 const short EDITION = 7;
13946 const short EDITOR = 8;
13947 const short HOWPUBLISHED = 9;
13948 const short IDENTIFIER = 0;
13949 const short INSTITUTION = 10;
13950 const short ISBN = 30;
13951 const short JOURNAL = 11;
13952 const short MONTH = 12;
13953 const short NOTE = 13;
13954 const short NUMBER = 14;
13955 const short ORGANIZATIONS = 15;
13956 const short PAGES = 16;
13957 const short PUBLISHER = 17;
13958 const short REPORT_TYPE = 21;
13959 const short SCHOOL = 18;
13960 const short SERIES = 19;
13961 const short TITLE = 20;
13962 const short URL = 24;
13963 const short VOLUME = 22;
13964 const short YEAR = 23;
13966 published constants BibliographyDataType {
13967 const short ARTICLE = 0;
13968 const short BOOK = 1;
13969 const short BOOKLET = 2;
13970 const short CONFERENCE = 3;
13971 const short CUSTOM1 = 17;
13972 const short CUSTOM2 = 18;
13973 const short CUSTOM3 = 19;
13974 const short CUSTOM4 = 20;
13975 const short CUSTOM5 = 21;
13976 const short EMAIL = 15;
13977 const short INBOOK = 4;
13978 const short INCOLLECTION = 5;
13979 const short INPROCEEDINGS = 6;
13980 const short JOURNAL = 7;
13981 const short MANUAL = 8;
13982 const short MASTERSTHESIS = 9;
13983 const short MISC = 10;
13984 const short PHDTHESIS = 11;
13985 const short PROCEEDINGS = 12;
13986 const short TECHREPORT = 13;
13987 const short UNPUBLISHED = 14;
13988 const short WWW = 16;
13990 published service Bookmark {
13991 service ::com::sun::star::text::TextContent;
13992 interface ::com::sun::star::container::XNamed;
13994 published service Bookmarks {
13995 interface ::com::sun::star::container::XNameAccess;
13996 interface ::com::sun::star::container::XIndexAccess;
13998 published interface XTextSection;
13999 published service CellProperties {
14000 service ::com::sun::star::xml::UserDefinedAttributesSupplier;
14001 interface ::com::sun::star::beans::XPropertySet;
14002 [property] string CellName;
14003 [property] ::com::sun::star::util::Color BackColor;
14004 [property] string BackGraphicURL;
14005 [property] string BackGraphicFilter;
14006 [property] ::com::sun::star::style::GraphicLocation BackGraphicLocation;
14007 [property] long NumberFormat;
14008 [property] boolean BackTransparent;
14009 [property] ::com::sun::star::table::BorderLine LeftBorder;
14010 [property] ::com::sun::star::table::BorderLine RightBorder;
14011 [property] ::com::sun::star::table::BorderLine TopBorder;
14012 [property] ::com::sun::star::table::BorderLine BottomBorder;
14013 [property] long LeftBorderDistance;
14014 [property] long RightBorderDistance;
14015 [property] long TopBorderDistance;
14016 [property] long BottomBorderDistance;
14017 [property, readonly] ::com::sun::star::text::XTextSection TextSection;
14018 [property] boolean IsProtected;
14019 [property] short VertOrient;
14021 published service CellRange {
14022 service ::com::sun::star::style::CharacterProperties;
14023 service ::com::sun::star::style::CharacterPropertiesAsian;
14024 service ::com::sun::star::style::CharacterPropertiesComplex;
14025 service ::com::sun::star::style::ParagraphProperties;
14026 [optional] service ::com::sun::star::style::ParagraphPropertiesAsian;
14027 [optional] service ::com::sun::star::style::ParagraphPropertiesComplex;
14028 interface ::com::sun::star::table::XCellRange;
14029 [optional] interface ::com::sun::star::sheet::XCellRangeData;
14030 [optional] interface ::com::sun::star::chart::XChartDataArray;
14031 [property] ::com::sun::star::util::Color BackColor;
14032 [property] string BackGraphicFilter;
14033 [property] ::com::sun::star::style::GraphicLocation BackGraphicLocation;
14034 [property] string BackGraphicURL;
14035 [property] boolean BackTransparent;
14036 [property] boolean ChartColumnAsLabel;
14037 [property] boolean ChartRowAsLabel;
14038 [property] long NumberFormat;
14040 published interface XTextFrame {
14041 interface ::com::sun::star::text::XTextContent;
14042 ::com::sun::star::text::XText getText();
14044 published service TextFrame {
14045 service ::com::sun::star::text::BaseFrame;
14046 interface ::com::sun::star::text::XTextFrame;
14047 [property] long FrameHeightAbsolute;
14048 [property] long FrameWidthAbsolute;
14049 [property] byte FrameWidthPercent;
14050 [property] byte FrameHeightPercent;
14051 [property] boolean FrameIsAutomaticHeight;
14052 [property] short SizeType;
14053 [property, optional] boolean EditInReadonly;
14054 [property, optional] short WidthType;
14055 [property, optional] short WritingMode;
14056 [property, optional] boolean IsFollowingTextFlow;
14057 [property, optional] ::com::sun::star::drawing::TextVerticalAdjust TextVerticalAdjust;
14059 published service ChainedTextFrame {
14060 service ::com::sun::star::text::TextFrame;
14061 [property, maybevoid] string ChainNextName;
14062 [property, maybevoid] string ChainPrevName;
14064 published constants ChapterFormat {
14065 const short DIGIT = 4;
14066 const short NAME = 0;
14067 const short NAME_NUMBER = 2;
14068 const short NO_PREFIX_SUFFIX = 3;
14069 const short NUMBER = 1;
14071 published service ChapterNumberingRule {
14072 service ::com::sun::star::style::NumberingRule;
14073 [property] string HeadingStyleName;
14075 published constants CharacterCompressionType {
14076 const short NONE = 0;
14077 const short PUNCTUATION_AND_KANA = 2;
14078 const short PUNCTUATION_ONLY = 1;
14080 published constants ColumnSeparatorStyle {
14081 const short DASHED = 3;
14082 const short DOTTED = 2;
14083 const short NONE = 0;
14084 const short SOLID = 1;
14086 published service ContentIndex {
14087 service ::com::sun::star::text::BaseIndex;
14088 [property, optional] short Level;
14089 [property, optional] boolean CreateFromOutline;
14090 [property, optional] ::com::sun::star::container::XIndexReplace LevelParagraphStyles;
14091 [property, optional] boolean CreateFromMarks;
14093 published service ContentIndexMark {
14094 service ::com::sun::star::text::TextContent;
14095 service ::com::sun::star::text::BaseIndexMark;
14096 [property] short Level;
14098 published constants ControlCharacter {
14099 const short APPEND_PARAGRAPH = 5;
14100 const short HARD_HYPHEN = 2;
14101 const short HARD_SPACE = 4;
14102 const short LINE_BREAK = 1;
14103 const short PARAGRAPH_BREAK = 0;
14104 const short SOFT_HYPHEN = 3;
14106 /** @deprecated */ published constants DateDisplayFormat {
14107 const short DDMMMMYYYY = 5;
14108 const short DDMMMYYYY = 4;
14109 const short MMDDYY = 2;
14110 const short MMDDYYYY = 3;
14111 const short NNDDMMMMYYYY = 6;
14112 const short NNNNDDMMMMYYYY = 7;
14113 const short STANDARD_LONG = 1;
14114 const short STANDARD_SHORT = 0;
14116 published interface XDefaultNumberingProvider {
14117 interface ::com::sun::star::uno::XInterface;
14118 sequence< ::com::sun::star::container::XIndexAccess > getDefaultOutlineNumberings([in] ::com::sun::star::lang::Locale aLocale);
14119 sequence< ::com::sun::star::beans::PropertyValues > getDefaultContinuousNumberingLevels([in] ::com::sun::star::lang::Locale aLocale);
14121 published service DefaultNumberingProvider: ::com::sun::star::text::XDefaultNumberingProvider;
14122 published service Defaults {
14123 service ::com::sun::star::style::CharacterProperties;
14124 service ::com::sun::star::style::ParagraphProperties;
14125 [optional] service ::com::sun::star::style::CharacterPropertiesAsian;
14126 [optional] service ::com::sun::star::style::CharacterPropertiesComplex;
14127 [optional] service ::com::sun::star::style::ParagraphPropertiesAsian;
14128 [optional] service ::com::sun::star::style::ParagraphPropertiesComplex;
14129 interface ::com::sun::star::beans::XPropertySet;
14130 [property] long TabStopDistance;
14132 published interface XDependentTextField {
14133 interface ::com::sun::star::text::XTextField;
14134 void attachTextFieldMaster([in] ::com::sun::star::beans::XPropertySet xFieldMaster) raises (::com::sun::star::lang::IllegalArgumentException);
14135 ::com::sun::star::beans::XPropertySet getTextFieldMaster();
14137 published service DependentTextField {
14138 service ::com::sun::star::text::TextField;
14139 interface ::com::sun::star::text::XDependentTextField;
14141 published interface XDocumentIndexMark;
14142 published service DocumentIndex {
14143 service ::com::sun::star::text::BaseIndex;
14144 [property, optional] boolean UseAlphabeticalSeparators;
14145 [property, optional] boolean UseKeyAsEntry;
14146 [property, optional] boolean UseCombinedEntries;
14147 [property, optional] boolean IsCaseSensitive;
14148 [property, optional] boolean UsePP;
14149 [property, optional] boolean UseDash;
14150 [property, optional] boolean UseUpperCase;
14151 [property, optional] string MainEntryCharacterStyleName;
14152 [property, readonly] sequence< ::com::sun::star::text::XDocumentIndexMark > DocumentIndexMarks;
14153 [property] ::com::sun::star::lang::Locale Locale;
14154 [property] string SortAlgorithm;
14156 published service DocumentIndexLevelFormat {
14157 interface ::com::sun::star::container::XIndexReplace;
14159 published service DocumentIndexMark {
14160 service ::com::sun::star::text::TextContent;
14161 service ::com::sun::star::text::BaseIndexMark;
14162 [property] string PrimaryKey;
14163 [property] string SecondaryKey;
14164 [property] boolean IsMainEntry;
14166 published service DocumentIndexMarkAsian {
14167 [property] string TextReading;
14168 [property] string PrimaryKeyReading;
14169 [property] string SecondaryKeyReading;
14171 published service DocumentIndexParagraphStyles {
14172 interface ::com::sun::star::container::XIndexReplace;
14174 published service DocumentIndexes {
14175 interface ::com::sun::star::container::XNameAccess;
14176 interface ::com::sun::star::container::XIndexAccess;
14178 published enum NotePrintMode {
14179 NOT = 0,
14180 ONLY = 1,
14181 DOC_END = 2,
14182 PAGE_END = 3
14184 published service PrintSettings {
14185 [property] boolean PrintGraphics;
14186 [property] boolean PrintTables;
14187 [property] boolean PrintDrawings;
14188 [property] boolean PrintLeftPages;
14189 [property] boolean PrintRightPages;
14190 [property] boolean PrintControls;
14191 [property] boolean PrintReversed;
14192 [property] boolean PrintPaperFromSetup;
14193 [property] string PrintFaxName;
14194 [property] ::com::sun::star::text::NotePrintMode PrintAnnotationMode;
14195 [property] boolean PrintProspect;
14196 [property] boolean PrintPageBackground;
14197 [property] boolean PrintBlackFonts;
14198 [property, optional] boolean PrintEmptyPages;
14200 published service DocumentSettings {
14201 service ::com::sun::star::document::Settings;
14202 [optional] service ::com::sun::star::text::PrintSettings;
14203 interface ::com::sun::star::beans::XPropertySet;
14204 [property, optional] boolean ChartAutoUpdate;
14205 [property, optional] boolean AddParaTableSpacing;
14206 [property, optional] boolean AddParaTableSpacingAtStart;
14207 [property, optional] boolean AlignTabStopPosition;
14208 [property, optional] boolean SaveGlobalDocumentLinks;
14209 [property, optional] boolean IsLabelDocument;
14210 [property, optional] boolean UseFormerLineSpacing;
14211 [property, optional] boolean AddParaSpacingToTableCells;
14212 [property, optional] boolean UseFormerObjectPositioning;
14213 [property, optional] boolean ConsiderTextWrapOnObjPos;
14214 [property, optional] boolean MathBaselineAlignment;
14216 published constants DocumentStatistic {
14217 const short CHARS = 3;
14218 const short PAGES = 0;
14219 const short PARAS = 1;
14220 const short WORDS = 2;
14222 published interface XFootnote {
14223 interface ::com::sun::star::text::XTextContent;
14224 string getLabel();
14225 void setLabel([in] string aLabel);
14227 published service Footnote {
14228 interface ::com::sun::star::text::XFootnote;
14229 interface ::com::sun::star::text::XText;
14230 [property, optional, readonly] short ReferenceId;
14232 published service Endnote {
14233 service ::com::sun::star::text::Footnote;
14235 published service FootnoteSettings {
14236 [property] string CharStyleName;
14237 [property] short NumberingType;
14238 [property] string PageStyleName;
14239 [property] string ParaStyleName;
14240 [property] string Prefix;
14241 [property] short StartAt;
14242 [property] string Suffix;
14243 [property, optional] string BeginNotice;
14244 [property, optional] string EndNotice;
14245 [property, optional] short FootnoteCounting;
14246 [property, optional] boolean PositionEndOfDoc;
14247 [property, optional] string AnchorCharStyleName;
14249 published service EndnoteSettings {
14250 service ::com::sun::star::text::FootnoteSettings;
14252 published constants FilenameDisplayFormat {
14253 const short FULL = 0;
14254 const short NAME = 2;
14255 const short NAME_AND_EXT = 3;
14256 const short PATH = 1;
14258 published constants FontEmphasis {
14259 const short ACCENT_ABOVE = 4;
14260 const short ACCENT_BELOW = 14;
14261 const short CIRCLE_ABOVE = 2;
14262 const short CIRCLE_BELOW = 12;
14263 const short DISK_ABOVE = 3;
14264 const short DISK_BELOW = 13;
14265 const short DOT_ABOVE = 1;
14266 const short DOT_BELOW = 11;
14267 const short NONE = 0;
14269 published constants FontRelief {
14270 const short EMBOSSED = 1;
14271 const short ENGRAVED = 2;
14272 const short NONE = 0;
14274 published constants FootnoteNumbering {
14275 const short PER_CHAPTER = 1;
14276 const short PER_DOCUMENT = 2;
14277 const short PER_PAGE = 0;
14279 published service Footnotes {
14280 interface ::com::sun::star::container::XIndexAccess;
14282 published interface XBookmarksSupplier {
14283 interface ::com::sun::star::uno::XInterface;
14284 ::com::sun::star::container::XNameAccess getBookmarks();
14286 published interface XChapterNumberingSupplier {
14287 interface ::com::sun::star::uno::XInterface;
14288 ::com::sun::star::container::XIndexReplace getChapterNumberingRules();
14290 published interface XDocumentIndexesSupplier {
14291 interface ::com::sun::star::uno::XInterface;
14292 ::com::sun::star::container::XIndexAccess getDocumentIndexes();
14294 published interface XEndnotesSupplier {
14295 interface ::com::sun::star::uno::XInterface;
14296 ::com::sun::star::container::XIndexAccess getEndnotes();
14297 ::com::sun::star::beans::XPropertySet getEndnoteSettings();
14299 published interface XFootnotesSupplier {
14300 interface ::com::sun::star::uno::XInterface;
14301 ::com::sun::star::container::XIndexAccess getFootnotes();
14302 ::com::sun::star::beans::XPropertySet getFootnoteSettings();
14304 published interface XPagePrintable {
14305 interface ::com::sun::star::uno::XInterface;
14306 sequence< ::com::sun::star::beans::PropertyValue > getPagePrintSettings();
14307 void setPagePrintSettings([in] sequence< ::com::sun::star::beans::PropertyValue > aSettings);
14308 void printPages([in] sequence< ::com::sun::star::beans::PropertyValue > xOptions) raises (::com::sun::star::lang::IllegalArgumentException);
14310 published interface XReferenceMarksSupplier {
14311 interface ::com::sun::star::uno::XInterface;
14312 ::com::sun::star::container::XNameAccess getReferenceMarks();
14314 published interface XTextDocument {
14315 interface ::com::sun::star::frame::XModel;
14316 ::com::sun::star::text::XText getText();
14317 void reformat();
14319 published interface XTextEmbeddedObjectsSupplier {
14320 interface ::com::sun::star::uno::XInterface;
14321 ::com::sun::star::container::XNameAccess getEmbeddedObjects();
14323 published interface XTextFramesSupplier {
14324 interface ::com::sun::star::uno::XInterface;
14325 ::com::sun::star::container::XNameAccess getTextFrames();
14327 published interface XTextGraphicObjectsSupplier {
14328 interface ::com::sun::star::uno::XInterface;
14329 ::com::sun::star::container::XNameAccess getGraphicObjects();
14331 published interface XTextSectionsSupplier {
14332 interface ::com::sun::star::uno::XInterface;
14333 ::com::sun::star::container::XNameAccess getTextSections();
14335 published interface XTextTablesSupplier {
14336 interface ::com::sun::star::uno::XInterface;
14337 ::com::sun::star::container::XNameAccess getTextTables();
14340 module tiledrendering {
14341 interface XTiledRenderable {
14342 interface ::com::sun::star::uno::XInterface;
14343 void paintTile([in] any Parent, [in] long nOutputWidth, [in] long nOutputHeight, [in] long nTilePosX, [in] long nTilePosY, [in] long nTileWidth, [in] long nTileHeight);
14346 module text {
14347 published service GenericTextDocument {
14348 service ::com::sun::star::document::OfficeDocument;
14349 interface ::com::sun::star::lang::XMultiServiceFactory;
14350 interface ::com::sun::star::text::XTextDocument;
14351 interface ::com::sun::star::util::XSearchable;
14352 interface ::com::sun::star::util::XRefreshable;
14353 [optional] interface ::com::sun::star::tiledrendering::XTiledRenderable;
14354 [optional] interface ::com::sun::star::text::XFootnotesSupplier;
14355 [optional] interface ::com::sun::star::text::XEndnotesSupplier;
14356 [optional] interface ::com::sun::star::util::XReplaceable;
14357 [optional] interface ::com::sun::star::text::XPagePrintable;
14358 [optional] interface ::com::sun::star::text::XReferenceMarksSupplier;
14359 [optional] interface ::com::sun::star::text::XChapterNumberingSupplier;
14360 [optional] interface ::com::sun::star::beans::XPropertySet;
14361 [optional] interface ::com::sun::star::text::XTextGraphicObjectsSupplier;
14362 [optional] interface ::com::sun::star::text::XTextEmbeddedObjectsSupplier;
14363 [optional] interface ::com::sun::star::text::XTextTablesSupplier;
14364 [optional] interface ::com::sun::star::style::XStyleFamiliesSupplier;
14365 [optional] interface ::com::sun::star::text::XBookmarksSupplier;
14366 [optional] interface ::com::sun::star::text::XDocumentIndexesSupplier;
14367 [optional] interface ::com::sun::star::text::XTextFieldsSupplier;
14368 [optional] interface ::com::sun::star::text::XTextFramesSupplier;
14369 [optional] interface ::com::sun::star::text::XTextSectionsSupplier;
14370 [optional] interface ::com::sun::star::util::XNumberFormatsSupplier;
14371 [property, optional] ::com::sun::star::lang::Locale CharLocale;
14372 [property, optional, readonly] long CharacterCount;
14373 [property, optional, readonly] long ParagraphCount;
14374 [property, optional, readonly] long WordCount;
14375 [property, optional] string WordSeparator;
14376 [property, optional] string IndexAutoMarkFileURL;
14377 [property, optional] boolean RecordChanges;
14378 [property, optional] short TwoDigitYear;
14381 module view {
14382 published interface XPrintSettingsSupplier {
14383 interface ::com::sun::star::uno::XInterface;
14384 ::com::sun::star::beans::XPropertySet getPrintSettings();
14386 published interface XViewSettingsSupplier {
14387 interface ::com::sun::star::uno::XInterface;
14388 ::com::sun::star::beans::XPropertySet getViewSettings();
14391 module text {
14392 published service GlobalSettings {
14393 interface ::com::sun::star::view::XPrintSettingsSupplier;
14394 interface ::com::sun::star::view::XViewSettingsSupplier;
14396 published constants HoriOrientation {
14397 const short CENTER = 2;
14398 const short FULL = 6;
14399 const short INSIDE = 4;
14400 const short LEFT = 3;
14401 const short LEFT_AND_WIDTH = 7;
14402 const short NONE = 0;
14403 const short OUTSIDE = 5;
14404 const short RIGHT = 1;
14406 published struct HoriOrientationFormat {
14407 long XPos;
14408 short HorizontalOrientation;
14409 short HorizontalRelation;
14410 boolean PositionToggle;
14412 published enum HorizontalAdjust {
14413 LEFT = 0,
14414 CENTER = 1,
14415 RIGHT = 2
14417 published service IllustrationsIndex {
14418 service ::com::sun::star::text::BaseIndex;
14419 [property, optional] boolean CreateFromLabels;
14420 [property, optional] string LabelCategory;
14421 [property, optional] short LabelDisplayType;
14423 published exception InvalidTextContentException: ::com::sun::star::uno::Exception {
14424 ::com::sun::star::text::XTextContent TextContent;
14426 published constants LabelFollow {
14427 const short LISTTAB = 0;
14428 const short NOTHING = 2;
14429 const short SPACE = 1;
14431 published service LineNumberingProperties {
14432 [property] boolean IsOn;
14433 [property] string CharStyleName;
14434 [property] boolean CountEmptyLines;
14435 [property] boolean CountLinesInFrames;
14436 [property] long Distance;
14437 [property] short Interval;
14438 [property] string SeparatorText;
14439 [property] short SeparatorInterval;
14440 [property] short NumberPosition;
14441 [property] short NumberingType;
14442 [property, optional] boolean RestartAtEachPage;
14444 published interface XMailMergeListener;
14445 published interface XMailMergeBroadcaster {
14446 interface ::com::sun::star::uno::XInterface;
14447 void addMailMergeEventListener([in] ::com::sun::star::text::XMailMergeListener xListener);
14448 void removeMailMergeEventListener([in] ::com::sun::star::text::XMailMergeListener xListener);
14450 published service MailMerge {
14451 service ::com::sun::star::sdb::DataAccessDescriptor;
14452 interface ::com::sun::star::task::XJob;
14453 interface ::com::sun::star::beans::XPropertySet;
14454 [optional] interface ::com::sun::star::util::XCancellable;
14455 [optional] interface ::com::sun::star::text::XMailMergeBroadcaster;
14456 [property] string DataSourceName;
14457 [property] long CommandType;
14458 [property] string Command;
14459 [property] ::com::sun::star::sdbc::XResultSet ResultSet;
14460 [property] ::com::sun::star::sdbc::XConnection ActiveConnection;
14461 [property] sequence< any > Selection;
14462 [property] boolean EscapeProcessing;
14463 [property] string Filter;
14464 [property] string DocumentURL;
14465 [property, readonly] ::com::sun::star::frame::XModel Model;
14466 [property] short OutputType;
14467 [property] boolean SinglePrintJobs;
14468 [property] string OutputURL;
14469 [property] boolean FileNameFromColumn;
14470 [property] string FileNamePrefix;
14471 [property, optional] string OutServerPassword;
14472 [property, optional] string InServerPassword;
14473 [property, optional] string Subject;
14474 [property, optional] string AddressFromColumn;
14475 [property, optional] boolean SendAsHTML;
14476 [property, optional] boolean SendAsAttachment;
14477 [property, optional] string MailBody;
14478 [property, optional] string AttachmentName;
14479 [property, optional] string AttachmentFilter;
14480 [property, optional] sequence< string > CopiesTo;
14481 [property, optional] sequence< string > BlindCopiesTo;
14482 [property, optional] boolean SaveAsSingleFile;
14483 [property, optional] string SaveFilter;
14484 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > PrintOptions;
14486 published struct MailMergeEvent: ::com::sun::star::lang::EventObject {
14487 ::com::sun::star::frame::XModel Model;
14489 published constants MailMergeType {
14490 const short FILE = 2;
14491 const short MAIL = 3;
14492 const short PRINTER = 1;
14493 const short SHELL = 4;
14495 published service NumberingLevel {
14496 [property] short Adjust;
14497 [property, optional] short ParentNumbering;
14498 [property] string Prefix;
14499 [property] string Suffix;
14500 [property, optional] string CharStyleName;
14501 /** @deprecated */ [property, optional] short BulletId;
14502 [property] string BulletChar;
14503 [property] string BulletFontName;
14504 [property, optional] ::com::sun::star::awt::FontDescriptor BulletFont;
14505 [property] string GraphicURL;
14506 [property, optional] ::com::sun::star::awt::XBitmap GraphicBitmap;
14507 [property, optional] ::com::sun::star::awt::Size GraphicSize;
14508 [property, optional] short VertOrient;
14509 [property, optional] short StartWith;
14510 [property] long LeftMargin;
14511 [property, optional] long SymbolTextDistance;
14512 [property] long FirstLineOffset;
14513 [property] short NumberingType;
14514 [property] string HeadingStyleName;
14515 [property, optional] string ParagraphStyleName;
14516 [property, optional] ::com::sun::star::util::Color BulletColor;
14517 [property, optional] short BulletRelSize;
14518 [property, optional] short PositionAndSpaceMode;
14519 [property, optional] short LabelFollowedBy;
14520 [property, optional] long ListtabStopPosition;
14521 [property, optional] long FirstLineIndent;
14522 [property, optional] long IndentAt;
14524 published service NumberingRules {
14525 interface ::com::sun::star::container::XIndexReplace;
14526 [optional] interface ::com::sun::star::beans::XPropertySet;
14527 [property, optional] boolean IsAbsoluteMargins;
14528 [property, optional] boolean IsAutomatic;
14529 [property, optional] boolean IsContinuousNumbering;
14530 [property, optional, readonly] string Name;
14531 [property, optional] boolean NumberingIsOutline;
14532 [property, optional] short NumberingType;
14533 [property, optional, readonly] string DefaultListId;
14535 published service NumberingStyle {
14536 service ::com::sun::star::style::Style;
14537 service ::com::sun::star::text::NumberingRules;
14539 published service ObjectIndex {
14540 service ::com::sun::star::text::BaseIndex;
14541 [property, optional] boolean CreateFromStarMath;
14542 [property, optional] boolean CreateFromStarImage;
14543 [property, optional] boolean CreateFromStarChart;
14544 [property, optional] boolean CreateFromStarCalc;
14545 [property, optional] boolean CreateFromStarDraw;
14546 [property, optional] boolean CreateFromOtherEmbeddedObjects;
14548 published service PageFootnoteInfo {
14549 [property] long FootnoteHeight;
14550 [property] long FootnoteSeparatorLineWidth;
14551 [property] long FootnoteTopDistance;
14552 [property] long FootnoteBottomDistance;
14553 [property] short FootnoteSeparatorLineWidthPercent;
14554 [property] ::com::sun::star::text::HorizontalAdjust FootnoteSeparatorLineAdjust;
14555 [property] short FootnoteSeparatorLinePenWidth;
14557 published enum PageNumberType {
14558 PREV = 0,
14559 CURRENT = 1,
14560 NEXT = 2
14562 published service PagePrintSettings {
14563 [property] short PageRows;
14564 [property] short PageColumns;
14565 [property] long LeftMargin;
14566 [property] long RightMargin;
14567 [property] long TopMargin;
14568 [property] long BottomMargin;
14569 [property] long HoriMargin;
14570 [property] long VertMargin;
14571 [property] boolean IsLandscape;
14573 published struct TableColumnSeparator {
14574 short Position;
14575 boolean IsVisible;
14577 published interface XTextTableCursor;
14578 published interface XTextTable {
14579 interface ::com::sun::star::text::XTextContent;
14580 void initialize([in] long nRows, [in] long nColumns);
14581 ::com::sun::star::table::XTableRows getRows();
14582 ::com::sun::star::table::XTableColumns getColumns();
14583 ::com::sun::star::table::XCell getCellByName([in] string aCellName);
14584 sequence< string > getCellNames();
14585 ::com::sun::star::text::XTextTableCursor createCursorByCellName([in] string aCellName);
14587 published service TextTable {
14588 service ::com::sun::star::text::TextContent;
14589 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
14590 interface ::com::sun::star::text::XTextTable;
14591 interface ::com::sun::star::container::XNamed;
14592 interface ::com::sun::star::table::XCellRange;
14593 interface ::com::sun::star::chart::XChartDataArray;
14594 interface ::com::sun::star::table::XAutoFormattable;
14595 interface ::com::sun::star::util::XSortable;
14596 [optional] interface ::com::sun::star::sheet::XCellRangeData;
14597 [property] ::com::sun::star::style::BreakType BreakType;
14598 [property] long LeftMargin;
14599 [property] long RightMargin;
14600 [property] short HoriOrient;
14601 [property] boolean KeepTogether;
14602 [property] boolean Split;
14603 [property] short PageNumberOffset;
14604 [property] string PageDescName;
14605 [property] short RelativeWidth;
14606 [property] boolean IsWidthRelative;
14607 [property] boolean RepeatHeadline;
14608 [property, optional] long HeaderRowCount;
14609 [property] ::com::sun::star::table::ShadowFormat ShadowFormat;
14610 [property] long TopMargin;
14611 [property] long BottomMargin;
14612 [property] boolean BackTransparent;
14613 [property] long Width;
14614 [property] boolean ChartRowAsLabel;
14615 [property] boolean ChartColumnAsLabel;
14616 [property] ::com::sun::star::table::TableBorder TableBorder;
14617 [property] sequence< ::com::sun::star::text::TableColumnSeparator > TableColumnSeparators;
14618 [property] short TableColumnRelativeSum;
14619 [property] ::com::sun::star::util::Color BackColor;
14620 [property] string BackGraphicURL;
14621 [property] string BackGraphicFilter;
14622 [property] ::com::sun::star::style::GraphicLocation BackGraphicLocation;
14623 [property, optional] boolean CollapsingBorders;
14624 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > TableInteropGrabBag;
14626 published service Paragraph {
14627 service ::com::sun::star::text::TextContent;
14628 [optional] service ::com::sun::star::style::ParagraphProperties;
14629 [optional] service ::com::sun::star::style::ParagraphPropertiesAsian;
14630 [optional] service ::com::sun::star::style::ParagraphPropertiesComplex;
14631 [optional] service ::com::sun::star::style::CharacterProperties;
14632 [optional] service ::com::sun::star::style::CharacterPropertiesAsian;
14633 [optional] service ::com::sun::star::style::CharacterPropertiesComplex;
14634 [optional] service ::com::sun::star::text::TextTable;
14635 interface ::com::sun::star::beans::XPropertySet;
14636 interface ::com::sun::star::beans::XPropertyState;
14637 interface ::com::sun::star::container::XEnumerationAccess;
14638 [optional] interface ::com::sun::star::beans::XTolerantMultiPropertySet;
14640 published service ParagraphEnumeration {
14641 interface ::com::sun::star::container::XEnumeration;
14643 published constants ParagraphVertAlign {
14644 const short AUTOMATIC = 0;
14645 const short BASELINE = 1;
14646 const short BOTTOM = 4;
14647 const short CENTER = 3;
14648 const short TOP = 2;
14650 published constants PlaceholderType {
14651 const short GRAPHIC = 3;
14652 const short OBJECT = 4;
14653 const short TABLE = 1;
14654 const short TEXT = 0;
14655 const short TEXTFRAME = 2;
14657 published constants PositionAndSpaceMode {
14658 const short LABEL_ALIGNMENT = 1;
14659 const short LABEL_WIDTH_AND_POSITION = 0;
14661 published service TextPortion {
14662 service ::com::sun::star::text::TextRange;
14663 [optional] interface ::com::sun::star::container::XContentEnumerationAccess;
14664 [optional] interface ::com::sun::star::beans::XTolerantMultiPropertySet;
14665 [property, readonly] string TextPortionType;
14666 /** @deprecated */ [property, readonly] short ControlCharacter;
14667 [property, optional, readonly] ::com::sun::star::text::XTextContent Bookmark;
14668 [property, optional, readonly] ::com::sun::star::text::XTextContent DocumentIndexMark;
14669 [property, optional, readonly] ::com::sun::star::text::XTextContent ReferenceMark;
14670 [property, optional, readonly] ::com::sun::star::text::XFootnote Footnote;
14671 [property, optional, readonly] ::com::sun::star::text::XTextField TextField;
14672 [property, optional, readonly] ::com::sun::star::text::XTextContent InContentMetadata;
14673 [property, optional, readonly] boolean IsCollapsed;
14674 [property, optional, readonly] boolean IsStart;
14676 published service RedlinePortion {
14677 service ::com::sun::star::text::TextPortion;
14678 [property, readonly] string RedlineAuthor;
14679 [property, readonly] ::com::sun::star::util::DateTime RedlineDateTime;
14680 [property, readonly] string RedlineComment;
14681 [property, readonly] string RedlineType;
14682 [property, readonly] ::com::sun::star::beans::PropertyValues RedlineSuccessorData;
14683 [property, readonly] string RedlineIdentifier;
14684 [property, readonly] boolean IsInHeaderFooter;
14685 [property, readonly] ::com::sun::star::text::XText RedlineText;
14686 [property, readonly] boolean MergeLastPara;
14688 published constants ReferenceFieldPart {
14689 const short CATEGORY_AND_NUMBER = 5;
14690 const short CHAPTER = 1;
14691 const short NUMBER = 8;
14692 const short NUMBER_FULL_CONTEXT = 10;
14693 const short NUMBER_NO_CONTEXT = 9;
14694 const short ONLY_CAPTION = 6;
14695 const short ONLY_SEQUENCE_NUMBER = 7;
14696 const short PAGE = 0;
14697 const short PAGE_DESC = 4;
14698 const short TEXT = 2;
14699 const short UP_DOWN = 3;
14701 published constants ReferenceFieldSource {
14702 const short BOOKMARK = 2;
14703 const short ENDNOTE = 4;
14704 const short FOOTNOTE = 3;
14705 const short REFERENCE_MARK = 0;
14706 const short SEQUENCE_FIELD = 1;
14708 published service ReferenceMark {
14709 interface ::com::sun::star::text::XTextContent;
14710 interface ::com::sun::star::container::XNamed;
14712 published service ReferenceMarks {
14713 interface ::com::sun::star::container::XIndexAccess;
14714 interface ::com::sun::star::container::XNameAccess;
14716 published constants RelOrientation {
14717 const short CHAR = 2;
14718 const short FRAME = 0;
14719 const short FRAME_LEFT = 5;
14720 const short FRAME_RIGHT = 6;
14721 const short PAGE_FRAME = 7;
14722 const short PAGE_LEFT = 3;
14723 const short PAGE_PRINT_AREA = 8;
14724 const short PAGE_RIGHT = 4;
14725 const short PRINT_AREA = 1;
14726 const short TEXT_LINE = 9;
14728 published enum RubyAdjust {
14729 LEFT = 0,
14730 CENTER = 1,
14731 RIGHT = 2,
14732 BLOCK = 3,
14733 INDENT_BLOCK = 4
14735 published struct SectionFileLink {
14736 string FileURL;
14737 string FilterName;
14739 published constants SetVariableType {
14740 const short FORMULA = 2;
14741 const short SEQUENCE = 1;
14742 const short STRING = 3;
14743 const short VAR = 0;
14745 published service Shape {
14746 service ::com::sun::star::drawing::Shape;
14747 [property] short AnchorPageNo;
14748 [property] ::com::sun::star::text::XTextFrame AnchorFrame;
14749 [property, optional] ::com::sun::star::text::TextContentAnchorType AnchorType;
14750 [property] short HoriOrient;
14751 [property] long HoriOrientPosition;
14752 [property] short HoriOrientRelation;
14753 [property] short VertOrient;
14754 [property] long VertOrientPosition;
14755 [property] short VertOrientRelation;
14756 [property] long LeftMargin;
14757 [property] long RightMargin;
14758 [property] long TopMargin;
14759 [property] long BottomMargin;
14760 /** @deprecated */ [property] ::com::sun::star::text::WrapTextMode Surround;
14761 [property] boolean SurroundAnchorOnly;
14762 [property] boolean SurroundContour;
14763 [property] boolean ContourOutside;
14764 [property] boolean Opaque;
14765 [property] ::com::sun::star::text::XTextRange TextRange;
14766 [property, optional] short WrapInfluenceOnPosition;
14767 [property, optional, readonly] ::com::sun::star::drawing::HomogenMatrix3 TransformationInHoriL2R;
14768 [property, optional] short PositionLayoutDir;
14769 [property, optional, readonly] ::com::sun::star::awt::Point StartPositionInHoriL2R;
14770 [property, optional, readonly] ::com::sun::star::awt::Point EndPositionInHoriL2R;
14772 published constants SizeType {
14773 const short FIX = 1;
14774 const short MIN = 2;
14775 const short VARIABLE = 0;
14777 published service TableColumns {
14778 interface ::com::sun::star::table::XTableColumns;
14780 published service TableIndex {
14781 service ::com::sun::star::text::BaseIndex;
14782 [property, optional] boolean CreateFromLabels;
14783 [property, optional] string LabelCategory;
14784 [property, optional] short LabelDisplayType;
14786 published service TableRows {
14787 interface ::com::sun::star::table::XTableRows;
14789 published constants TemplateDisplayFormat {
14790 const short AREA = 4;
14791 const short FULL = 0;
14792 const short NAME = 2;
14793 const short NAME_AND_EXT = 3;
14794 const short PATH = 1;
14795 const short TITLE = 5;
14797 published struct TextColumn {
14798 long Width;
14799 long LeftMargin;
14800 long RightMargin;
14802 published typedef sequence< ::com::sun::star::text::TextColumn > TextColumnSequence;
14803 published interface XTextColumns {
14804 interface ::com::sun::star::uno::XInterface;
14805 long getReferenceValue();
14806 short getColumnCount();
14807 void setColumnCount([in] short nColumns);
14808 sequence< ::com::sun::star::text::TextColumn > getColumns();
14809 void setColumns([in] sequence< ::com::sun::star::text::TextColumn > Columns);
14811 published service TextColumns {
14812 interface ::com::sun::star::text::XTextColumns;
14813 [property, readonly] boolean IsAutomatic;
14814 [property] long AutomaticDistance;
14815 [property] long SeparatorLineWidth;
14816 [property] ::com::sun::star::util::Color SeparatorLineColor;
14817 [property] long SeparatorLineRelativeHeight;
14818 [property] ::com::sun::star::style::VerticalAlignment SeparatorLineVerticalAlignment;
14819 [property] boolean SeparatorLineIsOn;
14820 [property, optional] short SeparatorLineStyle;
14822 published service TextContentCollection {
14823 interface ::com::sun::star::container::XNameAccess;
14824 interface ::com::sun::star::container::XContainer;
14826 published interface XTextCursor {
14827 interface ::com::sun::star::text::XTextRange;
14828 void collapseToStart();
14829 void collapseToEnd();
14830 boolean isCollapsed();
14831 boolean goLeft([in] short nCount, [in] boolean bExpand);
14832 boolean goRight([in] short nCount, [in] boolean bExpand);
14833 void gotoStart([in] boolean bExpand);
14834 void gotoEnd([in] boolean bExpand);
14835 void gotoRange([in] ::com::sun::star::text::XTextRange xRange, [in] boolean bExpand);
14837 published interface XParagraphCursor {
14838 interface ::com::sun::star::text::XTextCursor;
14839 boolean isStartOfParagraph();
14840 boolean isEndOfParagraph();
14841 boolean gotoStartOfParagraph([in] boolean bExpand);
14842 boolean gotoEndOfParagraph([in] boolean bExpand);
14843 boolean gotoNextParagraph([in] boolean bExpand);
14844 boolean gotoPreviousParagraph([in] boolean bExpand);
14846 published interface XSentenceCursor {
14847 interface ::com::sun::star::text::XTextCursor;
14848 boolean isStartOfSentence();
14849 boolean isEndOfSentence();
14850 boolean gotoNextSentence([in] boolean Expand);
14851 boolean gotoPreviousSentence([in] boolean Expand);
14852 boolean gotoStartOfSentence([in] boolean Expand);
14853 boolean gotoEndOfSentence([in] boolean Expand);
14855 published interface XWordCursor {
14856 interface ::com::sun::star::text::XTextCursor;
14857 boolean isStartOfWord();
14858 boolean isEndOfWord();
14859 boolean gotoNextWord([in] boolean bExpand);
14860 boolean gotoPreviousWord([in] boolean bExpand);
14861 boolean gotoEndOfWord([in] boolean bExpand);
14862 boolean gotoStartOfWord([in] boolean bExpand);
14864 published service TextCursor {
14865 service ::com::sun::star::text::TextRange;
14866 interface ::com::sun::star::text::XTextCursor;
14867 interface ::com::sun::star::beans::XPropertySet;
14868 interface ::com::sun::star::beans::XPropertyState;
14869 interface ::com::sun::star::beans::XMultiPropertyStates;
14870 [optional] interface ::com::sun::star::text::XWordCursor;
14871 [optional] interface ::com::sun::star::text::XSentenceCursor;
14872 [optional] interface ::com::sun::star::text::XParagraphCursor;
14873 [optional] interface ::com::sun::star::document::XDocumentInsertable;
14874 [optional] interface ::com::sun::star::util::XSortable;
14876 published service TextDocument {
14877 service ::com::sun::star::text::GenericTextDocument;
14879 published interface XTextViewCursor;
14880 published interface XTextViewCursorSupplier {
14881 interface ::com::sun::star::uno::XInterface;
14882 ::com::sun::star::text::XTextViewCursor getViewCursor();
14885 module view {
14886 published service OfficeDocumentView {
14887 interface ::com::sun::star::view::XSelectionSupplier;
14888 [optional] interface ::com::sun::star::view::XViewSettingsSupplier;
14889 [optional] interface ::com::sun::star::view::XControlAccess;
14892 module text {
14893 published service TextDocumentView {
14894 service ::com::sun::star::view::OfficeDocumentView;
14895 interface ::com::sun::star::view::XViewSettingsSupplier;
14896 interface ::com::sun::star::text::XTextViewCursorSupplier;
14897 [optional] interface ::com::sun::star::beans::XPropertySet;
14898 [property, optional, readonly] long PageCount;
14899 [property, optional, readonly] long LineCount;
14900 [property, optional] boolean IsConstantSpellcheck;
14901 [property, optional] boolean IsHideSpellMarks;
14903 published service TextEmbeddedObject {
14904 service ::com::sun::star::text::BaseFrame;
14905 interface ::com::sun::star::document::XEmbeddedObjectSupplier;
14906 [property] string CLSID;
14907 [property, maybevoid, readonly] ::com::sun::star::frame::XModel Model;
14908 [property, maybevoid, readonly] ::com::sun::star::lang::XComponent Component;
14910 published service TextEmbeddedObjects {
14911 interface ::com::sun::star::container::XNameAccess;
14912 interface ::com::sun::star::container::XIndexAccess;
14914 published service TextFieldEnumeration {
14915 interface ::com::sun::star::container::XEnumeration;
14917 published service TextFieldMaster {
14918 [optional] interface ::com::sun::star::beans::XPropertySet;
14919 [property, optional] string Name;
14920 [property, readonly] sequence< ::com::sun::star::text::XDependentTextField > DependentTextFields;
14921 [property, readonly] string InstanceName;
14923 published service TextFieldMasters {
14924 interface ::com::sun::star::container::XNameAccess;
14926 published service TextFields {
14927 interface ::com::sun::star::container::XEnumerationAccess;
14928 interface ::com::sun::star::util::XRefreshable;
14930 published service TextFrames {
14931 interface ::com::sun::star::container::XNameAccess;
14932 interface ::com::sun::star::container::XIndexAccess;
14933 [optional] interface ::com::sun::star::container::XContainer;
14935 published service TextGraphicObject {
14936 service ::com::sun::star::text::BaseFrame;
14937 [property] ::com::sun::star::container::XIndexContainer ImageMap;
14938 [property] boolean ContentProtected;
14939 [property] boolean SurroundContour;
14940 [property] boolean ContourOutside;
14941 [property, optional] ::com::sun::star::drawing::PointSequenceSequence ContourPolyPolygon;
14942 [property] ::com::sun::star::text::GraphicCrop GraphicCrop;
14943 [property] boolean HoriMirroredOnEvenPages;
14944 [property] boolean HoriMirroredOnOddPages;
14945 [property] boolean VertMirrored;
14946 [property] string GraphicURL;
14947 [property] string GraphicFilter;
14948 [property] ::com::sun::star::awt::Size ActualSize;
14949 [property] short AdjustLuminance;
14950 [property] short AdjustContrast;
14951 [property] short AdjustRed;
14952 [property] short AdjustGreen;
14953 [property] short AdjustBlue;
14954 [property] double Gamma;
14955 [property] boolean GraphicIsInverted;
14956 [property] short Transparency;
14957 [property] ::com::sun::star::drawing::ColorMode GraphicColorMode;
14958 [property, optional] ::com::sun::star::graphic::XGraphic Graphic;
14960 published service TextGraphicObjects {
14961 interface ::com::sun::star::container::XNameAccess;
14962 interface ::com::sun::star::container::XIndexAccess;
14964 published constants TextGridMode {
14965 const short LINES = 1;
14966 const short LINES_AND_CHARS = 2;
14967 const short NONE = 0;
14969 published interface XPageCursor {
14970 interface ::com::sun::star::uno::XInterface;
14971 boolean jumpToFirstPage();
14972 boolean jumpToLastPage();
14973 boolean jumpToPage([in] short nPage);
14974 short getPage();
14975 boolean jumpToNextPage();
14976 boolean jumpToPreviousPage();
14977 boolean jumpToEndOfPage();
14978 boolean jumpToStartOfPage();
14980 published service TextLayoutCursor {
14981 service ::com::sun::star::text::TextCursor;
14982 interface ::com::sun::star::text::XPageCursor;
14984 published service TextPageStyle {
14985 [property] boolean RegisterModeActive;
14986 [property] string RegisterParagraphStyle;
14987 [property] ::com::sun::star::text::XTextColumns TextColumns;
14988 [property] ::com::sun::star::text::XText HeaderText;
14989 [property] ::com::sun::star::text::XText HeaderTextLeft;
14990 [property] ::com::sun::star::text::XText HeaderTextRight;
14991 [property, optional] ::com::sun::star::text::XText HeaderTextFirst;
14992 [property] ::com::sun::star::text::XText FooterText;
14993 [property] ::com::sun::star::text::XText FooterTextLeft;
14994 [property] ::com::sun::star::text::XText FooterTextRight;
14995 [property, optional] ::com::sun::star::text::XText FooterTextFirst;
14996 [property] long FootnoteHeight;
14997 [property] short FootnoteLineWeight;
14998 [property] ::com::sun::star::util::Color FootnoteLineColor;
14999 [property] byte FootnoteLineRelativeWidth;
15000 [property] short FootnoteLineAdjust;
15001 [property] long FootnoteLineTextDistance;
15002 [property] long FootnoteLineDistance;
15004 published service TextPortionEnumeration {
15005 interface ::com::sun::star::container::XEnumeration;
15007 published service TextRanges {
15008 interface ::com::sun::star::container::XIndexAccess;
15010 published interface XTextSection {
15011 interface ::com::sun::star::text::XTextContent;
15012 ::com::sun::star::text::XTextSection getParentSection();
15013 sequence< ::com::sun::star::text::XTextSection > getChildSections();
15015 published service TextSection {
15016 service ::com::sun::star::text::TextContent;
15017 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
15018 interface ::com::sun::star::text::XTextSection;
15019 interface ::com::sun::star::container::XNamed;
15020 interface ::com::sun::star::beans::XPropertySet;
15021 interface ::com::sun::star::beans::XPropertyState;
15022 [property] string Condition;
15023 [property] boolean IsVisible;
15024 [property] boolean IsProtected;
15025 [property] ::com::sun::star::text::SectionFileLink FileLink;
15026 [property] string LinkRegion;
15027 [property] string DDECommandType;
15028 [property] string DDECommandFile;
15029 [property] string DDECommandElement;
15030 [property] string BackGraphicURL;
15031 [property] string BackGraphicFilter;
15032 [property] ::com::sun::star::style::GraphicLocation BackGraphicLocation;
15033 [property] boolean FootnoteIsCollectAtTextEnd;
15034 [property] boolean FootnoteIsRestartNumbering;
15035 [property] short FootnoteRestartNumberingAt;
15036 [property] boolean FootnoteIsOwnNumbering;
15037 [property] short FootnoteNumberingType;
15038 [property] string FootnoteNumberingPrefix;
15039 [property] string FootnoteNumberingSuffix;
15040 [property] boolean EndnoteIsCollectAtTextEnd;
15041 [property] boolean EndnoteIsRestartNumbering;
15042 [property] short EndnoteRestartNumberingAt;
15043 [property] boolean EndnoteIsOwnNumbering;
15044 [property] short EndnoteNumberingType;
15045 [property] string EndnoteNumberingPrefix;
15046 [property] string EndnoteNumberingSuffix;
15047 [property] boolean IsAutomaticUpdate;
15048 [property] ::com::sun::star::text::XTextColumns TextColumns;
15049 [property, optional] long SectionLeftMargin;
15050 [property, optional] long SectionRightMargin;
15052 published service TextSections {
15053 interface ::com::sun::star::container::XIndexAccess;
15054 interface ::com::sun::star::container::XNameAccess;
15056 /** @deprecated */ published service TextSortDescriptor {
15057 service ::com::sun::star::util::SortDescriptor;
15058 [property] char Delimiter;
15059 [property] boolean IsSortInTable;
15060 [property] long SortRowOrColumnNo0;
15061 [property] boolean IsSortNumeric0;
15062 [property] boolean IsSortAscending0;
15063 [property] long SortRowOrColumnNo1;
15064 [property] boolean IsSortNumeric1;
15065 [property] boolean IsSortAscending1;
15066 [property] long SortRowOrColumnNo2;
15067 [property] boolean IsSortNumeric2;
15068 [property] boolean IsSortAscending2;
15070 published service TextSortDescriptor2 {
15071 service ::com::sun::star::table::TableSortDescriptor2;
15072 [property] boolean IsSortInTable;
15073 [property] char Delimiter;
15075 /** @deprecated */ published service TextSortable {
15076 interface ::com::sun::star::util::XSortable;
15078 published interface XTextTableCursor {
15079 interface ::com::sun::star::uno::XInterface;
15080 string getRangeName();
15081 boolean gotoCellByName([in] string aCellName, [in] boolean bExpand);
15082 boolean goLeft([in] short nCount, [in] boolean bExpand);
15083 boolean goRight([in] short nCount, [in] boolean bExpand);
15084 boolean goUp([in] short nCount, [in] boolean bExpand);
15085 boolean goDown([in] short nCount, [in] boolean bExpand);
15086 void gotoStart([in] boolean bExpand);
15087 void gotoEnd([in] boolean bExpand);
15088 boolean mergeRange();
15089 boolean splitRange([in] short nCount, [in] boolean bHorizontal);
15091 published service TextTableCursor {
15092 service ::com::sun::star::style::CharacterProperties;
15093 service ::com::sun::star::style::CharacterPropertiesAsian;
15094 service ::com::sun::star::style::CharacterPropertiesComplex;
15095 service ::com::sun::star::style::ParagraphProperties;
15096 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
15097 interface ::com::sun::star::text::XTextTableCursor;
15098 interface ::com::sun::star::beans::XPropertySet;
15100 published service TextTableRow {
15101 interface ::com::sun::star::beans::XPropertySet;
15102 [property] ::com::sun::star::util::Color BackColor;
15103 [property] boolean BackTransparent;
15104 [property] string BackGraphicURL;
15105 [property] string BackGraphicFilter;
15106 [property] ::com::sun::star::style::GraphicLocation BackGraphicLocation;
15107 [property] sequence< ::com::sun::star::text::TableColumnSeparator > TableColumnSeparators;
15108 [property] long Height;
15109 [property] boolean IsAutoHeight;
15110 [property, maybevoid, optional] boolean IsSplitAllowed;
15111 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > RowInteropGrabBag;
15113 published service TextTables {
15114 interface ::com::sun::star::container::XIndexAccess;
15115 interface ::com::sun::star::container::XNameAccess;
15118 module view {
15119 published interface XScreenCursor {
15120 interface ::com::sun::star::uno::XInterface;
15121 boolean screenDown();
15122 boolean screenUp();
15125 module text {
15126 published service TextViewCursor {
15127 service ::com::sun::star::text::TextLayoutCursor;
15128 interface ::com::sun::star::view::XScreenCursor;
15130 /** @deprecated */ published constants TimeDisplayFormat {
15131 const short HHMM = 1;
15132 const short HHMMAMPM = 4;
15133 const short HHMMSS = 2;
15134 const short HHMMSS00 = 3;
15135 const short HHMMSS00AMPM = 6;
15136 const short HHMMSSAMPM = 5;
15137 const short STANDARD = 0;
15139 published constants UserDataPart {
15140 const short CITY = 7;
15141 const short COMPANY = 0;
15142 const short COUNTRY = 5;
15143 const short EMAIL = 13;
15144 const short FAX = 12;
15145 const short FIRSTNAME = 1;
15146 const short NAME = 2;
15147 const short PHONE_COMPANY = 11;
15148 const short PHONE_PRIVATE = 10;
15149 const short POSITION = 9;
15150 const short SHORTCUT = 3;
15151 const short STATE = 14;
15152 const short STREET = 4;
15153 const short TITLE = 8;
15154 const short ZIP = 6;
15156 published interface XDocumentIndexMark;
15157 published service UserDefinedIndex {
15158 service ::com::sun::star::text::BaseIndex;
15159 [property, optional] ::com::sun::star::container::XIndexReplace LevelParagraphStyles;
15160 [property, optional] boolean CreateFromMarks;
15161 [property, optional] boolean UseLevelFromSource;
15162 [property, optional] boolean CreateFromTables;
15163 [property, optional] boolean CreateFromTextFrames;
15164 [property, optional] boolean CreateFromGraphicObjects;
15165 [property, optional] boolean CreateFromEmbeddedObjects;
15166 [property, readonly] sequence< ::com::sun::star::text::XDocumentIndexMark > DocumentIndexMarks;
15168 published constants UserFieldFormat {
15169 const short NUM = 2;
15170 const short SYSTEM = 0;
15171 const short TEXT = 1;
15173 published service UserIndex {
15174 service ::com::sun::star::text::BaseIndex;
15175 [property, optional] ::com::sun::star::container::XIndexReplace LevelParagraphStyles;
15176 [property, optional] boolean CreateFromMarks;
15177 [property, optional] boolean UseLevelFromSource;
15178 [property, optional] boolean CreateFromTables;
15179 [property, optional] boolean CreateFromTextFrames;
15180 [property, optional] boolean CreateFromGraphicObjects;
15181 [property, optional] boolean CreateFromEmbeddedObjects;
15182 [property] string UserIndexName;
15184 published service UserIndexMark {
15185 service ::com::sun::star::text::TextContent;
15186 service ::com::sun::star::text::BaseIndexMark;
15187 [property] string UserIndexName;
15189 published constants VertOrientation {
15190 const short BOTTOM = 3;
15191 const short CENTER = 2;
15192 const short CHAR_BOTTOM = 6;
15193 const short CHAR_CENTER = 5;
15194 const short CHAR_TOP = 4;
15195 const short LINE_BOTTOM = 9;
15196 const short LINE_CENTER = 8;
15197 const short LINE_TOP = 7;
15198 const short NONE = 0;
15199 const short TOP = 1;
15201 published struct VertOrientationFormat {
15202 long YPos;
15203 short VerticalOrientation;
15204 short VerticalRelation;
15206 published service ViewSettings {
15207 interface ::com::sun::star::beans::XPropertySet;
15208 [property] boolean ShowAnnotations;
15209 [property] boolean ShowBreaks;
15210 [property] boolean ShowDrawings;
15211 [property] boolean ShowFieldCommands;
15212 [property] boolean ShowFootnoteBackground;
15213 [property] boolean ShowGraphics;
15214 [property] boolean ShowHiddenParagraphs;
15215 [property] boolean ShowHiddenText;
15216 [property] boolean ShowRulers;
15217 [property] boolean ShowHoriRuler;
15218 [property] boolean ShowHoriScrollBar;
15219 [property] boolean ShowIndexMarkBackground;
15220 [property] boolean ShowParaBreaks;
15221 [property] boolean ShowProtectedSpaces;
15222 [property] boolean ShowSoftHyphens;
15223 [property] boolean ShowSpaces;
15224 [property] boolean ShowTableBoundaries;
15225 [property] boolean ShowTables;
15226 [property] boolean ShowTabstops;
15227 [property] boolean ShowTextBoundaries;
15228 [property] boolean ShowTextFieldBackground;
15229 [property] boolean ShowVertRuler;
15230 [property] boolean ShowVertScrollBar;
15231 [property] boolean SmoothScrolling;
15232 [property] boolean IsVertRulerRightAligned;
15233 [property] boolean ShowOnlineLayout;
15234 [property] short ZoomType;
15235 [property] short ZoomValue;
15236 [property, optional] boolean IsExecuteHyperlinks;
15237 [property, optional] boolean IsRasterVisible;
15238 [property, optional] boolean IsSnapToRaster;
15239 [property, optional] long RasterSubdivisionX;
15240 [property, optional] long RasterSubdivisionY;
15241 [property, optional] long RasterResolutionX;
15242 [property, optional] long RasterResolutionY;
15243 [property, optional] boolean ShowHiddenCharacters;
15244 [property, optional] boolean ShowNonprintingCharacters;
15245 [property, optional] long HorizontalRulerMetric;
15246 [property, optional] long VerticalRulerMetric;
15247 [property, optional] boolean ShowContentTips;
15248 [property, optional] boolean ShowScrollBarTips;
15249 [property, optional] boolean HideWhitespace;
15251 published constants WritingMode2 {
15252 const short CONTEXT = 4;
15253 const short LR_TB = 0;
15254 /** @deprecated */ const short PAGE = 4;
15255 const short RL_TB = 1;
15256 const short TB_LR = 3;
15257 const short TB_RL = 2;
15259 published interface XBookmarkInsertTool {
15260 interface ::com::sun::star::uno::XInterface;
15261 ::com::sun::star::text::XTextContent insertNewBookmark([in] ::com::sun::star::text::XTextRange xTextRange, [in] string aName);
15263 published interface XDocumentIndexMark {
15264 interface ::com::sun::star::text::XTextContent;
15265 string getMarkEntry();
15266 void setMarkEntry([in] string aIndexEntry);
15268 published interface XEndnotesSettingsSupplier {
15269 interface ::com::sun::star::uno::XInterface;
15270 ::com::sun::star::beans::XPropertySet getEndnotesSettings();
15272 published interface XFootnotesSettingsSupplier {
15273 interface ::com::sun::star::uno::XInterface;
15274 ::com::sun::star::beans::XPropertySet getFootnotesSettings();
15276 published interface XLineNumberingProperties {
15277 interface ::com::sun::star::uno::XInterface;
15278 ::com::sun::star::beans::XPropertySet getLineNumberingProperties();
15280 published interface XMailMergeListener {
15281 interface ::com::sun::star::uno::XInterface;
15282 void notifyMailMergeEvent([in] ::com::sun::star::text::MailMergeEvent aEvent);
15284 published interface XNumberingFormatter {
15285 interface ::com::sun::star::uno::XInterface;
15286 string makeNumberingString([in] sequence< ::com::sun::star::beans::PropertyValue > aProperties, [in] ::com::sun::star::lang::Locale aLocale) raises (::com::sun::star::lang::IllegalArgumentException);
15288 published interface XNumberingRulesSupplier {
15289 interface ::com::sun::star::uno::XInterface;
15290 ::com::sun::star::container::XIndexAccess getNumberingRules();
15292 published interface XNumberingTypeInfo {
15293 interface ::com::sun::star::uno::XInterface;
15294 sequence< short > getSupportedNumberingTypes();
15295 short getNumberingType([in] string NumberingIdentifier);
15296 boolean hasNumberingType([in] string NumberingIdentifier);
15297 string getNumberingIdentifier([in] short NumberingType);
15299 published interface XRedline {
15300 interface ::com::sun::star::uno::XInterface;
15301 void makeRedline([in] string RedlineType, [in] ::com::sun::star::beans::PropertyValues RedlineProperties) raises (::com::sun::star::lang::IllegalArgumentException);
15303 /** @deprecated */ published interface XRelativeTextContentRemove {
15304 interface ::com::sun::star::uno::XInterface;
15305 void removeTextContentBefore([in] ::com::sun::star::text::XTextContent xSuccessor) raises (::com::sun::star::lang::IllegalArgumentException);
15306 void removeTextContentAfter([in] ::com::sun::star::text::XTextContent xPredecessor) raises (::com::sun::star::lang::IllegalArgumentException);
15308 published interface XRubySelection {
15309 interface ::com::sun::star::uno::XInterface;
15310 sequence< ::com::sun::star::beans::PropertyValues > getRubyList([in] boolean Automatic);
15311 void setRubyList([in] sequence< ::com::sun::star::beans::PropertyValues > RubyList, [in] boolean Automatic);
15313 published interface XTextCopy {
15314 interface ::com::sun::star::uno::XInterface;
15315 void copyText([in] ::com::sun::star::text::XTextCopy xSource);
15317 published interface XTextShapesSupplier {
15318 interface ::com::sun::star::uno::XInterface;
15319 ::com::sun::star::container::XIndexAccess getShapes();
15321 published interface XTextViewCursor {
15322 interface ::com::sun::star::text::XTextCursor;
15323 boolean isVisible();
15324 void setVisible([in] boolean bVisible);
15325 ::com::sun::star::awt::Point getPosition();
15327 module fieldmaster {
15328 published service Bibliography {
15329 service ::com::sun::star::text::TextFieldMaster;
15330 [property] boolean IsNumberEntries;
15331 [property] boolean IsSortByPosition;
15332 [property] string BracketBefore;
15333 [property] string BracketAfter;
15334 [property] sequence< ::com::sun::star::beans::PropertyValues > SortKeys;
15335 [property] ::com::sun::star::lang::Locale Locale;
15336 [property] string SortAlgorithm;
15338 published service DDE {
15339 service ::com::sun::star::text::TextFieldMaster;
15340 [property] string DDECommandElement;
15341 [property] string DDECommandFile;
15342 [property] string DDECommandType;
15343 [property] boolean IsAutomaticUpdate;
15344 [property, optional] string Content;
15346 published service Database {
15347 service ::com::sun::star::text::TextFieldMaster;
15348 [property] string DataBaseName;
15349 [property] long CommandType;
15350 [property] string DataTableName;
15351 [property] string DataColumnName;
15352 [property, optional] string DataBaseURL;
15353 [property, optional] string DataBaseResource;
15354 [property, optional] string Name;
15356 published service SetExpression {
15357 service ::com::sun::star::text::TextFieldMaster;
15358 [property] byte ChapterNumberingLevel;
15359 [property] string NumberingSeparator;
15360 [property] short SubType;
15362 published service User {
15363 service ::com::sun::star::text::TextFieldMaster;
15364 [property] boolean IsExpression;
15365 [property] double Value;
15366 [property] string Content;
15369 module textfield {
15370 published service Annotation {
15371 service ::com::sun::star::text::TextField;
15372 [property] string Author;
15373 [property, optional] string Initials;
15374 [property, optional] string Name;
15375 [property] string Content;
15376 [property] ::com::sun::star::util::Date Date;
15377 [property, optional] ::com::sun::star::util::DateTime DateTimeValue;
15379 published service Author {
15380 service ::com::sun::star::text::TextField;
15381 [property, optional] boolean IsFixed;
15382 [property, optional] string Content;
15383 [property, optional] short AuthorFormat;
15384 [property, optional] string CurrentPresentation;
15385 [property, optional] boolean FullName;
15387 published service Bibliography {
15388 service ::com::sun::star::text::DependentTextField;
15389 [property] sequence< ::com::sun::star::beans::PropertyValue > Fields;
15391 published service Chapter {
15392 service ::com::sun::star::text::TextField;
15393 [property] short ChapterFormat;
15394 [property] byte Level;
15396 published service CharacterCount {
15397 service ::com::sun::star::text::TextField;
15398 [property] short NumberingType;
15400 published service CombinedCharacters {
15401 service ::com::sun::star::text::TextField;
15402 [property] string Content;
15404 published service ConditionalText {
15405 service ::com::sun::star::text::TextField;
15406 [property] string TrueContent;
15407 [property] string FalseContent;
15408 [property] string Condition;
15409 [property] boolean IsConditionTrue;
15410 [property, optional] string CurrentPresentation;
15412 published service DDE {
15413 service ::com::sun::star::text::TextField;
15415 published service Database {
15416 service ::com::sun::star::text::DependentTextField;
15417 [property] string Content;
15418 [property] string CurrentPresentation;
15419 [property] boolean DataBaseFormat;
15420 [property] long NumberFormat;
15422 published service DatabaseName {
15423 service ::com::sun::star::text::DependentTextField;
15424 [property] string DataBaseName;
15425 [property] long DataCommandType;
15426 [property] string DataTableName;
15427 [property, optional] string DataBaseURL;
15428 [property, optional] string DataBaseResource;
15430 published service DatabaseNextSet {
15431 service ::com::sun::star::text::DependentTextField;
15432 [property] string DataBaseName;
15433 [property] long DataCommandType;
15434 [property] string DataTableName;
15435 [property] string Condition;
15436 [property, optional] string DataBaseURL;
15437 [property, optional] string DataBaseResource;
15439 published service DatabaseNumberOfSet {
15440 service ::com::sun::star::text::DependentTextField;
15441 [property] string DataBaseName;
15442 [property] long DataCommandType;
15443 [property] string DataTableName;
15444 [property] string Condition;
15445 [property] long SetNumber;
15446 [property, optional] string DataBaseURL;
15447 [property, optional] string DataBaseResource;
15449 published service DatabaseSetNumber {
15450 service ::com::sun::star::text::DependentTextField;
15451 [property] string DataBaseName;
15452 [property] long DataCommandType;
15453 [property] string DataTableName;
15454 [property] short NumberingType;
15455 [property] long SetNumber;
15456 [property, optional] string DataBaseURL;
15457 [property, optional] string DataBaseResource;
15459 published service DateTime {
15460 service ::com::sun::star::text::TextField;
15461 [property, optional] boolean IsFixed;
15462 [property] boolean IsDate;
15463 [property, optional] ::com::sun::star::util::DateTime DateTimeValue;
15464 [property, optional] long NumberFormat;
15465 /** @deprecated */ [property, optional] short DateTimeFormat;
15466 [property, optional] long Adjust;
15467 [property, optional] boolean IsFixedLanguage;
15469 published service DropDown {
15470 service ::com::sun::star::text::TextField;
15471 [property] string Name;
15472 [property] sequence< string > Items;
15473 [property] string SelectedItem;
15475 published service EmbeddedObjectCount {
15476 service ::com::sun::star::text::TextField;
15477 [property] short NumberingType;
15479 published service ExtendedUser {
15480 service ::com::sun::star::text::TextField;
15481 [property] string Content;
15482 [property] string CurrentPresentation;
15483 [property] boolean IsFixed;
15484 [property] short UserDataType;
15486 published service FileName {
15487 service ::com::sun::star::text::TextField;
15488 [property] string CurrentPresentation;
15489 [property] short FileFormat;
15490 [property] boolean IsFixed;
15492 published service GetExpression {
15493 service ::com::sun::star::text::TextField;
15494 [property] string Content;
15495 [property] string CurrentPresentation;
15496 [property] long NumberFormat;
15497 [property] boolean IsShowFormula;
15498 [property] short SubType;
15499 [property, readonly] double Value;
15500 [property] short VariableSubtype;
15501 [property, optional] boolean IsFixedLanguage;
15503 published service GetReference {
15504 service ::com::sun::star::text::TextField;
15505 [property] string CurrentPresentation;
15506 [property] short ReferenceFieldSource;
15507 [property] string SourceName;
15508 [property] short ReferenceFieldPart;
15509 [property] short SequenceNumber;
15511 published service GraphicObjectCount {
15512 service ::com::sun::star::text::TextField;
15513 [property] short NumberingType;
15515 published service HiddenParagraph {
15516 service ::com::sun::star::text::TextField;
15517 [property] string Condition;
15518 [property] boolean IsHidden;
15520 published service HiddenText {
15521 service ::com::sun::star::text::TextField;
15522 [property] string Content;
15523 [property] string Condition;
15524 [property] boolean IsHidden;
15526 published service Input {
15527 service ::com::sun::star::text::TextField;
15528 [property, optional] string Content;
15529 [property, optional] string Hint;
15530 [property, optional] string Help;
15532 published service InputUser {
15533 service ::com::sun::star::text::TextField;
15534 [property, optional] string Content;
15535 [property, optional] string Hint;
15537 published service JumpEdit {
15538 service ::com::sun::star::text::TextField;
15539 [property] string Hint;
15540 [property] string PlaceHolder;
15541 [property] short PlaceHolderType;
15543 published service Macro {
15544 service ::com::sun::star::text::TextField;
15545 [property] string Hint;
15546 [property] string MacroName;
15547 [property] string MacroLibrary;
15549 published service PageCount {
15550 service ::com::sun::star::text::TextField;
15551 [property] short NumberingType;
15553 published service PageNumber {
15554 service ::com::sun::star::text::TextField;
15555 [property] short NumberingType;
15556 [property] short Offset;
15557 [property] ::com::sun::star::text::PageNumberType SubType;
15558 [property] string UserText;
15560 published service ParagraphCount {
15561 service ::com::sun::star::text::TextField;
15562 [property] short NumberingType;
15564 published service ReferencePageGet {
15565 service ::com::sun::star::text::TextField;
15566 [property] short NumberingType;
15568 published service ReferencePageSet {
15569 service ::com::sun::star::text::TextField;
15570 [property] short Offset;
15571 [property] boolean NameOn;
15573 published service Script {
15574 service ::com::sun::star::text::TextField;
15575 [property] string Content;
15576 [property] string ScriptType;
15577 [property] boolean URLContent;
15579 published service SetExpression {
15580 service ::com::sun::star::text::DependentTextField;
15581 [property] string Content;
15582 [property] string CurrentPresentation;
15583 [property] long NumberFormat;
15584 [property] short NumberingType;
15585 [property] boolean IsShowFormula;
15586 [property] string Hint;
15587 [property] boolean IsInput;
15588 [property] boolean IsVisible;
15589 [property] short SequenceValue;
15590 [property] short SubType;
15591 [property] double Value;
15592 [property, readonly] string VariableName;
15593 [property, optional] boolean IsFixedLanguage;
15595 published service TableCount {
15596 service ::com::sun::star::text::TextField;
15597 [property] short NumberingType;
15599 /** @deprecated */ published service TableFormula {
15600 service ::com::sun::star::text::TextField;
15601 [property] string Formula;
15602 [property] string CurrentPresentation;
15603 [property] boolean IsShowFormula;
15604 [property] short NumberFormat;
15606 published service TemplateName {
15607 service ::com::sun::star::text::TextField;
15608 [property] short FileFormat;
15610 published service URL {
15611 service ::com::sun::star::text::TextField;
15612 [property] short Format;
15613 [property] string URL;
15614 [property] string Representation;
15615 [property] string TargetFrame;
15617 published service User {
15618 service ::com::sun::star::text::DependentTextField;
15619 [property, optional] boolean IsShowFormula;
15620 [property, optional] boolean IsVisible;
15621 [property, optional] long NumberFormat;
15622 [property, optional] boolean IsFixedLanguage;
15624 published service WordCount {
15625 service ::com::sun::star::text::TextField;
15626 [property] short NumberingType;
15628 module docinfo {
15629 published service ChangeAuthor {
15630 service ::com::sun::star::text::TextField;
15631 [property] string Author;
15632 [property] string CurrentPresentation;
15633 [property, optional] boolean IsFixed;
15635 published service ChangeDateTime {
15636 service ::com::sun::star::text::TextField;
15637 [property] string CurrentPresentation;
15638 [property, optional] boolean IsFixed;
15639 [property] boolean IsDate;
15640 [property] double DateTimeValue;
15641 [property] long NumberFormat;
15642 [property, optional] boolean IsFixedLanguage;
15644 published service CreateAuthor {
15645 service ::com::sun::star::text::TextField;
15646 [property] string Author;
15647 [property] string CurrentPresentation;
15648 [property, optional] boolean IsFixed;
15650 published service CreateDateTime {
15651 service ::com::sun::star::text::TextField;
15652 [property] string CurrentPresentation;
15653 [property, optional] boolean IsFixed;
15654 [property] boolean IsDate;
15655 [property] double DateTimeValue;
15656 [property] long NumberFormat;
15657 [property, optional] boolean IsFixedLanguage;
15659 published service Custom {
15660 service ::com::sun::star::text::TextField;
15661 [property] string Name;
15662 [property] string CurrentPresentation;
15663 [property] boolean IsFixed;
15665 published service Description {
15666 service ::com::sun::star::text::TextField;
15667 [property] string Content;
15668 [property] string CurrentPresentation;
15669 [property] boolean IsFixed;
15671 published service EditTime {
15672 service ::com::sun::star::text::TextField;
15673 [property] string CurrentPresentation;
15674 [property, optional] boolean IsFixed;
15675 [property] double DateTimeValue;
15676 [property] long NumberFormat;
15677 [property, optional] boolean IsFixedLanguage;
15679 published service Keywords {
15680 service ::com::sun::star::text::TextField;
15681 [property] string Content;
15682 [property] string CurrentPresentation;
15683 [property] boolean IsFixed;
15685 published service PrintAuthor {
15686 service ::com::sun::star::text::TextField;
15687 [property] string Author;
15688 [property] string CurrentPresentation;
15689 [property, optional] boolean IsFixed;
15691 published service PrintDateTime {
15692 service ::com::sun::star::text::TextField;
15693 [property] string CurrentPresentation;
15694 [property, optional] boolean IsFixed;
15695 [property] boolean IsDate;
15696 [property] double DateTimeValue;
15697 [property] long NumberFormat;
15698 [property, optional] boolean IsFixedLanguage;
15700 published service Revision {
15701 service ::com::sun::star::text::TextField;
15702 [property] string Content;
15703 [property] string CurrentPresentation;
15704 [property] boolean IsFixed;
15706 published service Subject {
15707 service ::com::sun::star::text::TextField;
15708 [property] string Content;
15709 [property] string CurrentPresentation;
15710 [property] boolean IsFixed;
15712 published service Title {
15713 service ::com::sun::star::text::TextField;
15714 [property] string Content;
15715 [property] string CurrentPresentation;
15716 [property] boolean IsFixed;
15721 module ucb {
15722 published exception AlreadyInitializedException: ::com::sun::star::uno::Exception {
15724 published interface XAnyCompare;
15725 published interface XAnyCompareFactory {
15726 interface ::com::sun::star::uno::XInterface;
15727 ::com::sun::star::ucb::XAnyCompare createAnyCompareByName([in] string PropertyName);
15729 published service AnyCompareFactory: ::com::sun::star::ucb::XAnyCompareFactory {
15730 createWithLocale([in] ::com::sun::star::lang::Locale aLocale);
15732 published exception AuthenticationRequest: ::com::sun::star::task::ClassifiedInteractionRequest {
15733 string ServerName;
15734 string Diagnostic;
15735 boolean HasRealm;
15736 string Realm;
15737 boolean HasUserName;
15738 string UserName;
15739 boolean HasPassword;
15740 string Password;
15741 boolean HasAccount;
15742 string Account;
15744 published interface XContentIdentifier;
15745 published interface XContentAccess {
15746 interface ::com::sun::star::uno::XInterface;
15747 string queryContentIdentifierString();
15748 ::com::sun::star::ucb::XContentIdentifier queryContentIdentifier();
15749 ::com::sun::star::ucb::XContent queryContent();
15751 published service ContentResultSet {
15752 service ::com::sun::star::sdbc::ResultSet;
15753 interface ::com::sun::star::lang::XComponent;
15754 interface ::com::sun::star::sdbc::XResultSetMetaDataSupplier;
15755 interface ::com::sun::star::sdbc::XResultSet;
15756 interface ::com::sun::star::sdbc::XRow;
15757 interface ::com::sun::star::sdbc::XCloseable;
15758 interface ::com::sun::star::beans::XPropertySet;
15759 interface ::com::sun::star::ucb::XContentAccess;
15760 [property, optional] long CursorTravelMode;
15761 [property, readonly] long RowCount;
15762 [property, readonly] boolean IsRowCountFinal;
15764 published service CachedContentResultSet {
15765 service ::com::sun::star::ucb::ContentResultSet;
15766 [property] long FetchSize;
15767 [property] long FetchDirection;
15769 published interface XContentIdentifierMapping;
15770 published interface XCachedContentResultSetFactory {
15771 interface ::com::sun::star::uno::XInterface;
15772 ::com::sun::star::sdbc::XResultSet createCachedContentResultSet([in] ::com::sun::star::sdbc::XResultSet xSource, [in] ::com::sun::star::ucb::XContentIdentifierMapping xMapping);
15774 published service CachedContentResultSetFactory: ::com::sun::star::ucb::XCachedContentResultSetFactory;
15775 published struct FetchResult {
15776 sequence< any > Rows;
15777 long StartIndex;
15778 boolean Orientation;
15779 short FetchError;
15781 published interface XFetchProvider {
15782 interface ::com::sun::star::uno::XInterface;
15783 ::com::sun::star::ucb::FetchResult fetch([in] long nRowStartPosition, [in] long nRowCount, [in] boolean bDirection);
15785 published interface XFetchProviderForContentAccess {
15786 interface ::com::sun::star::uno::XInterface;
15787 ::com::sun::star::ucb::FetchResult fetchContentIdentifierStrings([in] long nRowStartPosition, [in] long nRowCount, [in] boolean bDirection);
15788 ::com::sun::star::ucb::FetchResult fetchContentIdentifiers([in] long nRowStartPosition, [in] long nRowCount, [in] boolean bDirection);
15789 ::com::sun::star::ucb::FetchResult fetchContents([in] long nRowStartPosition, [in] long nRowCount, [in] boolean bDirection);
15791 published service CachedContentResultSetStub {
15792 service ::com::sun::star::ucb::ContentResultSet;
15793 interface ::com::sun::star::ucb::XFetchProvider;
15794 interface ::com::sun::star::ucb::XFetchProviderForContentAccess;
15796 published interface XCachedContentResultSetStubFactory {
15797 interface ::com::sun::star::uno::XInterface;
15798 ::com::sun::star::sdbc::XResultSet createCachedContentResultSetStub([in] ::com::sun::star::sdbc::XResultSet xSource);
15800 published service CachedContentResultSetStubFactory: ::com::sun::star::ucb::XCachedContentResultSetStubFactory;
15801 published exception ListenerAlreadySetException: ::com::sun::star::uno::Exception {
15803 published exception ServiceNotFoundException: ::com::sun::star::uno::Exception {
15805 published interface XDynamicResultSetListener;
15806 published interface XDynamicResultSet {
15807 interface ::com::sun::star::lang::XComponent;
15808 ::com::sun::star::sdbc::XResultSet getStaticResultSet() raises (::com::sun::star::ucb::ListenerAlreadySetException);
15809 void setListener([in] ::com::sun::star::ucb::XDynamicResultSetListener Listener) raises (::com::sun::star::ucb::ListenerAlreadySetException);
15810 void connectToCache([in] ::com::sun::star::ucb::XDynamicResultSet Cache) raises (::com::sun::star::ucb::ListenerAlreadySetException, ::com::sun::star::ucb::AlreadyInitializedException, ::com::sun::star::ucb::ServiceNotFoundException);
15811 short getCapabilities();
15813 published interface XSourceInitialization {
15814 interface ::com::sun::star::uno::XInterface;
15815 void setSource([in] ::com::sun::star::uno::XInterface Source) raises (::com::sun::star::ucb::AlreadyInitializedException);
15817 published service CachedDynamicResultSet {
15818 interface ::com::sun::star::ucb::XDynamicResultSet;
15819 interface ::com::sun::star::ucb::XSourceInitialization;
15821 published interface XContentIdentifierMapping;
15822 published interface XCachedDynamicResultSetFactory {
15823 interface ::com::sun::star::uno::XInterface;
15824 ::com::sun::star::ucb::XDynamicResultSet createCachedDynamicResultSet([in] ::com::sun::star::ucb::XDynamicResultSet SourceStub, [in] ::com::sun::star::ucb::XContentIdentifierMapping ContentIdentifierMapping);
15826 published service CachedDynamicResultSetFactory: ::com::sun::star::ucb::XCachedDynamicResultSetFactory;
15827 published service CachedDynamicResultSetStub {
15828 interface ::com::sun::star::ucb::XDynamicResultSet;
15829 interface ::com::sun::star::ucb::XSourceInitialization;
15831 published struct NumberedSortingInfo {
15832 long ColumnIndex;
15833 boolean Ascending;
15835 published interface XCachedDynamicResultSetStubFactory {
15836 interface ::com::sun::star::uno::XInterface;
15837 ::com::sun::star::ucb::XDynamicResultSet createCachedDynamicResultSetStub([in] ::com::sun::star::ucb::XDynamicResultSet Source);
15838 void connectToCache([in] ::com::sun::star::ucb::XDynamicResultSet Source, [in] ::com::sun::star::ucb::XDynamicResultSet TargetCache, [in] sequence< ::com::sun::star::ucb::NumberedSortingInfo > SortingInfo, [in] ::com::sun::star::ucb::XAnyCompareFactory CompareFactory) raises (::com::sun::star::ucb::ListenerAlreadySetException, ::com::sun::star::ucb::AlreadyInitializedException);
15840 published service CachedDynamicResultSetStubFactory: ::com::sun::star::ucb::XCachedDynamicResultSetStubFactory;
15841 published exception IllegalIdentifierException: ::com::sun::star::uno::Exception {
15843 published interface XContentIdentifier;
15844 published interface XContentProvider {
15845 interface ::com::sun::star::uno::XInterface;
15846 ::com::sun::star::ucb::XContent queryContent([in] ::com::sun::star::ucb::XContentIdentifier Identifier) raises (::com::sun::star::ucb::IllegalIdentifierException);
15847 long compareContentIds([in] ::com::sun::star::ucb::XContentIdentifier Id1, [in] ::com::sun::star::ucb::XContentIdentifier Id2);
15849 published interface XProgressHandler;
15850 published service CommandEnvironment: ::com::sun::star::ucb::XCommandEnvironment {
15851 create([in] ::com::sun::star::task::XInteractionHandler InteractionHandler, [in] ::com::sun::star::ucb::XProgressHandler ProgressHandler);
15853 published struct CommandInfo {
15854 string Name;
15855 long Handle;
15856 type ArgType;
15858 published constants CommandInfoChange {
15859 const long COMMAND_INSERTED = 0;
15860 const long COMMAND_REMOVED = 1;
15862 published struct CommandInfoChangeEvent: ::com::sun::star::lang::EventObject {
15863 string Name;
15864 long Handle;
15865 long Reason;
15867 published constants ConnectionMode {
15868 const short OFFLINE = 1;
15869 const short ONLINE = 0;
15871 published constants ContentAction {
15872 const long DELETED = 2;
15873 const long EXCHANGED = 4;
15874 const long INSERTED = 0;
15875 const long REMOVED = 1;
15876 /** @deprecated */ const long SEARCH_MATCHED = 128;
15878 published interface XContentIdentifier;
15879 published struct ContentEvent: ::com::sun::star::lang::EventObject {
15880 long Action;
15881 ::com::sun::star::ucb::XContent Content;
15882 ::com::sun::star::ucb::XContentIdentifier Id;
15884 published constants ContentInfoAttribute {
15885 const short INSERT_WITH_INPUTSTREAM = 1;
15886 const short KIND_DOCUMENT = 2;
15887 const short KIND_FOLDER = 4;
15888 const short KIND_LINK = 8;
15889 const short NONE = 0;
15891 published interface XContentIdentifier;
15892 published interface XContentIdentifierFactory {
15893 interface ::com::sun::star::uno::XInterface;
15894 ::com::sun::star::ucb::XContentIdentifier createContentIdentifier([in] string ContentId);
15896 published interface XParameterizedContentProvider {
15897 interface ::com::sun::star::uno::XInterface;
15898 ::com::sun::star::ucb::XContentProvider registerInstance([in] string Template, [in] string Arguments, [in] boolean ReplaceExisting) raises (::com::sun::star::lang::IllegalArgumentException);
15899 ::com::sun::star::ucb::XContentProvider deregisterInstance([in] string Template, [in] string Arguments) raises (::com::sun::star::lang::IllegalArgumentException);
15901 published service ContentProvider {
15902 interface ::com::sun::star::ucb::XContentProvider;
15903 [optional] interface ::com::sun::star::ucb::XContentIdentifierFactory;
15904 [optional] interface ::com::sun::star::ucb::XParameterizedContentProvider;
15906 published struct ContentProviderInfo {
15907 ::com::sun::star::ucb::XContentProvider ContentProvider;
15908 string Scheme;
15910 published interface XContentProviderSupplier {
15911 interface ::com::sun::star::uno::XInterface;
15912 ::com::sun::star::ucb::XContentProvider getContentProvider();
15914 published service ContentProviderProxy {
15915 interface ::com::sun::star::uno::XInterface;
15916 interface ::com::sun::star::ucb::XContentProviderSupplier;
15917 interface ::com::sun::star::ucb::XContentProvider;
15918 interface ::com::sun::star::ucb::XParameterizedContentProvider;
15920 published interface XContentProviderFactory {
15921 interface ::com::sun::star::uno::XInterface;
15922 ::com::sun::star::ucb::XContentProvider createContentProvider([in] string Service);
15924 published service ContentProviderProxyFactory: ::com::sun::star::ucb::XContentProviderFactory;
15925 published constants ContentResultSetCapability {
15926 const short SORTED = 1;
15928 /** @deprecated */ published interface XContentTransmitter {
15929 interface ::com::sun::star::uno::XInterface;
15930 void transmit([in] string Source, [in] string Destination, [in] long Flags);
15932 /** @deprecated */ published service ContentTransmitter {
15933 interface ::com::sun::star::ucb::XContentTransmitter;
15935 published struct CrossReference {
15936 string Group;
15937 long Id;
15939 published service HierarchyDataSource {
15940 interface ::com::sun::star::lang::XMultiServiceFactory;
15941 interface ::com::sun::star::lang::XComponent;
15943 published service DefaultHierarchyDataSource {
15944 service ::com::sun::star::ucb::HierarchyDataSource;
15946 published struct DocumentHeaderField {
15947 string Name;
15948 string Value;
15950 published enum DocumentStoreMode {
15951 REMOTE = 0,
15952 LOCAL = 1
15954 published exception DuplicateCommandIdentifierException: ::com::sun::star::uno::Exception {
15956 published exception DuplicateProviderException: ::com::sun::star::uno::Exception {
15958 published service DynamicResultSet {
15959 interface ::com::sun::star::ucb::XDynamicResultSet;
15961 /** @deprecated */ published constants Error {
15962 const long ACCOUNT_SYNTAX = 122977;
15963 const long BAD_CCMAIL_EXPORT_PASSWORD = 122909;
15964 const long BAD_INET = 122965;
15965 const long CCMAIL_EXPORT_ERROR = 122905;
15966 const long CCMAIL_EXPORT_NOT_TERMINATING = 122957;
15967 const long CCMAIL_EXPORT_TOO_LONG = 122910;
15968 const long CNTOUT_NO_FROM = 122890;
15969 const long CONFIRM_EMPTY_TRASH = 122952;
15970 const long CONNECT_FAILURE = 122883;
15971 const long COULD_NOT_INIT_COMPONENT = 122961;
15972 const long DELETE_ABORTED = 122892;
15973 const long DO_LOG = 122947;
15974 const long EMPTY_SERVERNAME = 122963;
15975 const long EMPTY_USERNAME = 122964;
15976 const long EXTERNAL_COMMAND_FAILED = 122958;
15977 const long FILE_EXISTS = 122921;
15978 const long FILE_NOT_EXISTS = 122922;
15979 const long FOLDER_EXISTS = 122911;
15980 const long FOLDER_INVALID = 122896;
15981 const long FOLDER_NOT_EXISTS = 122912;
15982 const long FSYS_ACCESS_DENIED = 122926;
15983 const long FSYS_CACHE_INCONSISTENT = 122940;
15984 const long FSYS_CANT_ITERATE = 122937;
15985 const long FSYS_CANT_RESOLVE_CONFLICT = 122936;
15986 const long FSYS_DELETE = 122944;
15987 const long FSYS_INSERT_MEDIUM = 122955;
15988 const long FSYS_INVALID_CHAR = 122924;
15989 const long FSYS_INVALID_DEVICE = 122925;
15990 const long FSYS_IS_MARKED = 122945;
15991 const long FSYS_IS_WILDCARD = 122933;
15992 const long FSYS_LOCK = 122942;
15993 const long FSYS_LOCK_VIOLATION = 122927;
15994 const long FSYS_LOST_ROOT = 122949;
15995 const long FSYS_MISPLACED_CHAR = 122923;
15996 const long FSYS_NOT_A_DIRECTORY = 122932;
15997 const long FSYS_NOT_A_FILE = 122931;
15998 const long FSYS_NOT_SUPPORTED = 122929;
15999 const long FSYS_NO_TARGET = 122953;
16000 const long FSYS_READONLY = 122941;
16001 const long FSYS_RECURSIVE = 122954;
16002 const long FSYS_ROOT_DELETE = 122920;
16003 const long FSYS_UNKNOWN = 122930;
16004 const long FSYS_UNLOCK = 122943;
16005 const long FSYS_UPDATE_NEEDED = 122935;
16006 const long FSYS_VOLUME_FULL = 122928;
16007 const long FTP_DCONFAILURE = 122901;
16008 const long FTP_GENERAL_FAILURE = 122946;
16009 const long FTP_NETWORKERROR = 122898;
16010 const long FTP_NOTNECESSARYCMD = 122899;
16011 const long FTP_PROXY = 122950;
16012 const long FTP_RESOLVERERROR = 122897;
16013 const long FTP_SERVICEUNAVAILABLE = 122900;
16014 const long FTP_TRANSFERABORTED = 122902;
16015 const long HTTP_COOKIE_REQUEST = 122948;
16016 const long ILLEGAL_CCMAIL_EXPORT_FILE = 122907;
16017 const long ILLEGAL_MESSAGE_ID = 122914;
16018 const long IMAP_BAD_SERVER = 122969;
16019 const long IMAP_BAD_TITLE = 122971;
16020 const long IMAP_CONNECTION_CLOSED = 122967;
16021 const long IMAP_NOT_IMAP4 = 122968;
16022 const long IMAP_SERVER_MSG = 122966;
16023 const long IS_RESCHEDULED = 122918;
16024 const long LOGIN_FAILURE_ACCOUNT = 122976;
16025 const long LOGIN_FAILURE_MAILSEND = 122882;
16026 const long LOGIN_FAILURE_NEWSSEND = 122881;
16027 const long LOGIN_FAILURE_RECEIVE = 122880;
16028 const long MESSAGE_NOT_FOUND = 122908;
16029 const long MULTIPLE_NOT_SEARCHABLE = 122939;
16030 const long NONE = 0;
16031 const long NOTAVAILABLE = 122894;
16032 const long NOT_HANDLED = 122960;
16033 const long NO_CCMAIL_EXPORT_FILE = 122906;
16034 const long NO_DOCINFO = 122956;
16035 const long NO_VIM_BBOARDLIST = 122913;
16036 const long NO_VIM_LIBRARY = 122903;
16037 const long ONE_NOT_SEARCHABLE = 122938;
16038 const long PASSWORD_SYNTAX = 122973;
16039 const long QUERY_DELETE = 122893;
16040 const long QUERY_DELETE_CACHE = 122974;
16041 const long RENAMED_WRONG_FILE_FORMAT = 122934;
16042 const long RENAME_FAILED = 122959;
16043 const long REORGANIZE_FILE_LOCKED = 122970;
16044 const long REORGANIZE_NO_DISKSPACE = 122975;
16045 const long SERVERNAME_SYNTAX = 122916;
16046 const long SERVER_CONNECT_FAILURE = 122972;
16047 const long SERVER_PORT_SYNTAX = 122915;
16048 const long SOURCE_SAME_AS_TARGET = 122951;
16049 const long STORAGE_KILLED = 122887;
16050 const long STORAGE_READONLY = 122886;
16051 const long TOO_MANY_GROUPS = 122891;
16052 const long TRANSFER_URL_NOT_SUPPORTED = 122962;
16053 const long UCB_OFFLINE = 122884;
16054 const long UCB_SERVER_ERROR = 122885;
16055 const long UNSUPPORTED_URL = 122889;
16056 const long USERNAME_SYNTAX = 122917;
16057 const long VIM_LIBRARY_CORRUPTED = 122904;
16058 const long VIM_LIBRARY_ERROR = 122895;
16059 const long VIM_NO_FAKE_MESSAGE_ID = 122919;
16060 const long WRONG_FILE_FORMAT = 122888;
16062 published struct ExportStreamInfo {
16063 ::com::sun::star::io::XOutputStream Target;
16064 boolean ForceBodies;
16066 published service FTPContent {
16067 interface ::com::sun::star::lang::XComponent;
16068 interface ::com::sun::star::ucb::XContent;
16069 interface ::com::sun::star::ucb::XContentCreator;
16070 interface ::com::sun::star::ucb::XCommandProcessor;
16071 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16072 interface ::com::sun::star::beans::XPropertyContainer;
16073 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16074 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16075 interface ::com::sun::star::container::XChild;
16077 published service FTPContentProvider {
16078 interface ::com::sun::star::ucb::XContentProvider;
16080 published constants FetchError {
16081 const short ENDOFDATA = 1;
16082 const short EXCEPTION = 2;
16083 const short SUCCESS = 0;
16085 published service FileContent {
16086 interface ::com::sun::star::lang::XComponent;
16087 interface ::com::sun::star::ucb::XContent;
16088 interface ::com::sun::star::ucb::XContentCreator;
16089 interface ::com::sun::star::ucb::XCommandProcessor;
16090 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16091 interface ::com::sun::star::beans::XPropertyContainer;
16092 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16093 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16094 interface ::com::sun::star::container::XChild;
16095 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16097 published interface XFileIdentifierConverter {
16098 interface ::com::sun::star::uno::XInterface;
16099 long getFileProviderLocality([in] string BaseURL);
16100 string getFileURLFromSystemPath([in] string BaseURL, [in] string SystemPath);
16101 string getSystemPathFromFileURL([in] string URL);
16103 published service FileContentProvider {
16104 interface ::com::sun::star::ucb::XContentProvider;
16105 interface ::com::sun::star::ucb::XContentIdentifierFactory;
16106 interface ::com::sun::star::beans::XPropertySet;
16107 interface ::com::sun::star::ucb::XFileIdentifierConverter;
16109 published constants FileSystemNotation {
16110 const long DOS_NOTATION = 2;
16111 const long MAC_NOTATION = 3;
16112 const long UNIX_NOTATION = 1;
16113 const long UNKNOWN_NOTATION = 0;
16115 published enum FolderListCommand {
16116 GET = 0,
16117 GET_SUBSCRIBED = 1,
16118 SET = 2
16120 published struct FolderListEntry {
16121 string Title;
16122 string ID;
16123 boolean Subscribed;
16124 boolean New;
16125 boolean Removed;
16126 boolean Purge;
16128 published struct FolderList {
16129 ::com::sun::star::ucb::FolderListCommand Command;
16130 sequence< ::com::sun::star::ucb::FolderListEntry > List;
16132 published enum TransferCommandOperation {
16133 COPY = 0,
16134 MOVE = 1,
16135 LINK = 2
16137 published struct GlobalTransferCommandArgument {
16138 ::com::sun::star::ucb::TransferCommandOperation Operation;
16139 string SourceURL;
16140 string TargetURL;
16141 string NewTitle;
16142 long NameClash;
16144 published service HelpContent {
16145 interface ::com::sun::star::lang::XComponent;
16146 interface ::com::sun::star::ucb::XContent;
16147 interface ::com::sun::star::ucb::XCommandProcessor;
16148 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16149 interface ::com::sun::star::beans::XPropertyContainer;
16150 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16151 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16152 interface ::com::sun::star::container::XChild;
16153 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16155 published service HelpContentProvider {
16156 interface ::com::sun::star::ucb::XContentProvider;
16158 published service HierarchyContentProvider {
16159 interface ::com::sun::star::ucb::XContentProvider;
16161 published service HierarchyDataReadAccess {
16162 interface ::com::sun::star::container::XNameAccess;
16163 interface ::com::sun::star::container::XHierarchicalNameAccess;
16164 interface ::com::sun::star::util::XChangesNotifier;
16165 interface ::com::sun::star::lang::XComponent;
16167 published service HierarchyDataReadWriteAccess {
16168 service ::com::sun::star::ucb::HierarchyDataReadAccess;
16169 interface ::com::sun::star::container::XNameContainer;
16170 interface ::com::sun::star::lang::XSingleServiceFactory;
16171 interface ::com::sun::star::util::XChangesBatch;
16173 published service HierarchyFolderContent {
16174 interface ::com::sun::star::lang::XComponent;
16175 interface ::com::sun::star::ucb::XContent;
16176 interface ::com::sun::star::ucb::XCommandProcessor;
16177 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16178 interface ::com::sun::star::beans::XPropertyContainer;
16179 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16180 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16181 interface ::com::sun::star::container::XChild;
16182 interface ::com::sun::star::ucb::XContentCreator;
16183 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16185 published service HierarchyLinkContent {
16186 interface ::com::sun::star::lang::XComponent;
16187 interface ::com::sun::star::ucb::XContent;
16188 interface ::com::sun::star::ucb::XCommandProcessor;
16189 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16190 interface ::com::sun::star::beans::XPropertyContainer;
16191 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16192 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16193 interface ::com::sun::star::container::XChild;
16194 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16196 published service HierarchyRootFolderContent {
16197 interface ::com::sun::star::lang::XComponent;
16198 interface ::com::sun::star::ucb::XContent;
16199 interface ::com::sun::star::ucb::XCommandProcessor;
16200 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16201 interface ::com::sun::star::beans::XPropertyContainer;
16202 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16203 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16204 interface ::com::sun::star::container::XChild;
16205 interface ::com::sun::star::ucb::XContentCreator;
16206 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16208 published struct InsertCommandArgument {
16209 ::com::sun::star::io::XInputStream Data;
16210 boolean ReplaceExisting;
16212 published exception InteractiveAppException: ::com::sun::star::task::ClassifiedInteractionRequest {
16213 unsigned long Code;
16215 published exception InteractiveAugmentedIOException: ::com::sun::star::ucb::InteractiveIOException {
16216 sequence< any > Arguments;
16218 published exception InteractiveBadTransferURLException: ::com::sun::star::uno::Exception {
16220 /** @deprecated */ published exception InteractiveFileIOException: ::com::sun::star::ucb::InteractiveIOException {
16221 string FileName;
16223 published exception InteractiveNetworkException: ::com::sun::star::task::ClassifiedInteractionRequest {
16225 published exception InteractiveNetworkConnectException: ::com::sun::star::ucb::InteractiveNetworkException {
16226 string Server;
16228 published exception InteractiveNetworkGeneralException: ::com::sun::star::ucb::InteractiveNetworkException {
16230 published exception InteractiveNetworkOffLineException: ::com::sun::star::ucb::InteractiveNetworkException {
16232 published exception InteractiveNetworkReadException: ::com::sun::star::ucb::InteractiveNetworkException {
16233 string Diagnostic;
16235 published exception InteractiveNetworkResolveNameException: ::com::sun::star::ucb::InteractiveNetworkException {
16236 string Server;
16238 published exception InteractiveNetworkWriteException: ::com::sun::star::ucb::InteractiveNetworkException {
16239 string Diagnostic;
16241 published exception InteractiveWrongMediumException: ::com::sun::star::task::ClassifiedInteractionRequest {
16242 any Medium;
16244 published struct Link {
16245 string Source;
16246 string Destination;
16248 published struct ListAction {
16249 long Position;
16250 long Count;
16251 long ListActionType;
16252 any ActionInfo;
16254 published constants ListActionType {
16255 const long CLEARED = 23;
16256 const long COMPLETED = 27;
16257 const long INSERTED = 21;
16258 const long MOVED = 24;
16259 const long PROPERTIES_CHANGED = 25;
16260 const long REMOVED = 22;
16261 const long WELCOME = 20;
16263 published struct ListEvent: ::com::sun::star::lang::EventObject {
16264 sequence< ::com::sun::star::ucb::ListAction > Changes;
16266 published enum LockDepth {
16267 ZERO = 0,
16268 ONE = 1,
16269 INFINITY = 2
16271 published enum LockScope {
16272 EXCLUSIVE = 0,
16273 SHARED = 1
16275 published enum LockType {
16276 WRITE = 0
16278 published struct LockEntry {
16279 ::com::sun::star::ucb::LockScope Scope;
16280 ::com::sun::star::ucb::LockType Type;
16282 published struct Lock: ::com::sun::star::ucb::LockEntry {
16283 ::com::sun::star::ucb::LockDepth Depth;
16284 any Owner;
16285 hyper Timeout;
16286 sequence< string > LockTokens;
16288 published exception MissingInputStreamException: ::com::sun::star::uno::Exception {
16290 published exception MissingPropertiesException: ::com::sun::star::uno::Exception {
16291 sequence< string > Properties;
16293 published constants NameClash {
16294 const long ASK = 4;
16295 const long ERROR = 0;
16296 /** @deprecated */ const long KEEP = 3;
16297 const long OVERWRITE = 1;
16298 const long RENAME = 2;
16300 published exception NameClashException: ::com::sun::star::task::ClassifiedInteractionRequest {
16301 string Name;
16303 published exception NameClashResolveRequest: ::com::sun::star::task::ClassifiedInteractionRequest {
16304 string TargetFolderURL;
16305 string ClashingName;
16306 string ProposedNewName;
16308 published service ODMAContent {
16309 interface ::com::sun::star::lang::XComponent;
16310 interface ::com::sun::star::ucb::XContent;
16311 interface ::com::sun::star::ucb::XCommandProcessor;
16312 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16313 interface ::com::sun::star::beans::XPropertyContainer;
16314 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16315 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16316 interface ::com::sun::star::container::XChild;
16317 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16319 published service ODMAContentProvider {
16320 interface ::com::sun::star::ucb::XContentProvider;
16322 published struct OpenCommandArgument {
16323 long Mode;
16324 long Priority;
16325 ::com::sun::star::uno::XInterface Sink;
16326 sequence< ::com::sun::star::beans::Property > Properties;
16328 published struct OpenCommandArgument2: ::com::sun::star::ucb::OpenCommandArgument {
16329 sequence< ::com::sun::star::ucb::NumberedSortingInfo > SortingInfo;
16331 published struct OpenCommandArgument3: ::com::sun::star::ucb::OpenCommandArgument2 {
16332 sequence< ::com::sun::star::beans::NamedValue > OpeningFlags;
16334 published constants OpenMode {
16335 const short ALL = 0;
16336 const short DOCUMENT = 2;
16337 const short DOCUMENTS = 3;
16338 const short DOCUMENT_SHARE_DENY_NONE = 4;
16339 const short DOCUMENT_SHARE_DENY_WRITE = 5;
16340 const short FOLDERS = 1;
16342 published enum OutgoingMessageState {
16343 WRITTEN = 0,
16344 PARTIALLY_LOCALLY_SENT = 1,
16345 COMPLETELY_LOCALLY_SENT = 2,
16346 RECOVERABLE_LOCAL_ERROR = 3,
16347 NONRECOVERABLE_LOCAL_ERROR = 4,
16348 EXTERNAL_ERROR = 5,
16349 WAITING_CONFIRMATION = 6,
16350 CONFIRMED = 7
16352 published service PackageContentProvider {
16353 interface ::com::sun::star::ucb::XContentProvider;
16355 published service PackageFolderContent {
16356 interface ::com::sun::star::lang::XComponent;
16357 interface ::com::sun::star::ucb::XContent;
16358 interface ::com::sun::star::ucb::XCommandProcessor;
16359 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16360 interface ::com::sun::star::beans::XPropertyContainer;
16361 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16362 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16363 interface ::com::sun::star::container::XChild;
16364 interface ::com::sun::star::ucb::XContentCreator;
16365 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16367 published service PackageStreamContent {
16368 interface ::com::sun::star::lang::XComponent;
16369 interface ::com::sun::star::ucb::XContent;
16370 interface ::com::sun::star::ucb::XCommandProcessor;
16371 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16372 interface ::com::sun::star::beans::XPropertyContainer;
16373 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16374 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16375 interface ::com::sun::star::container::XChild;
16376 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16378 published interface XPropertySetRegistry;
16379 published interface XPersistentPropertySet {
16380 interface ::com::sun::star::beans::XPropertySet;
16381 ::com::sun::star::ucb::XPropertySetRegistry getRegistry();
16382 string getKey();
16384 published service PersistentPropertySet {
16385 interface ::com::sun::star::ucb::XPersistentPropertySet;
16386 interface ::com::sun::star::container::XNamed;
16387 interface ::com::sun::star::beans::XPropertyContainer;
16388 interface ::com::sun::star::beans::XPropertyAccess;
16390 published struct PostCommandArgument {
16391 ::com::sun::star::io::XInputStream Source;
16392 ::com::sun::star::uno::XInterface Sink;
16394 published struct PostCommandArgument2: ::com::sun::star::ucb::PostCommandArgument {
16395 string MediaType;
16396 string Referer;
16398 published enum Priority {
16399 HIGHEST = 0,
16400 HIGH = 1,
16401 NORMAL = 2,
16402 LOW = 3,
16403 LOWEST = 4
16405 published service PropertiesManager: ::com::sun::star::beans::XPropertySetInfo;
16406 published interface XPropertySetRegistry {
16407 interface ::com::sun::star::uno::XInterface;
16408 ::com::sun::star::ucb::XPersistentPropertySet openPropertySet([in] string key, [in] boolean create);
16409 void removePropertySet([in] string key);
16411 published service PropertySetRegistry {
16412 interface ::com::sun::star::ucb::XPropertySetRegistry;
16413 interface ::com::sun::star::container::XNameAccess;
16415 published enum PropertyValueState {
16416 UNPROCESSED = 0,
16417 PROCESSED = 1,
16418 INVALID_NAME = 2,
16419 INVALID_TYPE = 3
16421 published struct PropertyValueInfo: ::com::sun::star::beans::PropertyValue {
16422 ::com::sun::star::ucb::PropertyValueState ValueState;
16424 published struct RecipientInfo {
16425 string ProtocolType;
16426 ::com::sun::star::ucb::OutgoingMessageState State;
16427 string To;
16428 string CC;
16429 string BCC;
16430 string Newsgroups;
16431 string Server;
16432 string Username;
16433 string Password;
16434 string VIMPostOfficePath;
16435 string ProtocolErrorString;
16436 long ProtocolErrorNumber;
16437 long SendTries;
16439 published service RemoteAccessContentProvider {
16440 service ::com::sun::star::ucb::ContentProvider;
16441 interface ::com::sun::star::ucb::XParameterizedContentProvider;
16443 published interface XRemoteContentProviderDoneListener;
16444 published interface XRemoteContentProviderAcceptor {
16445 interface ::com::sun::star::uno::XInterface;
16446 boolean addRemoteContentProvider([in] string Identifier, [in] ::com::sun::star::lang::XMultiServiceFactory Factory, [in] sequence< string > Templates, [in] ::com::sun::star::ucb::XRemoteContentProviderDoneListener DoneListener);
16447 boolean removeRemoteContentProvider([in] string Identifier);
16449 published interface XContentProviderManager;
16450 /** @deprecated */ published interface XRemoteContentProviderActivator {
16451 interface ::com::sun::star::uno::XInterface;
16452 ::com::sun::star::ucb::XContentProviderManager activateRemoteContentProviders();
16454 published service RemoteContentProviderAcceptor {
16455 interface ::com::sun::star::ucb::XRemoteContentProviderAcceptor;
16456 /** @deprecated */ [optional] interface ::com::sun::star::ucb::XRemoteContentProviderActivator;
16458 published enum RemoteContentProviderChangeAction {
16459 ADDED = 0,
16460 REMOVED = 1
16462 published struct RemoteContentProviderChangeEvent: ::com::sun::star::lang::EventObject {
16463 string Identifier;
16464 ::com::sun::star::ucb::RemoteContentProviderChangeAction Action;
16466 /** @deprecated */ published service RemoteProxyContentProvider {
16467 interface ::com::sun::star::ucb::XContentProvider;
16468 [optional] interface ::com::sun::star::ucb::XContentIdentifierFactory;
16469 [optional] interface ::com::sun::star::ucb::XParameterizedContentProvider;
16471 published exception ResultSetException: ::com::sun::star::sdbc::SQLException {
16473 published struct RuleTerm {
16474 string Property;
16475 any Operand;
16476 short Operator;
16477 boolean CaseSensitive;
16478 boolean RegularExpression;
16480 published struct Rule {
16481 sequence< ::com::sun::star::ucb::RuleTerm > Terms;
16482 string Parameter;
16483 short Action;
16485 published constants RuleAction {
16486 const short COPY = 8;
16487 const short DELETE = 9;
16488 const short FORWARD = 11;
16489 const short HIDE = 2;
16490 const short LINK = 10;
16491 const short MARK = 3;
16492 const short MARKREAD = 5;
16493 const short MARKUNREAD = 6;
16494 const short MOVE = 7;
16495 const short NONE = 0;
16496 const short SHOW = 1;
16497 const short UNMARK = 4;
16499 published constants RuleOperator {
16500 const short CONTAINS = 1;
16501 const short CONTAINSNOT = 2;
16502 const short EQUAL = 5;
16503 const short GREATEREQUAL = 3;
16504 const short LESSEQUAL = 4;
16505 const short NOTEQUAL = 6;
16506 const short VALUE_FALSE = 8;
16507 const short VALUE_TRUE = 7;
16509 published struct RuleSet {
16510 sequence< ::com::sun::star::ucb::Rule > Rules;
16511 boolean HandleFolder;
16513 published struct SearchCriterium {
16514 sequence< ::com::sun::star::ucb::RuleTerm > Terms;
16516 published enum SearchRecursion {
16517 NONE = 0,
16518 ONE_LEVEL = 1,
16519 DEEP = 2
16521 published struct SearchInfo {
16522 sequence< ::com::sun::star::ucb::SearchCriterium > Criteria;
16523 ::com::sun::star::ucb::SearchRecursion Recursion;
16524 boolean IncludeBase;
16525 boolean RespectFolderViewRestrictions;
16526 boolean RespectDocViewRestrictions;
16527 boolean FollowIndirections;
16529 published struct SearchCommandArgument {
16530 ::com::sun::star::ucb::SearchInfo Info;
16531 sequence< ::com::sun::star::beans::Property > Properties;
16533 published struct SendInfo {
16534 string ProtocolType;
16535 string Value;
16537 published struct SendMediaTypes {
16538 string ProtocolType;
16539 sequence< string > Value;
16541 published interface XSimpleFileAccess {
16542 interface ::com::sun::star::uno::XInterface;
16543 void copy([in] string SourceURL, [in] string DestURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16544 void move([in] string SourceURL, [in] string DestURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16545 void kill([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16546 boolean isFolder([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16547 boolean isReadOnly([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16548 void setReadOnly([in] string FileURL, [in] boolean bReadOnly) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16549 void createFolder([in] string NewFolderURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16550 long getSize([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16551 string getContentType([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16552 ::com::sun::star::util::DateTime getDateTimeModified([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16553 sequence< string > getFolderContents([in] string FolderURL, [in] boolean bIncludeFolders) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16554 boolean exists([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16555 ::com::sun::star::io::XInputStream openFileRead([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16556 ::com::sun::star::io::XOutputStream openFileWrite([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16557 ::com::sun::star::io::XStream openFileReadWrite([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16558 void setInteractionHandler([in] ::com::sun::star::task::XInteractionHandler Handler);
16560 published interface XSimpleFileAccess2 {
16561 interface ::com::sun::star::ucb::XSimpleFileAccess;
16562 void writeFile([in] string FileURL, [in] ::com::sun::star::io::XInputStream data) raises (::com::sun::star::uno::Exception);
16564 published interface XSimpleFileAccess3 {
16565 interface ::com::sun::star::ucb::XSimpleFileAccess2;
16566 boolean isHidden([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16567 void setHidden([in] string FileURL, [in] boolean bHidden) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16569 published service SimpleFileAccess: ::com::sun::star::ucb::XSimpleFileAccess3;
16570 published interface XSortedDynamicResultSetFactory {
16571 interface ::com::sun::star::uno::XInterface;
16572 ::com::sun::star::ucb::XDynamicResultSet createSortedDynamicResultSet([in] ::com::sun::star::ucb::XDynamicResultSet Source, [in] sequence< ::com::sun::star::ucb::NumberedSortingInfo > Info, [in] ::com::sun::star::ucb::XAnyCompareFactory CompareFactory);
16574 published service SortedDynamicResultSetFactory: ::com::sun::star::ucb::XSortedDynamicResultSetFactory;
16575 published struct SortingInfo {
16576 string PropertyName;
16577 boolean Ascending;
16579 published interface XPropertySetRegistryFactory {
16580 interface ::com::sun::star::uno::XInterface;
16581 ::com::sun::star::ucb::XPropertySetRegistry createPropertySetRegistry([in] string URL);
16583 published service Store: ::com::sun::star::ucb::XPropertySetRegistryFactory;
16584 published enum SynchronizePolicy {
16585 SERVER_IS_MASTER = 0,
16586 CLIENT_IS_MASTER = 1,
16587 NONE_IS_MASTER = 2
16589 published struct TransferInfo {
16590 boolean MoveData;
16591 string SourceURL;
16592 string NewTitle;
16593 long NameClash;
16595 published struct TransferResult {
16596 string Source;
16597 string Target;
16598 any Result;
16600 published interface XContentProviderManager {
16601 interface ::com::sun::star::uno::XInterface;
16602 ::com::sun::star::ucb::XContentProvider registerContentProvider([in] ::com::sun::star::ucb::XContentProvider Provider, [in] string Scheme, [in] boolean ReplaceExisting) raises (::com::sun::star::ucb::DuplicateProviderException);
16603 void deregisterContentProvider([in] ::com::sun::star::ucb::XContentProvider Provider, [in] string Scheme);
16604 sequence< ::com::sun::star::ucb::ContentProviderInfo > queryContentProviders();
16605 ::com::sun::star::ucb::XContentProvider queryContentProvider([in] string Identifier);
16607 published interface XUniversalContentBroker {
16608 interface ::com::sun::star::lang::XComponent;
16609 interface ::com::sun::star::ucb::XContentProvider;
16610 interface ::com::sun::star::ucb::XContentProviderManager;
16611 interface ::com::sun::star::ucb::XContentIdentifierFactory;
16612 interface ::com::sun::star::ucb::XCommandProcessor2;
16614 published service UniversalContentBroker: ::com::sun::star::ucb::XUniversalContentBroker {
16615 create();
16617 published exception UnsupportedCommandException: ::com::sun::star::uno::Exception {
16619 published exception UnsupportedDataSinkException: ::com::sun::star::uno::Exception {
16620 ::com::sun::star::uno::XInterface Sink;
16622 published exception UnsupportedNameClashException: ::com::sun::star::uno::Exception {
16623 long NameClash;
16625 published exception UnsupportedOpenModeException: ::com::sun::star::uno::Exception {
16626 short Mode;
16628 published enum VerificationMode {
16629 ALWAYS = 0,
16630 ONCE = 1,
16631 NEVER = 2
16633 published service WebDAVContentProvider {
16634 interface ::com::sun::star::ucb::XContentProvider;
16636 published service WebDAVDocumentContent {
16637 interface ::com::sun::star::lang::XComponent;
16638 interface ::com::sun::star::ucb::XContent;
16639 interface ::com::sun::star::ucb::XCommandProcessor;
16640 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16641 interface ::com::sun::star::beans::XPropertyContainer;
16642 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16643 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16644 interface ::com::sun::star::container::XChild;
16645 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16647 published service WebDAVFolderContent {
16648 interface ::com::sun::star::lang::XComponent;
16649 interface ::com::sun::star::ucb::XContent;
16650 interface ::com::sun::star::ucb::XCommandProcessor;
16651 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16652 interface ::com::sun::star::beans::XPropertyContainer;
16653 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16654 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16655 interface ::com::sun::star::container::XChild;
16656 interface ::com::sun::star::ucb::XContentCreator;
16657 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16659 published struct WelcomeDynamicResultSetStruct {
16660 ::com::sun::star::sdbc::XResultSet Old;
16661 ::com::sun::star::sdbc::XResultSet New;
16663 published interface XAnyCompare {
16664 interface ::com::sun::star::uno::XInterface;
16665 short compare([in] any Any1, [in] any Any2);
16667 published interface XCommandInfo {
16668 interface ::com::sun::star::uno::XInterface;
16669 sequence< ::com::sun::star::ucb::CommandInfo > getCommands();
16670 ::com::sun::star::ucb::CommandInfo getCommandInfoByName([in] string Name) raises (::com::sun::star::ucb::UnsupportedCommandException);
16671 ::com::sun::star::ucb::CommandInfo getCommandInfoByHandle([in] long Handle) raises (::com::sun::star::ucb::UnsupportedCommandException);
16672 boolean hasCommandByName([in] string Name);
16673 boolean hasCommandByHandle([in] long Handle);
16675 published interface XCommandInfoChangeListener {
16676 interface ::com::sun::star::lang::XEventListener;
16677 void commandInfoChange([in] ::com::sun::star::ucb::CommandInfoChangeEvent evt);
16679 published interface XContentEventListener {
16680 interface ::com::sun::star::lang::XEventListener;
16681 void contentEvent([in] ::com::sun::star::ucb::ContentEvent evt);
16683 published interface XContentIdentifier {
16684 interface ::com::sun::star::uno::XInterface;
16685 string getContentIdentifier();
16686 string getContentProviderScheme();
16688 published interface XContentIdentifierMapping {
16689 interface ::com::sun::star::uno::XInterface;
16690 string mapContentIdentifierString([in] string Source);
16691 ::com::sun::star::ucb::XContentIdentifier mapContentIdentifier([in] ::com::sun::star::ucb::XContentIdentifier Source);
16692 ::com::sun::star::ucb::XContent mapContent([in] ::com::sun::star::ucb::XContent Source);
16693 boolean mapRow([inout] sequence< any > Value);
16695 /** @deprecated */ published interface XDataContainer {
16696 interface ::com::sun::star::container::XIndexContainer;
16697 string getContentType();
16698 void setContentType([in] string aType);
16699 sequence< byte > getData();
16700 void setData([in] sequence< byte > aData);
16701 /** @deprecated */ string getDataURL();
16702 /** @deprecated */ void setDataURL([in] string aURL);
16704 published interface XDynamicResultSetListener {
16705 interface ::com::sun::star::lang::XEventListener;
16706 void notify([in] ::com::sun::star::ucb::ListEvent Changes);
16708 published interface XInteractionHandlerSupplier {
16709 interface ::com::sun::star::uno::XInterface;
16710 boolean hasInteractionHandler();
16712 published interface XInteractionReplaceExistingData {
16713 interface ::com::sun::star::task::XInteractionContinuation;
16715 published interface XInteractionSupplyAuthentication {
16716 interface ::com::sun::star::task::XInteractionContinuation;
16717 boolean canSetRealm();
16718 void setRealm([in] string Realm);
16719 boolean canSetUserName();
16720 void setUserName([in] string UserName);
16721 boolean canSetPassword();
16722 void setPassword([in] string Password);
16723 sequence< ::com::sun::star::ucb::RememberAuthentication > getRememberPasswordModes([out] ::com::sun::star::ucb::RememberAuthentication Default);
16724 void setRememberPassword([in] ::com::sun::star::ucb::RememberAuthentication Remember);
16725 boolean canSetAccount();
16726 void setAccount([in] string Account);
16727 sequence< ::com::sun::star::ucb::RememberAuthentication > getRememberAccountModes([out] ::com::sun::star::ucb::RememberAuthentication Default);
16728 void setRememberAccount([in] ::com::sun::star::ucb::RememberAuthentication Remember);
16730 published interface XInteractionSupplyName {
16731 interface ::com::sun::star::task::XInteractionContinuation;
16732 void setName([in] string Name);
16734 published interface XProgressHandler {
16735 interface ::com::sun::star::uno::XInterface;
16736 void push([in] any Status);
16737 void update([in] any Status);
16738 void pop();
16740 published interface XPropertyMatcher {
16741 interface ::com::sun::star::uno::XInterface;
16742 boolean matches([in] ::com::sun::star::ucb::XCommandProcessor Properties, [in] ::com::sun::star::ucb::XCommandEnvironment Environment);
16744 published interface XPropertyMatcherFactory {
16745 interface ::com::sun::star::uno::XInterface;
16746 ::com::sun::star::ucb::XPropertyMatcher createPropertyMatcher([in] sequence< ::com::sun::star::ucb::SearchCriterium > Criteria);
16748 published interface XRecycler {
16749 interface ::com::sun::star::uno::XInterface;
16750 void trashContent([in] ::com::sun::star::ucb::XCommandProcessor Properties, [in] ::com::sun::star::ucb::XContentIdentifier Identifier);
16752 published interface XRemoteContentProviderChangeListener {
16753 interface ::com::sun::star::lang::XEventListener;
16754 void remoteContentProviderChange([in] ::com::sun::star::ucb::RemoteContentProviderChangeEvent Event);
16756 published interface XRemoteContentProviderChangeNotifier {
16757 interface ::com::sun::star::uno::XInterface;
16758 void addRemoteContentProviderChangeListener([in] ::com::sun::star::ucb::XRemoteContentProviderChangeListener Listener);
16759 void removeRemoteContentProviderChangeListener([in] ::com::sun::star::ucb::XRemoteContentProviderChangeListener Listener);
16761 published interface XRemoteContentProviderConnectionControl {
16762 interface ::com::sun::star::uno::XInterface;
16763 void enableConnectionControl([in] ::com::sun::star::ucb::XRemoteContentProviderAcceptor Acceptor, [in] ::com::sun::star::uno::XInterface Token);
16765 published interface XRemoteContentProviderDistributor {
16766 interface ::com::sun::star::uno::XInterface;
16767 boolean connectToRemoteAcceptor([in] string Url, [in] string Identifier) raises (::com::sun::star::connection::NoConnectException, ::com::sun::star::connection::ConnectionSetupException, ::com::sun::star::lang::IllegalArgumentException);
16768 boolean disconnectFromRemoteAcceptor([in] string Url);
16769 void disconnectFromAll();
16771 published interface XRemoteContentProviderDoneListener {
16772 interface ::com::sun::star::uno::XInterface;
16773 void doneWithRemoteContentProviders([in] ::com::sun::star::ucb::XRemoteContentProviderAcceptor Acceptor);
16775 published interface XRemoteContentProviderSupplier {
16776 interface ::com::sun::star::uno::XInterface;
16777 ::com::sun::star::lang::XMultiServiceFactory queryRemoteContentProvider([in] string Identifier);
16780 module ui {
16781 published service ActionTrigger {
16782 [property] string Text;
16783 [property] string CommandURL;
16784 [property, optional] string HelpURL;
16785 [property] ::com::sun::star::awt::XBitmap Image;
16786 [property] ::com::sun::star::container::XIndexContainer SubContainer;
16788 published service ActionTriggerContainer {
16789 interface ::com::sun::star::container::XIndexContainer;
16790 interface ::com::sun::star::lang::XMultiServiceFactory;
16791 [optional] interface ::com::sun::star::container::XEnumerationAccess;
16792 [optional] interface ::com::sun::star::container::XContainer;
16794 published service ActionTriggerSeparator {
16795 [property, optional] short SeparatorType;
16797 published constants ActionTriggerSeparatorType {
16798 const short LINE = 0;
16799 const short LINEBREAK = 2;
16800 const short SPACE = 1;
16802 published struct ContextMenuExecuteEvent {
16803 ::com::sun::star::awt::XWindow SourceWindow;
16804 ::com::sun::star::awt::Point ExecutePosition;
16805 ::com::sun::star::container::XIndexContainer ActionTriggerContainer;
16806 ::com::sun::star::view::XSelectionSupplier Selection;
16808 published enum ContextMenuInterceptorAction {
16809 IGNORED = 0,
16810 CANCELLED = 1,
16811 EXECUTE_MODIFIED = 2,
16812 CONTINUE_MODIFIED = 3
16814 published interface XContextMenuInterceptor {
16815 interface ::com::sun::star::uno::XInterface;
16816 ::com::sun::star::ui::ContextMenuInterceptorAction notifyContextMenuExecute([in] ::com::sun::star::ui::ContextMenuExecuteEvent aEvent);
16818 module dialogs {
16819 published constants CommonFilePickerElementIds {
16820 const short CONTROL_FILEVIEW = 4;
16821 const short EDIT_FILEURL = 5;
16822 const short EDIT_FILEURL_LABEL = 7;
16823 const short LISTBOX_FILTER = 3;
16824 const short LISTBOX_FILTER_LABEL = 6;
16825 const short PUSHBUTTON_CANCEL = 2;
16826 const short PUSHBUTTON_OK = 1;
16828 published constants ControlActions {
16829 const short ADD_ITEM = 1;
16830 const short ADD_ITEMS = 2;
16831 const short DELETE_ITEM = 3;
16832 const short DELETE_ITEMS = 4;
16833 const short GET_HELP_URL = 101;
16834 const short GET_ITEMS = 6;
16835 const short GET_SELECTED_ITEM = 7;
16836 const short GET_SELECTED_ITEM_INDEX = 8;
16837 const short SET_HELP_URL = 100;
16838 const short SET_SELECT_ITEM = 5;
16840 published exception ExecutableDialogException: ::com::sun::star::uno::Exception {
16842 published constants ExecutableDialogResults {
16843 const short CANCEL = 0;
16844 const short OK = 1;
16846 published constants ExtendedFilePickerElementIds {
16847 const short CHECKBOX_AUTOEXTENSION = 100;
16848 const short CHECKBOX_FILTEROPTIONS = 102;
16849 const short CHECKBOX_LINK = 104;
16850 const short CHECKBOX_PASSWORD = 101;
16851 const short CHECKBOX_PREVIEW = 105;
16852 const short CHECKBOX_READONLY = 103;
16853 const short CHECKBOX_SELECTION = 110;
16854 const short LISTBOX_FILTER_SELECTOR = 210;
16855 const short LISTBOX_IMAGE_TEMPLATE = 109;
16856 const short LISTBOX_IMAGE_TEMPLATE_LABEL = 209;
16857 const short LISTBOX_TEMPLATE = 108;
16858 const short LISTBOX_TEMPLATE_LABEL = 208;
16859 const short LISTBOX_VERSION = 107;
16860 const short LISTBOX_VERSION_LABEL = 207;
16861 const short PUSHBUTTON_PLAY = 106;
16863 published interface XFilePicker {
16864 interface ::com::sun::star::ui::dialogs::XExecutableDialog;
16865 void setMultiSelectionMode([in] boolean bMode);
16866 void setDefaultName([in] string aName);
16867 void setDisplayDirectory([in] string aDirectory) raises (::com::sun::star::lang::IllegalArgumentException);
16868 string getDisplayDirectory();
16869 /** @deprecated */ sequence< string > getFiles();
16871 published interface XFilePicker2 {
16872 interface ::com::sun::star::ui::dialogs::XFilePicker;
16873 sequence< string > getSelectedFiles();
16875 published interface XFilePickerListener;
16876 published interface XFilePickerNotifier {
16877 interface ::com::sun::star::uno::XInterface;
16878 void addFilePickerListener([in] ::com::sun::star::ui::dialogs::XFilePickerListener xListener);
16879 void removeFilePickerListener([in] ::com::sun::star::ui::dialogs::XFilePickerListener xListener);
16881 published interface XFilePreview {
16882 interface ::com::sun::star::uno::XInterface;
16883 sequence< short > getSupportedImageFormats();
16884 ::com::sun::star::util::Color getTargetColorDepth();
16885 long getAvailableWidth();
16886 long getAvailableHeight();
16887 void setImage([in] short aImageFormat, [in] any aImage) raises (::com::sun::star::lang::IllegalArgumentException);
16888 boolean setShowState([in] boolean bShowState);
16889 boolean getShowState();
16891 published interface XFilterGroupManager {
16892 interface ::com::sun::star::uno::XInterface;
16893 void appendFilterGroup([in] string sGroupTitle, [in] sequence< ::com::sun::star::beans::StringPair > aFilters) raises (::com::sun::star::lang::IllegalArgumentException);
16895 published interface XFilterManager {
16896 interface ::com::sun::star::uno::XInterface;
16897 void appendFilter([in] string aTitle, [in] string aFilter) raises (::com::sun::star::lang::IllegalArgumentException);
16898 void setCurrentFilter([in] string aTitle) raises (::com::sun::star::lang::IllegalArgumentException);
16899 string getCurrentFilter();
16901 published interface XFilePicker3 {
16902 interface ::com::sun::star::ui::dialogs::XFilePicker2;
16903 interface ::com::sun::star::ui::dialogs::XFilePickerNotifier;
16904 interface ::com::sun::star::ui::dialogs::XFilterManager;
16905 interface ::com::sun::star::ui::dialogs::XFilterGroupManager;
16906 interface ::com::sun::star::util::XCancellable;
16907 interface ::com::sun::star::lang::XComponent;
16908 [optional] interface ::com::sun::star::ui::dialogs::XFilePreview;
16910 published service FilePicker: ::com::sun::star::ui::dialogs::XFilePicker3 {
16911 createWithMode([in] short Mode);
16913 published struct FilePickerEvent: ::com::sun::star::lang::EventObject {
16914 short ElementId;
16916 published constants FilePreviewImageFormats {
16917 const short BITMAP = 1;
16919 published interface XFolderPicker {
16920 interface ::com::sun::star::ui::dialogs::XExecutableDialog;
16921 void setDisplayDirectory([in] string aDirectory) raises (::com::sun::star::lang::IllegalArgumentException);
16922 string getDisplayDirectory();
16923 string getDirectory();
16924 void setDescription([in] string aDescription);
16926 published interface XFolderPicker2 {
16927 interface ::com::sun::star::ui::dialogs::XFolderPicker;
16928 interface ::com::sun::star::util::XCancellable;
16930 published service FolderPicker: ::com::sun::star::ui::dialogs::XFolderPicker2;
16931 /** @deprecated */ published constants ListboxControlActions {
16932 const short ADD_ITEM = 1;
16933 const short ADD_ITEMS = 2;
16934 const short DELETE_ITEM = 3;
16935 const short DELETE_ITEMS = 4;
16936 const short GET_ITEMS = 6;
16937 const short GET_SELECTED_ITEM = 7;
16938 const short SET_SELECT_ITEM = 5;
16940 published constants TemplateDescription {
16941 const short FILEOPEN_LINK_PREVIEW = 9;
16942 const short FILEOPEN_LINK_PREVIEW_IMAGE_TEMPLATE = 6;
16943 const short FILEOPEN_PLAY = 7;
16944 const short FILEOPEN_READONLY_VERSION = 8;
16945 const short FILEOPEN_SIMPLE = 0;
16946 const short FILESAVE_AUTOEXTENSION = 10;
16947 const short FILESAVE_AUTOEXTENSION_PASSWORD = 2;
16948 const short FILESAVE_AUTOEXTENSION_PASSWORD_FILTEROPTIONS = 3;
16949 const short FILESAVE_AUTOEXTENSION_SELECTION = 4;
16950 const short FILESAVE_AUTOEXTENSION_TEMPLATE = 5;
16951 const short FILESAVE_SIMPLE = 1;
16953 published interface XControlAccess {
16954 interface ::com::sun::star::uno::XInterface;
16955 void setControlProperty([in] string aControlName, [in] string aControlProperty, [in] any aValue) raises (::com::sun::star::lang::IllegalArgumentException);
16956 any getControlProperty([in] string aControlName, [in] string aControlProperty) raises (::com::sun::star::lang::IllegalArgumentException);
16958 published interface XControlInformation {
16959 interface ::com::sun::star::uno::XInterface;
16960 sequence< string > getSupportedControls();
16961 boolean isControlSupported([in] string aControlName);
16962 sequence< string > getSupportedControlProperties([in] string aControlName) raises (::com::sun::star::lang::IllegalArgumentException);
16963 boolean isControlPropertySupported([in] string aControlName, [in] string aControlProperty) raises (::com::sun::star::lang::IllegalArgumentException);
16965 published interface XFilePickerControlAccess {
16966 interface ::com::sun::star::ui::dialogs::XFilePicker;
16967 void setValue([in] short ControlId, [in] short aControlAction, [in] any aValue);
16968 any getValue([in] short aControlId, [in] short aControlAction);
16969 void setLabel([in] short aControlId, [in] string aLabel);
16970 string getLabel([in] short aControlId);
16971 void enableControl([in] short ControlId, [in] boolean bEnable);
16973 published interface XFilePickerListener {
16974 interface ::com::sun::star::lang::XEventListener;
16975 void fileSelectionChanged([in] ::com::sun::star::ui::dialogs::FilePickerEvent aEvent);
16976 void directoryChanged([in] ::com::sun::star::ui::dialogs::FilePickerEvent aEvent);
16977 string helpRequested([in] ::com::sun::star::ui::dialogs::FilePickerEvent aEvent);
16978 void controlStateChanged([in] ::com::sun::star::ui::dialogs::FilePickerEvent aEvent);
16979 void dialogSizeChanged();
16981 published service XSLTFilterDialog: ::com::sun::star::ui::dialogs::XExecutableDialog;
16984 module util {
16985 published struct AtomClassRequest {
16986 long atomClass;
16987 sequence< long > atoms;
16989 published struct AtomDescription {
16990 long atom;
16991 string description;
16993 published struct ChangesEvent: ::com::sun::star::lang::EventObject {
16994 any Base;
16995 ::com::sun::star::util::ChangesSet Changes;
16997 published enum DataEditorEventType {
16998 DONE = 0,
16999 CANCELED = 1
17001 published struct DataEditorEvent: ::com::sun::star::lang::EventObject {
17002 ::com::sun::star::util::DataEditorEventType Type;
17004 published struct DateTimeRange {
17005 unsigned long StartNanoSeconds;
17006 unsigned short StartSeconds;
17007 unsigned short StartMinutes;
17008 unsigned short StartHours;
17009 unsigned short StartDay;
17010 unsigned short StartMonth;
17011 short StartYear;
17012 unsigned long EndNanoSeconds;
17013 unsigned short EndSeconds;
17014 unsigned short EndMinutes;
17015 unsigned short EndHours;
17016 unsigned short EndDay;
17017 unsigned short EndMonth;
17018 short EndYear;
17019 boolean IsUTC;
17021 published interface XJobManager {
17022 interface ::com::sun::star::uno::XInterface;
17023 void registerJob([in] ::com::sun::star::util::XCancellable Job);
17024 void releaseJob([in] ::com::sun::star::util::XCancellable Job);
17025 void cancelAllJobs();
17027 published typedef short Language;
17028 published exception MalformedNumberFormatException: ::com::sun::star::uno::Exception {
17029 long CheckPos;
17031 published constants MeasureUnit {
17032 const short APPFONT = 17;
17033 const short CM = 3;
17034 const short FOOT = 13;
17035 const short INCH = 7;
17036 const short INCH_1000TH = 4;
17037 const short INCH_100TH = 5;
17038 const short INCH_10TH = 6;
17039 const short KM = 11;
17040 const short M = 10;
17041 const short MILE = 14;
17042 const short MM = 2;
17043 const short MM_100TH = 0;
17044 const short MM_10TH = 1;
17045 const short PERCENT = 15;
17046 const short PICA = 12;
17047 const short PIXEL = 16;
17048 const short POINT = 8;
17049 const short SYSFONT = 18;
17050 const short TWIP = 9;
17052 published struct ModeChangeEvent: ::com::sun::star::lang::EventObject {
17053 string NewMode;
17055 published exception NotNumericException: ::com::sun::star::uno::Exception {
17057 published constants NumberFormat {
17058 const short ALL = 0;
17059 const short CURRENCY = 8;
17060 const short DATE = 2;
17061 const short DATETIME = 6;
17062 const short DEFINED = 1;
17063 const short EMPTY = 4096;
17064 const short FRACTION = 64;
17065 const short LOGICAL = 1024;
17066 const short NUMBER = 16;
17067 const short PERCENT = 128;
17068 const short SCIENTIFIC = 32;
17069 const short TEXT = 256;
17070 const short TIME = 4;
17071 const short UNDEFINED = 2048;
17073 published service NumberFormatProperties {
17074 [property, readonly] string FormatString;
17075 [property, readonly] ::com::sun::star::lang::Locale Locale;
17076 [property, readonly] short Type;
17077 [property] string Comment;
17079 published service NumberFormatSettings {
17080 interface ::com::sun::star::beans::XPropertySet;
17081 [property] ::com::sun::star::util::Date NullDate;
17082 [property] short StandardDecimals;
17083 [property] boolean NoZero;
17084 [property] short TwoDigitDateStart;
17086 published interface XNumberFormatTypes {
17087 interface ::com::sun::star::uno::XInterface;
17088 long getStandardIndex([in] ::com::sun::star::lang::Locale nLocale);
17089 long getStandardFormat([in] short nType, [in] ::com::sun::star::lang::Locale nLocale);
17090 long getFormatIndex([in] short nIndex, [in] ::com::sun::star::lang::Locale nLocale);
17091 boolean isTypeCompatible([in] short nOldType, [in] short nNewType);
17092 long getFormatForLocale([in] long nKey, [in] ::com::sun::star::lang::Locale nLocale);
17094 published interface XNumberFormats {
17095 interface ::com::sun::star::uno::XInterface;
17096 ::com::sun::star::beans::XPropertySet getByKey([in] long nKey);
17097 sequence< long > queryKeys([in] short nType, [in] ::com::sun::star::lang::Locale nLocale, [in] boolean bCreate);
17098 long queryKey([in] string aFormat, [in] ::com::sun::star::lang::Locale nLocale, [in] boolean bScan);
17099 long addNew([in] string aFormat, [in] ::com::sun::star::lang::Locale nLocale) raises (::com::sun::star::util::MalformedNumberFormatException);
17100 long addNewConverted([in] string aFormat, [in] ::com::sun::star::lang::Locale nLocale, [in] ::com::sun::star::lang::Locale nNewLocale) raises (::com::sun::star::util::MalformedNumberFormatException);
17101 void removeByKey([in] long nKey);
17102 string generateFormat([in] long nBaseKey, [in] ::com::sun::star::lang::Locale nLocale, [in] boolean bThousands, [in] boolean bRed, [in] short nDecimals, [in] short nLeading);
17104 published service NumberFormats {
17105 interface ::com::sun::star::util::XNumberFormats;
17106 interface ::com::sun::star::util::XNumberFormatTypes;
17108 published service NumberFormatsSupplier: ::com::sun::star::util::XNumberFormatsSupplier {
17109 createWithLocale([in] ::com::sun::star::lang::Locale Locale);
17110 createWithDefaultLocale();
17112 published interface XNumberFormatPreviewer {
17113 interface ::com::sun::star::uno::XInterface;
17114 string convertNumberToPreviewString([in] string aFormat, [in] double fValue, [in] ::com::sun::star::lang::Locale nLocale, [in] boolean bAllowEnglish) raises (::com::sun::star::util::MalformedNumberFormatException);
17115 ::com::sun::star::util::Color queryPreviewColorForNumber([in] string aFormat, [in] double fValue, [in] ::com::sun::star::lang::Locale nLocale, [in] boolean bAllowEnglish, [in] ::com::sun::star::util::Color aDefaultColor) raises (::com::sun::star::util::MalformedNumberFormatException);
17117 published interface XNumberFormatter {
17118 interface ::com::sun::star::uno::XInterface;
17119 void attachNumberFormatsSupplier([in] ::com::sun::star::util::XNumberFormatsSupplier xSupplier);
17120 ::com::sun::star::util::XNumberFormatsSupplier getNumberFormatsSupplier();
17121 long detectNumberFormat([in] long nKey, [in] string aString) raises (::com::sun::star::util::NotNumericException);
17122 double convertStringToNumber([in] long nKey, [in] string aString) raises (::com::sun::star::util::NotNumericException);
17123 string convertNumberToString([in] long nKey, [in] double fValue);
17124 ::com::sun::star::util::Color queryColorForNumber([in] long nKey, [in] double fValue, [in] ::com::sun::star::util::Color aDefaultColor);
17125 string formatString([in] long nKey, [in] string aString);
17126 ::com::sun::star::util::Color queryColorForString([in] long nKey, [in] string aString, [in] ::com::sun::star::util::Color aDefaultColor);
17127 string getInputString([in] long nKey, [in] double fValue);
17129 published interface XNumberFormatter2 {
17130 interface ::com::sun::star::util::XNumberFormatter;
17131 interface ::com::sun::star::util::XNumberFormatPreviewer;
17133 published service NumberFormatter: ::com::sun::star::util::XNumberFormatter2;
17134 published interface XOfficeInstallationDirectories {
17135 interface ::com::sun::star::uno::XInterface;
17136 string getOfficeInstallationDirectoryURL();
17137 string getOfficeUserDataDirectoryURL();
17138 string makeRelocatableURL([in] string URL);
17139 string makeAbsoluteURL([in] string URL);
17141 /** @deprecated */ published service OfficeInstallationDirectories {
17142 interface ::com::sun::star::util::XOfficeInstallationDirectories;
17144 published interface XPathSettings {
17145 interface ::com::sun::star::beans::XPropertySet;
17146 [attribute] string Addin;
17147 [attribute] string AutoCorrect;
17148 [attribute] string AutoText;
17149 [attribute] string Backup;
17150 [attribute] string Basic;
17151 [attribute] string Bitmap;
17152 [attribute] string Config;
17153 [attribute] string Dictionary;
17154 [attribute] string Favorite;
17155 [attribute] string Filter;
17156 [attribute] string Gallery;
17157 [attribute] string Graphic;
17158 [attribute] string Help;
17159 [attribute] string Linguistic;
17160 [attribute] string Module;
17161 [attribute] string Palette;
17162 [attribute] string Plugin;
17163 [attribute] string Storage;
17164 [attribute] string Temp;
17165 [attribute] string Template;
17166 [attribute] string UIConfig;
17167 [attribute] string UserConfig;
17168 /** @deprecated */ [attribute] string UserDictionary;
17169 [attribute] string Work;
17170 [attribute] string BasePathShareLayer;
17171 [attribute] string BasePathUserLayer;
17173 /** @deprecated */ published service PathSettings: ::com::sun::star::util::XPathSettings;
17174 published interface XStringSubstitution {
17175 interface ::com::sun::star::uno::XInterface;
17176 string substituteVariables([in] string aText, [in] boolean bSubstRequired) raises (::com::sun::star::container::NoSuchElementException);
17177 string reSubstituteVariables([in] string aText);
17178 string getSubstituteVariableValue([in] string variable) raises (::com::sun::star::container::NoSuchElementException);
17180 published service PathSubstitution: ::com::sun::star::util::XStringSubstitution;
17181 published interface XSearchDescriptor {
17182 interface ::com::sun::star::beans::XPropertySet;
17183 string getSearchString();
17184 void setSearchString([in] string aString);
17186 published service SearchDescriptor {
17187 interface ::com::sun::star::util::XSearchDescriptor;
17188 interface ::com::sun::star::beans::XPropertySet;
17189 [property] boolean SearchBackwards;
17190 [property] boolean SearchCaseSensitive;
17191 [property] boolean SearchWords;
17192 [property] boolean SearchRegularExpression;
17193 [property] boolean SearchStyles;
17194 [property] boolean SearchSimilarity;
17195 [property] boolean SearchSimilarityRelax;
17196 [property] short SearchSimilarityRemove;
17197 [property] short SearchSimilarityAdd;
17198 [property] short SearchSimilarityExchange;
17199 [property, optional] boolean SearchWildcard;
17201 published interface XReplaceDescriptor {
17202 interface ::com::sun::star::util::XSearchDescriptor;
17203 string getReplaceString();
17204 void setReplaceString([in] string aReplaceString);
17206 published service ReplaceDescriptor {
17207 service ::com::sun::star::util::SearchDescriptor;
17208 interface ::com::sun::star::util::XReplaceDescriptor;
17210 published enum SearchAlgorithms {
17211 ABSOLUTE = 0,
17212 REGEXP = 1,
17213 APPROXIMATE = 2
17215 published constants SearchFlags {
17216 /** @deprecated */ const long ALL_IGNORE_CASE = 1;
17217 const long LEV_RELAXED = 65536;
17218 const long NORM_WORD_ONLY = 16;
17219 /** @deprecated */ const long REG_EXTENDED = 256;
17220 /** @deprecated */ const long REG_NEWLINE = 1024;
17221 /** @deprecated */ const long REG_NOSUB = 512;
17222 const long REG_NOT_BEGINOFLINE = 2048;
17223 const long REG_NOT_ENDOFLINE = 4096;
17224 const long WILD_MATCH_SELECTION = 1048576;
17226 published struct SearchOptions {
17227 ::com::sun::star::util::SearchAlgorithms algorithmType;
17228 long searchFlag;
17229 string searchString;
17230 string replaceString;
17231 ::com::sun::star::lang::Locale Locale;
17232 long changedChars;
17233 long deletedChars;
17234 long insertedChars;
17235 long transliterateFlags;
17237 published struct SearchResult {
17238 long subRegExpressions;
17239 sequence< long > startOffset;
17240 sequence< long > endOffset;
17242 /** @deprecated */ published service Sortable {
17243 interface ::com::sun::star::util::XSortable;
17245 published interface XTextSearch {
17246 interface ::com::sun::star::uno::XInterface;
17247 void setOptions([in] ::com::sun::star::util::SearchOptions options);
17248 ::com::sun::star::util::SearchResult searchForward([in] string searchStr, [in] long startPos, [in] long endPos);
17249 ::com::sun::star::util::SearchResult searchBackward([in] string searchStr, [in] long startPos, [in] long endPos);
17251 published service TextSearch: ::com::sun::star::util::XTextSearch;
17252 published interface XURLTransformer {
17253 interface ::com::sun::star::uno::XInterface;
17254 boolean parseStrict([inout] ::com::sun::star::util::URL aURL);
17255 boolean parseSmart([inout] ::com::sun::star::util::URL aURL, [in] string sSmartProtocol);
17256 boolean assemble([inout] ::com::sun::star::util::URL aURL);
17257 string getPresentation([in] ::com::sun::star::util::URL aURL, [in] boolean bWithPassword);
17259 published service URLTransformer: ::com::sun::star::util::XURLTransformer;
17260 published interface XStringWidth;
17261 published interface XStringAbbreviation {
17262 interface ::com::sun::star::uno::XInterface;
17263 string abbreviateString([in] ::com::sun::star::util::XStringWidth xStringWidth, [in] long nWidth, [in] string aString);
17265 published interface XAtomServer {
17266 interface ::com::sun::star::uno::XInterface;
17267 sequence< ::com::sun::star::util::AtomDescription > getClass([in] long atomClass);
17268 sequence< sequence< ::com::sun::star::util::AtomDescription > > getClasses([in] sequence< long > atomClasses);
17269 sequence< string > getAtomDescriptions([in] sequence< ::com::sun::star::util::AtomClassRequest > atoms);
17270 sequence< ::com::sun::star::util::AtomDescription > getRecentAtoms([in] long atomClass, [in] long atom);
17271 long getAtom([in] long atomClass, [in] string description, [in] boolean create);
17273 published interface XChainable {
17274 interface ::com::sun::star::uno::XInterface;
17275 ::com::sun::star::util::XChainable getPredecessor();
17276 ::com::sun::star::util::XChainable getSuccessor();
17277 void setSuccessor([in] ::com::sun::star::util::XChainable xChainable) raises (::com::sun::star::lang::IllegalArgumentException);
17278 boolean isChainable([in] ::com::sun::star::util::XChainable xChainable);
17280 published interface XChangesListener {
17281 interface ::com::sun::star::lang::XEventListener;
17282 void changesOccurred([in] ::com::sun::star::util::ChangesEvent Event);
17284 published interface XChangesSet {
17285 interface ::com::sun::star::container::XElementAccess;
17286 sequence< ::com::sun::star::util::ElementChange > getAllChanges();
17288 published interface XCloseListener {
17289 interface ::com::sun::star::lang::XEventListener;
17290 void queryClosing([in] ::com::sun::star::lang::EventObject Source, [in] boolean GetsOwnership) raises (::com::sun::star::util::CloseVetoException);
17291 void notifyClosing([in] ::com::sun::star::lang::EventObject Source);
17293 published interface XDataEditorListener;
17294 published interface XDataEditor {
17295 interface ::com::sun::star::uno::XInterface;
17296 void show();
17297 void setModel([in] ::com::sun::star::uno::XInterface model);
17298 ::com::sun::star::uno::XInterface getModel();
17299 void addDataEditorListener([in] ::com::sun::star::util::XDataEditorListener listener);
17300 void removeDataEditorListener([in] ::com::sun::star::util::XDataEditorListener listener);
17302 published interface XDataEditorListener {
17303 interface ::com::sun::star::uno::XInterface;
17304 void updateDataEditorState([in] ::com::sun::star::util::DataEditorEvent event);
17306 published interface XFlushListener {
17307 interface ::com::sun::star::lang::XEventListener;
17308 void flushed([in] ::com::sun::star::lang::EventObject rEvent);
17310 published interface XLinkUpdate {
17311 interface ::com::sun::star::uno::XInterface;
17312 void updateLinks();
17314 published interface XModeChangeApproveListener {
17315 interface ::com::sun::star::lang::XEventListener;
17316 void approveModeChange([in] ::com::sun::star::util::ModeChangeEvent rSource) raises (::com::sun::star::util::VetoException);
17318 published interface XModeChangeListener;
17319 published interface XModeChangeBroadcaster {
17320 interface ::com::sun::star::uno::XInterface;
17321 void addModeChangeListener([in] ::com::sun::star::util::XModeChangeListener rxListener);
17322 void removeModeChangeListener([in] ::com::sun::star::util::XModeChangeListener rxListener);
17323 void addModeChangeApproveListener([in] ::com::sun::star::util::XModeChangeApproveListener rxListener) raises (::com::sun::star::lang::NoSupportException);
17324 void removeModeChangeApproveListener([in] ::com::sun::star::util::XModeChangeApproveListener rxListener) raises (::com::sun::star::lang::NoSupportException);
17326 published interface XModeChangeListener {
17327 interface ::com::sun::star::lang::XEventListener;
17328 void modeChanged([in] ::com::sun::star::util::ModeChangeEvent rSource);
17330 published interface XModifyListener {
17331 interface ::com::sun::star::lang::XEventListener;
17332 void modified([in] ::com::sun::star::lang::EventObject aEvent);
17334 published interface XPropertyReplace {
17335 interface ::com::sun::star::util::XReplaceDescriptor;
17336 boolean getValueSearch();
17337 void setValueSearch([in] boolean bValueSearch);
17338 sequence< ::com::sun::star::beans::PropertyValue > getSearchAttributes();
17339 void setSearchAttributes([in] sequence< ::com::sun::star::beans::PropertyValue > aSearchAttribs) raises (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::IllegalArgumentException);
17340 sequence< ::com::sun::star::beans::PropertyValue > getReplaceAttributes();
17341 void setReplaceAttributes([in] sequence< ::com::sun::star::beans::PropertyValue > aSearchAttribs) raises (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::IllegalArgumentException);
17343 published interface XRefreshListener {
17344 interface ::com::sun::star::lang::XEventListener;
17345 void refreshed([in] ::com::sun::star::lang::EventObject rEvent);
17347 published interface XStringWidth {
17348 interface ::com::sun::star::uno::XInterface;
17349 long queryStringWidth([in] string aString);
17351 published interface XUniqueIDFactory {
17352 interface ::com::sun::star::uno::XInterface;
17353 string createUniqueID();
17355 published singleton theOfficeInstallationDirectories: ::com::sun::star::util::XOfficeInstallationDirectories;
17356 published singleton thePathSettings: ::com::sun::star::util::XPathSettings;
17358 module view {
17359 published constants DocumentZoomType {
17360 const short BY_VALUE = 3;
17361 const short ENTIRE_PAGE = 2;
17362 const short OPTIMAL = 0;
17363 const short PAGE_WIDTH = 1;
17364 const short PAGE_WIDTH_EXACT = 4;
17366 published enum PaperFormat {
17367 A3 = 0,
17368 A4 = 1,
17369 A5 = 2,
17370 B4 = 3,
17371 B5 = 4,
17372 LETTER = 5,
17373 LEGAL = 6,
17374 TABLOID = 7,
17375 USER = 8
17377 published enum PrintableState {
17378 JOB_STARTED = 0,
17379 JOB_COMPLETED = 1,
17380 JOB_SPOOLED = 2,
17381 JOB_ABORTED = 3,
17382 JOB_FAILED = 4,
17383 JOB_SPOOLING_FAILED = 5
17385 published struct PrintJobEvent: ::com::sun::star::lang::EventObject {
17386 ::com::sun::star::view::PrintableState State;
17388 published service PrintOptions {
17389 [property] short CopyCount;
17390 [property] string FileName;
17391 [property] boolean Collate;
17392 /** @deprecated */ [property] boolean Sort;
17393 [property] string Pages;
17394 [property, optional] boolean Wait;
17395 [property, optional] short DuplexMode;
17396 [property, optional] string PrinterName;
17398 published service PrintSettings {
17399 [property] boolean PrintBlackFonts;
17400 [property] boolean PrintControls;
17401 [property] boolean PrintDrawings;
17402 [property] boolean PrintGraphics;
17403 [property] boolean PrintLeftPages;
17404 [property] boolean PrintRightPages;
17405 [property] boolean PrintTables;
17406 [property] boolean PrintReversed;
17407 [property] boolean PrintProspect;
17408 [property] boolean PrintPageBackground;
17409 [property] short PrintAnnotationMode;
17411 published struct PrintableStateEvent: ::com::sun::star::lang::EventObject {
17412 ::com::sun::star::view::PrintableState State;
17414 published service PrinterDescriptor {
17415 [property] string Name;
17416 [property] ::com::sun::star::view::PaperOrientation PaperOrientation;
17417 [property] ::com::sun::star::view::PaperFormat PaperFormat;
17418 [property] ::com::sun::star::awt::Size PaperSize;
17419 [property, readonly] boolean IsBusy;
17420 [property, readonly] boolean CanSetPaperOrientation;
17421 [property, readonly] boolean CanSetPaperFormat;
17422 [property, readonly] boolean CanSetPaperSize;
17424 published service RenderDescriptor {
17425 [property] ::com::sun::star::awt::Size PageSize;
17427 published service RenderOptions {
17428 [property] ::com::sun::star::awt::XDevice RenderDevice;
17429 [property, optional] boolean IsFirstPage;
17430 [property, optional] boolean IsLastPage;
17431 [property, optional] boolean IsSkipEmptyPages;
17432 [property, optional] string PageRange;
17434 published service ViewSettings {
17435 interface ::com::sun::star::beans::XPropertySet;
17436 [property, optional] boolean ShowHoriRuler;
17437 [property, optional] boolean ShowHoriScrollBar;
17438 [property, optional] short ZoomValue;
17439 [property, optional] boolean ShowVertRuler;
17440 [property, optional] boolean ShowVertScrollBar;
17442 published interface XLineCursor {
17443 interface ::com::sun::star::uno::XInterface;
17444 boolean isAtStartOfLine();
17445 boolean isAtEndOfLine();
17446 void gotoEndOfLine([in] boolean bExpand);
17447 void gotoStartOfLine([in] boolean bExpand);
17449 published interface XPrintJob {
17450 interface ::com::sun::star::uno::XInterface;
17451 sequence< ::com::sun::star::beans::PropertyValue > getPrintOptions();
17452 sequence< ::com::sun::star::beans::PropertyValue > getPrinter();
17453 ::com::sun::star::view::XPrintable getPrintable();
17454 void cancelJob();
17456 published interface XPrintJobListener {
17457 interface ::com::sun::star::lang::XEventListener;
17458 void printJobEvent([in] ::com::sun::star::view::PrintJobEvent Event);
17460 published interface XPrintableListener;
17461 published interface XPrintableBroadcaster {
17462 interface ::com::sun::star::uno::XInterface;
17463 void addPrintableListener([in] ::com::sun::star::view::XPrintableListener xListener);
17464 void removePrintableListener([in] ::com::sun::star::view::XPrintableListener xListener);
17466 published interface XPrintableListener {
17467 interface ::com::sun::star::lang::XEventListener;
17468 void stateChanged([in] ::com::sun::star::view::PrintableStateEvent Event);
17470 published interface XRenderable {
17471 interface ::com::sun::star::uno::XInterface;
17472 long getRendererCount([in] any aSelection, [in] sequence< ::com::sun::star::beans::PropertyValue > xOptions) raises (::com::sun::star::lang::IllegalArgumentException);
17473 sequence< ::com::sun::star::beans::PropertyValue > getRenderer([in] long nRenderer, [in] any aSelection, [in] sequence< ::com::sun::star::beans::PropertyValue > xOptions) raises (::com::sun::star::lang::IllegalArgumentException);
17474 void render([in] long nRenderer, [in] any aSelection, [in] sequence< ::com::sun::star::beans::PropertyValue > xOptions) raises (::com::sun::star::lang::IllegalArgumentException);
17476 published interface XViewCursor {
17477 interface ::com::sun::star::uno::XInterface;
17478 boolean goDown([in] short nCount, [in] boolean bExpand);
17479 boolean goUp([in] short nCount, [in] boolean bExpand);
17480 boolean goLeft([in] short nCount, [in] boolean bExpand);
17481 boolean goRight([in] short nCount, [in] boolean bExpand);
17484 module xml {
17485 published service AttributeContainer {
17486 interface ::com::sun::star::container::XNameContainer;
17488 published struct AttributeData {
17489 string Namespace;
17490 string Type;
17491 string Value;
17493 published interface XExportFilter {
17494 interface ::com::sun::star::uno::XInterface;
17495 boolean exporter([in] sequence< ::com::sun::star::beans::PropertyValue > aSourceData, [in] sequence< string > msUserData) raises (::com::sun::star::lang::IllegalArgumentException);
17497 published service ExportFilter {
17498 interface ::com::sun::star::xml::sax::XDocumentHandler;
17499 interface ::com::sun::star::xml::XExportFilter;
17501 published interface XImportFilter {
17502 interface ::com::sun::star::uno::XInterface;
17503 boolean importer([in] sequence< ::com::sun::star::beans::PropertyValue > aSourceData, [in] ::com::sun::star::xml::sax::XDocumentHandler xDocHandler, [in] sequence< string > msUserData) raises (::com::sun::star::lang::IllegalArgumentException);
17505 published service ImportFilter {
17506 interface ::com::sun::star::xml::XImportFilter;
17508 published service NamespaceContainer {
17509 interface ::com::sun::star::container::XNameContainer;
17511 published service TextUserDefinedAttributesSupplier {
17512 [property] ::com::sun::star::container::XNameContainer TextUserDefinedAttributes;
17514 published service XMLExportFilter {
17515 service ::com::sun::star::document::ExportFilter;
17517 published service XMLImportFilter {
17518 service ::com::sun::star::document::ImportFilter;
17519 interface ::com::sun::star::xml::sax::XDocumentHandler;
17521 module sax {
17522 published struct InputSource {
17523 ::com::sun::star::io::XInputStream aInputStream;
17524 string sEncoding;
17525 string sPublicId;
17526 string sSystemId;
17528 published interface XDTDHandler;
17529 published interface XEntityResolver;
17530 published interface XErrorHandler;
17531 published interface XParser {
17532 interface ::com::sun::star::uno::XInterface;
17533 void parseStream([in] ::com::sun::star::xml::sax::InputSource aInputSource) raises (::com::sun::star::xml::sax::SAXException, ::com::sun::star::io::IOException);
17534 void setDocumentHandler([in] ::com::sun::star::xml::sax::XDocumentHandler xHandler);
17535 void setErrorHandler([in] ::com::sun::star::xml::sax::XErrorHandler xHandler);
17536 void setDTDHandler([in] ::com::sun::star::xml::sax::XDTDHandler xHandler);
17537 void setEntityResolver([in] ::com::sun::star::xml::sax::XEntityResolver xResolver);
17538 void setLocale([in] ::com::sun::star::lang::Locale locale);
17540 published service Parser: ::com::sun::star::xml::sax::XParser;
17541 published exception SAXInvalidCharacterException: ::com::sun::star::xml::sax::SAXException {
17543 published exception SAXParseException: ::com::sun::star::xml::sax::SAXException {
17544 string PublicId;
17545 string SystemId;
17546 long LineNumber;
17547 long ColumnNumber;
17549 published interface XExtendedDocumentHandler {
17550 interface ::com::sun::star::xml::sax::XDocumentHandler;
17551 void startCDATA() raises (::com::sun::star::xml::sax::SAXException);
17552 void endCDATA() raises (::com::sun::star::xml::sax::SAXException);
17553 void comment([in] string sComment) raises (::com::sun::star::xml::sax::SAXException);
17554 void allowLineBreak() raises (::com::sun::star::xml::sax::SAXException);
17555 void unknown([in] string sString) raises (::com::sun::star::xml::sax::SAXException);
17557 published interface XAttributeList {
17558 interface ::com::sun::star::uno::XInterface;
17559 short getLength();
17560 string getNameByIndex([in] short i);
17561 string getTypeByIndex([in] short i);
17562 string getTypeByName([in] string aName);
17563 string getValueByIndex([in] short i);
17564 string getValueByName([in] string aName);
17566 published interface XDTDHandler {
17567 interface ::com::sun::star::uno::XInterface;
17568 void notationDecl([in] string sName, [in] string sPublicId, [in] string sSystemId);
17569 void unparsedEntityDecl([in] string sName, [in] string sPublicId, [in] string sSystemId, [in] string sNotationName);
17571 published interface XEntityResolver {
17572 interface ::com::sun::star::uno::XInterface;
17573 ::com::sun::star::xml::sax::InputSource resolveEntity([in] string sPublicId, [in] string sSystemId);
17575 published interface XErrorHandler {
17576 interface ::com::sun::star::uno::XInterface;
17577 void error([in] any aSAXParseException) raises (::com::sun::star::xml::sax::SAXException);
17578 void fatalError([in] any aSAXParseException) raises (::com::sun::star::xml::sax::SAXException);
17579 void warning([in] any aSAXParseException) raises (::com::sun::star::xml::sax::SAXException);
17581 published interface XLocator {
17582 interface ::com::sun::star::uno::XInterface;
17583 long getColumnNumber();
17584 long getLineNumber();
17585 string getPublicId();
17586 string getSystemId();