Bump version to 5.0-14
[LibreOffice.git] / offapi / type_reference / offapi.idl
blobf95e6b7f1844137b970ff9e27e8af3fdc59aa4dc
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;
1485 published service UnoControlFormattedField {
1486 service ::com::sun::star::awt::UnoControlEdit;
1487 [optional] interface ::com::sun::star::awt::XSpinField;
1490 module util {
1491 published interface XNumberFormatsSupplier;
1493 module awt {
1494 published service UnoControlFormattedFieldModel {
1495 service ::com::sun::star::awt::UnoControlModel;
1496 [property] short Align;
1497 [property] ::com::sun::star::util::Color BackgroundColor;
1498 [property] short Border;
1499 [property, optional] long BorderColor;
1500 [property] any EffectiveDefault;
1501 [property] double EffectiveMax;
1502 [property] double EffectiveMin;
1503 [property] double EffectiveValue;
1504 [property] boolean Enabled;
1505 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1506 [property] short FontEmphasisMark;
1507 [property] short FontRelief;
1508 [property] long FormatKey;
1509 [property] ::com::sun::star::util::XNumberFormatsSupplier FormatsSupplier;
1510 [property] string HelpText;
1511 [property] string HelpURL;
1512 [property, optional] boolean HideInactiveSelection;
1513 [property] short MaxTextLen;
1514 [property] boolean Printable;
1515 [property] boolean ReadOnly;
1516 [property, optional] boolean Repeat;
1517 [property, optional] long RepeatDelay;
1518 [property] boolean Spin;
1519 [property, optional] boolean StrictFormat;
1520 [property] boolean Tabstop;
1521 [property] string Text;
1522 [property] ::com::sun::star::util::Color TextColor;
1523 [property] ::com::sun::star::util::Color TextLineColor;
1524 [property] boolean TreatAsNumber;
1525 [property, optional] short WritingMode;
1526 [property, optional] short MouseWheelBehavior;
1527 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1529 published service UnoControlGroupBox {
1530 service ::com::sun::star::awt::UnoControl;
1532 published service UnoControlGroupBoxModel {
1533 service ::com::sun::star::awt::UnoControlModel;
1534 [property] boolean Enabled;
1535 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1536 [property] short FontEmphasisMark;
1537 [property] short FontRelief;
1538 [property] string HelpText;
1539 [property] string HelpURL;
1540 [property] string Label;
1541 [property] boolean Printable;
1542 [property] ::com::sun::star::util::Color TextColor;
1543 [property] ::com::sun::star::util::Color TextLineColor;
1544 [property, optional] short WritingMode;
1546 published service UnoControlImageControl {
1547 service ::com::sun::star::awt::UnoControl;
1548 interface ::com::sun::star::awt::XLayoutConstrains;
1551 module graphic {
1552 published interface XGraphic;
1554 module awt {
1555 published service UnoControlImageControlModel {
1556 service ::com::sun::star::awt::UnoControlModel;
1557 [property] ::com::sun::star::util::Color BackgroundColor;
1558 [property] short Border;
1559 [property, optional] long BorderColor;
1560 [property] boolean Enabled;
1561 [property] string HelpText;
1562 [property] string HelpURL;
1563 [property] string ImageURL;
1564 [property, optional, transient] ::com::sun::star::graphic::XGraphic Graphic;
1565 [property] boolean Printable;
1566 [property] boolean ScaleImage;
1567 [property, optional] short ScaleMode;
1568 [property, optional] boolean Tabstop;
1570 published interface XActionListener;
1571 published interface XItemListener;
1572 published interface XListBox {
1573 interface ::com::sun::star::uno::XInterface;
1574 void addItemListener([in] ::com::sun::star::awt::XItemListener l);
1575 void removeItemListener([in] ::com::sun::star::awt::XItemListener l);
1576 void addActionListener([in] ::com::sun::star::awt::XActionListener l);
1577 void removeActionListener([in] ::com::sun::star::awt::XActionListener l);
1578 void addItem([in] string aItem, [in] short nPos);
1579 void addItems([in] sequence< string > aItems, [in] short nPos);
1580 void removeItems([in] short nPos, [in] short nCount);
1581 short getItemCount();
1582 string getItem([in] short nPos);
1583 sequence< string > getItems();
1584 short getSelectedItemPos();
1585 sequence< short > getSelectedItemsPos();
1586 string getSelectedItem();
1587 sequence< string > getSelectedItems();
1588 void selectItemPos([in] short nPos, [in] boolean bSelect);
1589 void selectItemsPos([in] sequence< short > aPositions, [in] boolean bSelect);
1590 void selectItem([in] string aItem, [in] boolean bSelect);
1591 boolean isMutipleMode();
1592 void setMultipleMode([in] boolean bMulti);
1593 short getDropDownLineCount();
1594 void setDropDownLineCount([in] short nLines);
1595 void makeVisible([in] short nEntry);
1597 published service UnoControlListBox {
1598 service ::com::sun::star::awt::UnoControl;
1599 interface ::com::sun::star::awt::XListBox;
1600 interface ::com::sun::star::awt::XLayoutConstrains;
1601 interface ::com::sun::star::awt::XTextLayoutConstrains;
1603 published service UnoControlListBoxModel {
1604 service ::com::sun::star::awt::UnoControlModel;
1605 [optional] interface ::com::sun::star::awt::XItemList;
1606 [property, optional] short Align;
1607 [property] ::com::sun::star::util::Color BackgroundColor;
1608 [property] short Border;
1609 [property, optional] long BorderColor;
1610 [property] boolean Dropdown;
1611 [property] boolean Enabled;
1612 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1613 [property] short FontEmphasisMark;
1614 [property] short FontRelief;
1615 [property] string HelpText;
1616 [property] string HelpURL;
1617 [property] short LineCount;
1618 [property] boolean MultiSelection;
1619 [property] boolean Printable;
1620 [property] boolean ReadOnly;
1621 [property] sequence< short > SelectedItems;
1622 [property] sequence< string > StringItemList;
1623 [property] boolean Tabstop;
1624 [property] ::com::sun::star::util::Color TextColor;
1625 [property] ::com::sun::star::util::Color TextLineColor;
1626 [property, optional] short WritingMode;
1627 [property, optional] short MouseWheelBehavior;
1628 [property, maybevoid, optional] short ItemSeparatorPos;
1630 published interface XNumericField {
1631 interface ::com::sun::star::uno::XInterface;
1632 void setValue([in] double Value);
1633 double getValue();
1634 void setMin([in] double Value);
1635 double getMin();
1636 void setMax([in] double Value);
1637 double getMax();
1638 void setFirst([in] double Value);
1639 double getFirst();
1640 void setLast([in] double Value);
1641 double getLast();
1642 void setSpinSize([in] double Value);
1643 double getSpinSize();
1644 void setDecimalDigits([in] short nDigits);
1645 short getDecimalDigits();
1646 void setStrictFormat([in] boolean bStrict);
1647 boolean isStrictFormat();
1649 published service UnoControlNumericField {
1650 service ::com::sun::star::awt::UnoControlEdit;
1651 interface ::com::sun::star::awt::XNumericField;
1652 [optional] interface ::com::sun::star::awt::XSpinField;
1654 published service UnoControlNumericFieldModel {
1655 service ::com::sun::star::awt::UnoControlModel;
1656 [property] ::com::sun::star::util::Color BackgroundColor;
1657 [property] short Border;
1658 [property, optional] long BorderColor;
1659 [property] short DecimalAccuracy;
1660 [property] boolean Enabled;
1661 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1662 [property] short FontEmphasisMark;
1663 [property] short FontRelief;
1664 [property] string HelpText;
1665 [property] string HelpURL;
1666 [property, optional] boolean HideInactiveSelection;
1667 [property] boolean Printable;
1668 [property] boolean ReadOnly;
1669 [property, optional] boolean Repeat;
1670 [property, optional] long RepeatDelay;
1671 [property] boolean ShowThousandsSeparator;
1672 [property] boolean Spin;
1673 [property] boolean StrictFormat;
1674 [property] boolean Tabstop;
1675 [property] ::com::sun::star::util::Color TextColor;
1676 [property] ::com::sun::star::util::Color TextLineColor;
1677 [property] double Value;
1678 [property] double ValueMax;
1679 [property] double ValueMin;
1680 [property] double ValueStep;
1681 [property, optional] short WritingMode;
1682 [property, optional] short MouseWheelBehavior;
1683 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1685 published interface XPatternField {
1686 interface ::com::sun::star::uno::XInterface;
1687 void setMasks([in] string EditMask, [in] string LiteralMask);
1688 void getMasks([out] string EditMask, [out] string LiteralMask);
1689 void setString([in] string Str);
1690 string getString();
1691 void setStrictFormat([in] boolean bStrict);
1692 boolean isStrictFormat();
1694 published service UnoControlPatternField {
1695 service ::com::sun::star::awt::UnoControlEdit;
1696 interface ::com::sun::star::awt::XPatternField;
1697 [optional] interface ::com::sun::star::awt::XSpinField;
1699 published service UnoControlPatternFieldModel {
1700 service ::com::sun::star::awt::UnoControlModel;
1701 [property] ::com::sun::star::util::Color BackgroundColor;
1702 [property] short Border;
1703 [property, optional] long BorderColor;
1704 [property] string EditMask;
1705 [property] boolean Enabled;
1706 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1707 [property] short FontEmphasisMark;
1708 [property] short FontRelief;
1709 [property] string HelpText;
1710 [property] string HelpURL;
1711 [property, optional] boolean HideInactiveSelection;
1712 [property] string LiteralMask;
1713 [property] short MaxTextLen;
1714 [property] boolean Printable;
1715 [property] boolean ReadOnly;
1716 [property] boolean StrictFormat;
1717 [property] boolean Tabstop;
1718 [property] string Text;
1719 [property] ::com::sun::star::util::Color TextColor;
1720 [property] ::com::sun::star::util::Color TextLineColor;
1721 [property, optional] short WritingMode;
1722 [property, optional] short MouseWheelBehavior;
1723 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1725 published interface XProgressBar {
1726 interface ::com::sun::star::uno::XInterface;
1727 void setForegroundColor([in] ::com::sun::star::util::Color Color);
1728 void setBackgroundColor([in] ::com::sun::star::util::Color Color);
1729 void setRange([in] long Min, [in] long Max);
1730 void setValue([in] long Value);
1731 long getValue();
1733 published service UnoControlProgressBar {
1734 service ::com::sun::star::awt::UnoControl;
1735 interface ::com::sun::star::awt::XProgressBar;
1737 published service UnoControlProgressBarModel {
1738 service ::com::sun::star::awt::UnoControlModel;
1739 [property] ::com::sun::star::util::Color BackgroundColor;
1740 [property] short Border;
1741 [property, optional] long BorderColor;
1742 [property] boolean Enabled;
1743 [property] ::com::sun::star::util::Color FillColor;
1744 [property] string HelpText;
1745 [property] string HelpURL;
1746 [property] boolean Printable;
1747 [property] long ProgressValue;
1748 [property] long ProgressValueMax;
1749 [property] long ProgressValueMin;
1751 published interface XItemListener;
1752 published interface XRadioButton {
1753 interface ::com::sun::star::uno::XInterface;
1754 void addItemListener([in] ::com::sun::star::awt::XItemListener l);
1755 void removeItemListener([in] ::com::sun::star::awt::XItemListener l);
1756 boolean getState();
1757 void setState([in] boolean b);
1758 void setLabel([in] string Label);
1760 published service UnoControlRadioButton {
1761 service ::com::sun::star::awt::UnoControl;
1762 interface ::com::sun::star::awt::XRadioButton;
1763 interface ::com::sun::star::awt::XLayoutConstrains;
1766 module graphic {
1767 published interface XGraphic;
1769 module awt {
1770 published service UnoControlRadioButtonModel {
1771 service ::com::sun::star::awt::UnoControlModel;
1772 [property, optional] short Align;
1773 [property, optional] long BackgroundColor;
1774 [property] boolean Enabled;
1775 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1776 [property] short FontEmphasisMark;
1777 [property] short FontRelief;
1778 [property] string HelpText;
1779 [property] string HelpURL;
1780 [property, optional] short ImagePosition;
1781 [property, optional] string ImageURL;
1782 [property, optional, transient] ::com::sun::star::graphic::XGraphic Graphic;
1783 [property] string Label;
1784 [property, optional] boolean MultiLine;
1785 [property] boolean Printable;
1786 [property] short State;
1787 [property] boolean Tabstop;
1788 [property] ::com::sun::star::util::Color TextColor;
1789 [property] ::com::sun::star::util::Color TextLineColor;
1790 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1791 [property, optional] short VisualEffect;
1792 [property, optional] short WritingMode;
1794 published interface XAdjustmentListener;
1795 published interface XScrollBar {
1796 interface ::com::sun::star::uno::XInterface;
1797 void addAdjustmentListener([in] ::com::sun::star::awt::XAdjustmentListener l);
1798 void removeAdjustmentListener([in] ::com::sun::star::awt::XAdjustmentListener l);
1799 void setValue([in] long n);
1800 void setValues([in] long nValue, [in] long nVisible, [in] long nMax);
1801 long getValue();
1802 void setMaximum([in] long n);
1803 long getMaximum();
1804 void setLineIncrement([in] long n);
1805 long getLineIncrement();
1806 void setBlockIncrement([in] long n);
1807 long getBlockIncrement();
1808 void setVisibleSize([in] long n);
1809 long getVisibleSize();
1810 void setOrientation([in] long n);
1811 long getOrientation();
1813 published service UnoControlScrollBar {
1814 service ::com::sun::star::awt::UnoControl;
1815 interface ::com::sun::star::awt::XScrollBar;
1817 published service UnoControlScrollBarModel {
1818 service ::com::sun::star::awt::UnoControlModel;
1819 [property, optional] ::com::sun::star::util::Color BackgroundColor;
1820 [property] long BlockIncrement;
1821 [property] short Border;
1822 [property, optional] long BorderColor;
1823 [property] boolean Enabled;
1824 [property] string HelpText;
1825 [property] string HelpURL;
1826 [property] long LineIncrement;
1827 [property, optional] boolean LiveScroll;
1828 [property] long Orientation;
1829 [property] boolean Printable;
1830 [property, optional] long RepeatDelay;
1831 [property] long ScrollValue;
1832 [property, optional] long ScrollValueMin;
1833 [property] long ScrollValueMax;
1834 [property, optional] ::com::sun::star::util::Color SymbolColor;
1835 [property, optional] boolean Tabstop;
1836 [property] long VisibleSize;
1839 module util {
1840 published struct Time {
1841 unsigned long NanoSeconds;
1842 unsigned short Seconds;
1843 unsigned short Minutes;
1844 unsigned short Hours;
1845 boolean IsUTC;
1848 module awt {
1849 published interface XTimeField {
1850 interface ::com::sun::star::uno::XInterface;
1851 void setTime([in] ::com::sun::star::util::Time Time);
1852 ::com::sun::star::util::Time getTime();
1853 void setMin([in] ::com::sun::star::util::Time Time);
1854 ::com::sun::star::util::Time getMin();
1855 void setMax([in] ::com::sun::star::util::Time Time);
1856 ::com::sun::star::util::Time getMax();
1857 void setFirst([in] ::com::sun::star::util::Time Time);
1858 ::com::sun::star::util::Time getFirst();
1859 void setLast([in] ::com::sun::star::util::Time Time);
1860 ::com::sun::star::util::Time getLast();
1861 void setEmpty();
1862 boolean isEmpty();
1863 void setStrictFormat([in] boolean bStrict);
1864 boolean isStrictFormat();
1866 published service UnoControlTimeField {
1867 service ::com::sun::star::awt::UnoControlEdit;
1868 interface ::com::sun::star::awt::XTimeField;
1869 [optional] interface ::com::sun::star::awt::XSpinField;
1871 published service UnoControlTimeFieldModel {
1872 service ::com::sun::star::awt::UnoControlModel;
1873 [property] ::com::sun::star::util::Color BackgroundColor;
1874 [property] short Border;
1875 [property, optional] long BorderColor;
1876 [property] boolean Enabled;
1877 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1878 [property] short FontEmphasisMark;
1879 [property] short FontRelief;
1880 [property] string HelpText;
1881 [property] string HelpURL;
1882 [property, optional] boolean HideInactiveSelection;
1883 [property] boolean Printable;
1884 [property] boolean ReadOnly;
1885 [property, optional] boolean Repeat;
1886 [property, optional] long RepeatDelay;
1887 [property] boolean Spin;
1888 [property] boolean StrictFormat;
1889 [property] boolean Tabstop;
1890 [property, optional] string Text;
1891 [property] ::com::sun::star::util::Color TextColor;
1892 [property] ::com::sun::star::util::Color TextLineColor;
1893 [property] ::com::sun::star::util::Time Time;
1894 [property] short TimeFormat;
1895 [property] ::com::sun::star::util::Time TimeMax;
1896 [property] ::com::sun::star::util::Time TimeMin;
1897 [property, optional] short WritingMode;
1898 [property, optional] short MouseWheelBehavior;
1899 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1901 published struct VclContainerEvent: ::com::sun::star::lang::EventObject {
1902 ::com::sun::star::uno::XInterface Child;
1904 /** @deprecated */ published constants VclWindowPeerAttribute {
1905 const long AUTOHSCROLL = 1073741824;
1906 const long AUTOVSCROLL = -2147483648;
1907 const long CENTER = 2048;
1908 const long CLIPCHILDREN = 524288;
1909 const long DEFBUTTON = 65536;
1910 const long DEF_CANCEL = 268435456;
1911 const long DEF_NO = -2147483648;
1912 const long DEF_OK = 134217728;
1913 const long DEF_RETRY = 536870912;
1914 const long DEF_YES = 1073741824;
1915 const long DROPDOWN = 32768;
1916 const long GROUP = 2097152;
1917 const long HSCROLL = 256;
1918 const long LEFT = 1024;
1919 const long NOBORDER = 1048576;
1920 const long NOLABEL = 536870912;
1921 const long OK = 4194304;
1922 const long OK_CANCEL = 8388608;
1923 const long READONLY = 262144;
1924 const long RETRY_CANCEL = 67108864;
1925 const long RIGHT = 4096;
1926 const long SORT = 16384;
1927 const long SPIN = 8192;
1928 const long VSCROLL = 512;
1929 const long YES_NO = 16777216;
1930 const long YES_NO_CANCEL = 33554432;
1932 published constants WindowAttribute {
1933 const long BORDER = 16;
1934 const long CLOSEABLE = 128;
1935 const long FULLSIZE = 2;
1936 const long MINSIZE = 8;
1937 const long MOVEABLE = 64;
1938 const long NODECORATION = 512;
1939 const long OPTIMUMSIZE = 4;
1940 const long SHOW = 1;
1941 const long SIZEABLE = 32;
1942 /** @deprecated */ const long SYSTEMDEPENDENT = 256;
1944 published struct WindowEvent: ::com::sun::star::lang::EventObject {
1945 long X;
1946 long Y;
1947 long Width;
1948 long Height;
1949 long LeftInset;
1950 long TopInset;
1951 long RightInset;
1952 long BottomInset;
1954 published interface XActionListener {
1955 interface ::com::sun::star::lang::XEventListener;
1956 void actionPerformed([in] ::com::sun::star::awt::ActionEvent rEvent);
1958 published interface XActivateListener {
1959 interface ::com::sun::star::lang::XEventListener;
1960 void windowActivated([in] ::com::sun::star::lang::EventObject e);
1961 void windowDeactivated([in] ::com::sun::star::lang::EventObject e);
1963 published interface XAdjustmentListener {
1964 interface ::com::sun::star::lang::XEventListener;
1965 void adjustmentValueChanged([in] ::com::sun::star::awt::AdjustmentEvent rEvent);
1967 published interface XBitmap {
1968 interface ::com::sun::star::uno::XInterface;
1969 ::com::sun::star::awt::Size getSize();
1970 sequence< byte > getDIB();
1971 sequence< byte > getMaskDIB();
1973 published interface XDisplayBitmap;
1974 published interface XFont;
1975 published interface XGraphics;
1976 published interface XDevice {
1977 interface ::com::sun::star::uno::XInterface;
1978 ::com::sun::star::awt::XGraphics createGraphics();
1979 ::com::sun::star::awt::XDevice createDevice([in] long nWidth, [in] long nHeight);
1980 ::com::sun::star::awt::DeviceInfo getInfo();
1981 sequence< ::com::sun::star::awt::FontDescriptor > getFontDescriptors();
1982 ::com::sun::star::awt::XFont getFont([in] ::com::sun::star::awt::FontDescriptor aDescriptor);
1983 ::com::sun::star::awt::XBitmap createBitmap([in] long nX, [in] long nY, [in] long nWidth, [in] long nHeight);
1984 ::com::sun::star::awt::XDisplayBitmap createDisplayBitmap([in] ::com::sun::star::awt::XBitmap Bitmap);
1986 published interface XDisplayBitmap {
1987 interface ::com::sun::star::uno::XInterface;
1989 published interface XEventHandler;
1990 published interface XDisplayConnection {
1991 interface ::com::sun::star::uno::XInterface;
1992 void addEventHandler([in] any window, [in] ::com::sun::star::awt::XEventHandler eventHandler, [in] long eventMask);
1993 void removeEventHandler([in] any window, [in] ::com::sun::star::awt::XEventHandler eventHandler);
1994 void addErrorHandler([in] ::com::sun::star::awt::XEventHandler errorHandler);
1995 void removeErrorHandler([in] ::com::sun::star::awt::XEventHandler errorHandler);
1996 any getIdentifier();
1998 published interface XEnhancedMouseClickHandler {
1999 interface ::com::sun::star::lang::XEventListener;
2000 boolean mousePressed([in] ::com::sun::star::awt::EnhancedMouseEvent e);
2001 boolean mouseReleased([in] ::com::sun::star::awt::EnhancedMouseEvent e);
2003 published interface XEventHandler {
2004 interface ::com::sun::star::uno::XInterface;
2005 boolean handleEvent([in] any event);
2007 /** @deprecated */ published interface XFileDialog {
2008 interface ::com::sun::star::uno::XInterface;
2009 void setPath([in] string Path);
2010 string getPath();
2011 void setFilters([in] sequence< string > rFilterNames, [in] sequence< string > rMasks);
2012 void setCurrentFilter([in] string Filter);
2013 string getCurrentFilter();
2015 published interface XFocusListener {
2016 interface ::com::sun::star::lang::XEventListener;
2017 void focusGained([in] ::com::sun::star::awt::FocusEvent e);
2018 void focusLost([in] ::com::sun::star::awt::FocusEvent e);
2020 published interface XFont {
2021 interface ::com::sun::star::uno::XInterface;
2022 ::com::sun::star::awt::FontDescriptor getFontDescriptor();
2023 ::com::sun::star::awt::SimpleFontMetric getFontMetric();
2024 short getCharWidth([in] char c);
2025 sequence< short > getCharWidths([in] char nFirst, [in] char nLast);
2026 long getStringWidth([in] string str);
2027 long getStringWidthArray([in] string str, [out] sequence< long > aDXArray);
2028 void getKernPairs([out] sequence< char > Chars1, [out] sequence< char > Chars2, [out] sequence< short > Kerns);
2030 published interface XRegion;
2031 published interface XGraphics {
2032 interface ::com::sun::star::uno::XInterface;
2033 ::com::sun::star::awt::XDevice getDevice();
2034 ::com::sun::star::awt::SimpleFontMetric getFontMetric();
2035 void setFont([in] ::com::sun::star::awt::XFont xNewFont);
2036 void selectFont([in] ::com::sun::star::awt::FontDescriptor aDescription);
2037 void setTextColor([in] ::com::sun::star::util::Color nColor);
2038 void setTextFillColor([in] ::com::sun::star::util::Color nColor);
2039 void setLineColor([in] ::com::sun::star::util::Color nColor);
2040 void setFillColor([in] ::com::sun::star::util::Color nColor);
2041 void setRasterOp([in] ::com::sun::star::awt::RasterOperation ROP);
2042 void setClipRegion([in] ::com::sun::star::awt::XRegion Clipping);
2043 void intersectClipRegion([in] ::com::sun::star::awt::XRegion xClipping);
2044 void push();
2045 void pop();
2046 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);
2047 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);
2048 void drawPixel([in] long X, [in] long Y);
2049 void drawLine([in] long X1, [in] long Y1, [in] long X2, [in] long Y2);
2050 void drawRect([in] long X, [in] long Y, [in] long Width, [in] long Height);
2051 void drawRoundedRect([in] long X, [in] long Y, [in] long Width, [in] long Height, [in] long nHorzRound, [in] long nVertRound);
2052 void drawPolyLine([in] sequence< long > DataX, [in] sequence< long > DataY);
2053 void drawPolygon([in] sequence< long > DataX, [in] sequence< long > DataY);
2054 void drawPolyPolygon([in] sequence< sequence< long > > DataX, [in] sequence< sequence< long > > DataY);
2055 void drawEllipse([in] long X, [in] long Y, [in] long Width, [in] long Height);
2056 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);
2057 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);
2058 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);
2059 void drawGradient([in] long nX, [in] long nY, [in] long nWidth, [in] long Height, [in] ::com::sun::star::awt::Gradient aGradient);
2060 void drawText([in] long X, [in] long Y, [in] string Text);
2061 void drawTextArray([in] long X, [in] long Y, [in] string Text, [in] sequence< long > Longs);
2064 module graphic {
2065 published interface XGraphic;
2067 module awt {
2068 published interface XGraphics2 {
2069 interface ::com::sun::star::awt::XGraphics;
2070 void clear([in] ::com::sun::star::awt::Rectangle aRect);
2071 void drawImage([in] long nX, [in] long nY, [in] long nWidth, [in] long nHeight, [in] short nStyle, [in] ::com::sun::star::graphic::XGraphic aGraphic);
2073 published interface XImageButton {
2074 interface ::com::sun::star::uno::XInterface;
2075 void addActionListener([in] ::com::sun::star::awt::XActionListener l);
2076 void removeActionListener([in] ::com::sun::star::awt::XActionListener l);
2077 void setActionCommand([in] string Command);
2079 published interface XImageProducer;
2080 published interface XImageConsumer {
2081 interface ::com::sun::star::uno::XInterface;
2082 void init([in] long Width, [in] long Height);
2083 void setColorModel([in] short BitCount, [in] sequence< long > RGBAPal, [in] long RedMask, [in] long GreenMask, [in] long BlueMask, [in] long AlphaMask);
2084 void setPixelsByBytes([in] long nX, [in] long nY, [in] long nWidth, [in] long nHeight, [in] sequence< byte > aProducerData, [in] long nOffset, [in] long nScanSize);
2085 void setPixelsByLongs([in] long nX, [in] long nY, [in] long nWidth, [in] long nHeight, [in] sequence< long > aProducerData, [in] long nOffset, [in] long nScanSize);
2086 void complete([in] long Status, [in] ::com::sun::star::awt::XImageProducer xProducer);
2088 published interface XImageProducer {
2089 interface ::com::sun::star::uno::XInterface;
2090 void addConsumer([in] ::com::sun::star::awt::XImageConsumer xConsumer);
2091 void removeConsumer([in] ::com::sun::star::awt::XImageConsumer xConsumer);
2092 void startProduction();
2094 published interface XPrinterPropertySet {
2095 interface ::com::sun::star::beans::XPropertySet;
2096 void setHorizontal([in] boolean bHorizontal) raises (::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException);
2097 sequence< string > getFormDescriptions();
2098 void selectForm([in] string aFormDescription) raises (::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException);
2099 sequence< byte > getBinarySetup();
2100 void setBinarySetup([in] sequence< byte > data) raises (::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException);
2102 published interface XInfoPrinter {
2103 interface ::com::sun::star::awt::XPrinterPropertySet;
2104 ::com::sun::star::awt::XDevice createDevice();
2106 published interface XItemListener {
2107 interface ::com::sun::star::lang::XEventListener;
2108 void itemStateChanged([in] ::com::sun::star::awt::ItemEvent rEvent);
2110 published interface XKeyHandler {
2111 interface ::com::sun::star::lang::XEventListener;
2112 boolean keyPressed([in] ::com::sun::star::awt::KeyEvent aEvent);
2113 boolean keyReleased([in] ::com::sun::star::awt::KeyEvent aEvent);
2115 published interface XKeyListener {
2116 interface ::com::sun::star::lang::XEventListener;
2117 void keyPressed([in] ::com::sun::star::awt::KeyEvent e);
2118 void keyReleased([in] ::com::sun::star::awt::KeyEvent e);
2120 published interface XMenuListener {
2121 interface ::com::sun::star::lang::XEventListener;
2122 void itemHighlighted([in] ::com::sun::star::awt::MenuEvent aEvent);
2123 void itemSelected([in] ::com::sun::star::awt::MenuEvent aEvent);
2124 void itemActivated([in] ::com::sun::star::awt::MenuEvent aEvent);
2125 void itemDeactivated([in] ::com::sun::star::awt::MenuEvent aEvent);
2127 published interface XMessageBox {
2128 interface ::com::sun::star::uno::XInterface;
2129 [attribute] string CaptionText;
2130 [attribute] string MessageText;
2131 short execute();
2133 published interface XMouseClickHandler {
2134 interface ::com::sun::star::lang::XEventListener;
2135 boolean mousePressed([in] ::com::sun::star::awt::MouseEvent e);
2136 boolean mouseReleased([in] ::com::sun::star::awt::MouseEvent e);
2138 published interface XMouseListener {
2139 interface ::com::sun::star::lang::XEventListener;
2140 void mousePressed([in] ::com::sun::star::awt::MouseEvent e);
2141 void mouseReleased([in] ::com::sun::star::awt::MouseEvent e);
2142 void mouseEntered([in] ::com::sun::star::awt::MouseEvent e);
2143 void mouseExited([in] ::com::sun::star::awt::MouseEvent e);
2145 published interface XMouseMotionHandler {
2146 interface ::com::sun::star::lang::XEventListener;
2147 boolean mouseDragged([in] ::com::sun::star::awt::MouseEvent e);
2148 boolean mouseMoved([in] ::com::sun::star::awt::MouseEvent e);
2150 published interface XMouseMotionListener {
2151 interface ::com::sun::star::lang::XEventListener;
2152 void mouseDragged([in] ::com::sun::star::awt::MouseEvent e);
2153 void mouseMoved([in] ::com::sun::star::awt::MouseEvent e);
2155 published interface XPaintListener {
2156 interface ::com::sun::star::lang::XEventListener;
2157 void windowPaint([in] ::com::sun::star::awt::PaintEvent e);
2159 published interface XPrinter {
2160 interface ::com::sun::star::awt::XPrinterPropertySet;
2161 boolean start([in] string nJobName, [in] short nCopies, [in] boolean nCollate) raises (::com::sun::star::awt::PrinterException, ::com::sun::star::lang::IllegalArgumentException);
2162 void end() raises (::com::sun::star::awt::PrinterException);
2163 void terminate();
2164 ::com::sun::star::awt::XDevice startPage() raises (::com::sun::star::awt::PrinterException);
2165 void endPage() raises (::com::sun::star::awt::PrinterException);
2167 /** @deprecated */ published interface XProgressMonitor {
2168 interface ::com::sun::star::awt::XProgressBar;
2169 void addText([in] string Topic, [in] string Text, [in] boolean beforeProgress);
2170 void removeText([in] string Topic, [in] boolean beforeProgress);
2171 void updateText([in] string Topic, [in] string Text, [in] boolean beforeProgress);
2173 published interface XRegion {
2174 interface ::com::sun::star::uno::XInterface;
2175 ::com::sun::star::awt::Rectangle getBounds();
2176 void clear();
2177 void move([in] long nHorzMove, [in] long nVertMove);
2178 void unionRectangle([in] ::com::sun::star::awt::Rectangle Rect);
2179 void intersectRectangle([in] ::com::sun::star::awt::Rectangle Region);
2180 void excludeRectangle([in] ::com::sun::star::awt::Rectangle Rect);
2181 void xOrRectangle([in] ::com::sun::star::awt::Rectangle Rect);
2182 void unionRegion([in] ::com::sun::star::awt::XRegion Region);
2183 void intersectRegion([in] ::com::sun::star::awt::XRegion Region);
2184 void excludeRegion([in] ::com::sun::star::awt::XRegion Region);
2185 void xOrRegion([in] ::com::sun::star::awt::XRegion Region);
2186 sequence< ::com::sun::star::awt::Rectangle > getRectangles();
2188 published interface XSpinListener {
2189 interface ::com::sun::star::lang::XEventListener;
2190 void up([in] ::com::sun::star::awt::SpinEvent rEvent);
2191 void down([in] ::com::sun::star::awt::SpinEvent rEvent);
2192 void first([in] ::com::sun::star::awt::SpinEvent rEvent);
2193 void last([in] ::com::sun::star::awt::SpinEvent rEvent);
2195 published interface XSystemDependentWindowPeer {
2196 interface ::com::sun::star::uno::XInterface;
2197 any getWindowHandle([in] sequence< byte > ProcessId, [in] short SystemType);
2199 published interface XTextArea {
2200 interface ::com::sun::star::uno::XInterface;
2201 string getTextLines();
2203 published interface XTextEditField {
2204 interface ::com::sun::star::uno::XInterface;
2205 void setEchoChar([in] char cEcho);
2207 published interface XTextListener {
2208 interface ::com::sun::star::lang::XEventListener;
2209 void textChanged([in] ::com::sun::star::awt::TextEvent rEvent);
2211 published interface XTopWindowListener {
2212 interface ::com::sun::star::lang::XEventListener;
2213 void windowOpened([in] ::com::sun::star::lang::EventObject e);
2214 void windowClosing([in] ::com::sun::star::lang::EventObject e);
2215 void windowClosed([in] ::com::sun::star::lang::EventObject e);
2216 void windowMinimized([in] ::com::sun::star::lang::EventObject e);
2217 void windowNormalized([in] ::com::sun::star::lang::EventObject e);
2218 void windowActivated([in] ::com::sun::star::lang::EventObject e);
2219 void windowDeactivated([in] ::com::sun::star::lang::EventObject e);
2221 published interface XUserInputInterception {
2222 interface ::com::sun::star::uno::XInterface;
2223 void addKeyHandler([in] ::com::sun::star::awt::XKeyHandler xHandler);
2224 void removeKeyHandler([in] ::com::sun::star::awt::XKeyHandler xHandler);
2225 void addMouseClickHandler([in] ::com::sun::star::awt::XMouseClickHandler xHandler);
2226 void removeMouseClickHandler([in] ::com::sun::star::awt::XMouseClickHandler xHandler);
2228 published interface XVclContainerListener;
2229 /** @deprecated */ published interface XVclContainer {
2230 interface ::com::sun::star::uno::XInterface;
2231 void addVclContainerListener([in] ::com::sun::star::awt::XVclContainerListener l);
2232 void removeVclContainerListener([in] ::com::sun::star::awt::XVclContainerListener l);
2233 sequence< ::com::sun::star::awt::XWindow > getWindows();
2235 /** @deprecated */ published interface XVclContainerListener {
2236 interface ::com::sun::star::lang::XEventListener;
2237 void windowAdded([in] ::com::sun::star::awt::VclContainerEvent e);
2238 void windowRemoved([in] ::com::sun::star::awt::VclContainerEvent e);
2240 /** @deprecated */ published interface XVclContainerPeer {
2241 interface ::com::sun::star::uno::XInterface;
2242 void enableDialogControl([in] boolean bEnable);
2243 void setTabOrder([in] sequence< ::com::sun::star::awt::XWindow > WindowOrder, [in] sequence< any > Tabs, [in] boolean GroupControl);
2244 void setGroup([in] sequence< ::com::sun::star::awt::XWindow > Windows);
2246 published interface XWindowPeer {
2247 interface ::com::sun::star::lang::XComponent;
2248 ::com::sun::star::awt::XToolkit getToolkit();
2249 void setPointer([in] ::com::sun::star::awt::XPointer Pointer);
2250 void setBackground([in] ::com::sun::star::util::Color Color);
2251 void invalidate([in] short Flags);
2252 void invalidateRect([in] ::com::sun::star::awt::Rectangle Rect, [in] short Flags);
2254 /** @deprecated */ published interface XVclWindowPeer {
2255 interface ::com::sun::star::awt::XWindowPeer;
2256 boolean isChild([in] ::com::sun::star::awt::XWindowPeer Peer);
2257 void setDesignMode([in] boolean bOn);
2258 boolean isDesignMode();
2259 void enableClipSiblings([in] boolean bClip);
2260 void setForeground([in] ::com::sun::star::util::Color Color);
2261 void setControlFont([in] ::com::sun::star::awt::FontDescriptor aFont);
2262 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);
2263 void setProperty([in] string PropertyName, [in] any Value);
2264 any getProperty([in] string PropertyName);
2266 published interface XWindow2 {
2267 interface ::com::sun::star::awt::XWindow;
2268 void setOutputSize([in] ::com::sun::star::awt::Size Size);
2269 ::com::sun::star::awt::Size getOutputSize();
2270 boolean isVisible();
2271 boolean isActive();
2272 boolean isEnabled();
2273 boolean hasFocus();
2275 published interface XWindowListener {
2276 interface ::com::sun::star::lang::XEventListener;
2277 void windowResized([in] ::com::sun::star::awt::WindowEvent e);
2278 void windowMoved([in] ::com::sun::star::awt::WindowEvent e);
2279 void windowShown([in] ::com::sun::star::lang::EventObject e);
2280 void windowHidden([in] ::com::sun::star::lang::EventObject e);
2282 module grid {
2283 published interface XGridColumn;
2284 published interface XGridColumnModel {
2285 interface ::com::sun::star::lang::XComponent;
2286 interface ::com::sun::star::container::XContainer;
2287 interface ::com::sun::star::util::XCloneable;
2288 long getColumnCount();
2289 ::com::sun::star::awt::grid::XGridColumn createColumn();
2290 long addColumn([in] ::com::sun::star::awt::grid::XGridColumn column) raises (::com::sun::star::lang::IllegalArgumentException);
2291 void removeColumn([in] long ColumnIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2292 sequence< ::com::sun::star::awt::grid::XGridColumn > getColumns();
2293 ::com::sun::star::awt::grid::XGridColumn getColumn([in] long index) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2294 void setDefaultColumns([in] long elements);
2296 published interface XGridDataModel {
2297 interface ::com::sun::star::lang::XComponent;
2298 interface ::com::sun::star::util::XCloneable;
2299 [attribute, readonly] long RowCount;
2300 [attribute, readonly] long ColumnCount;
2301 any getCellData([in] long Column, [in] long RowIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2302 any getCellToolTip([in] long Column, [in] long RowIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2303 any getRowHeading([in] long RowIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2304 sequence< any > getRowData([in] long RowIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2306 published interface XGridDataListener;
2307 published interface XMutableGridDataModel {
2308 interface ::com::sun::star::awt::grid::XGridDataModel;
2309 void addRow([in] any Heading, [in] sequence< any > Data);
2310 void addRows([in] sequence< any > Headings, [in] sequence< sequence< any > > Data) raises (::com::sun::star::lang::IllegalArgumentException);
2311 void insertRow([in] long Index, [in] any Heading, [in] sequence< any > Data) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2312 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);
2313 void removeRow([in] long RowIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2314 void removeAllRows();
2315 void updateCellData([in] long ColumnIndex, [in] long RowIndex, [in] any Value) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2316 void updateRowData([in] sequence< long > ColumnIndexes, [in] long RowIndex, [in] sequence< any > Values) raises (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException);
2317 void updateRowHeading([in] long RowIndex, [in] any Heading) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2318 void updateCellToolTip([in] long ColumnIndex, [in] long RowIndex, [in] any Value) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2319 void updateRowToolTip([in] long RowIndex, [in] any Value) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2320 void addGridDataListener([in] ::com::sun::star::awt::grid::XGridDataListener Listener);
2321 void removeGridDataListener([in] ::com::sun::star::awt::grid::XGridDataListener Listener);
2323 published service DefaultGridDataModel: ::com::sun::star::awt::grid::XMutableGridDataModel;
2326 module style {
2327 published enum HorizontalAlignment {
2328 LEFT = 0,
2329 CENTER = 1,
2330 RIGHT = 2
2333 module awt {
2334 module grid {
2335 published interface XGridColumnListener;
2336 published interface XGridColumn {
2337 interface ::com::sun::star::lang::XComponent;
2338 interface ::com::sun::star::util::XCloneable;
2339 [attribute] any Identifier;
2340 [attribute] long ColumnWidth;
2341 [attribute] long MinWidth;
2342 [attribute] long MaxWidth;
2343 [attribute] boolean Resizeable;
2344 [attribute] long Flexibility {
2345 set raises (::com::sun::star::lang::IllegalArgumentException);
2347 [attribute] ::com::sun::star::style::HorizontalAlignment HorizontalAlign;
2348 [attribute] string Title;
2349 [attribute] string HelpText;
2350 [attribute, readonly] long Index;
2351 [attribute] long DataColumnIndex;
2352 void addGridColumnListener([in] ::com::sun::star::awt::grid::XGridColumnListener Listener);
2353 void removeGridColumnListener([in] ::com::sun::star::awt::grid::XGridColumnListener Listener);
2355 published struct GridColumnEvent: ::com::sun::star::lang::EventObject {
2356 string AttributeName;
2357 any OldValue;
2358 any NewValue;
2359 long ColumnIndex;
2361 published struct GridDataEvent: ::com::sun::star::lang::EventObject {
2362 long FirstColumn;
2363 long LastColumn;
2364 long FirstRow;
2365 long LastRow;
2367 published struct GridSelectionEvent: ::com::sun::star::lang::EventObject {
2368 sequence< long > SelectedRowIndexes;
2369 sequence< long > SelectedColumnIndexes;
2373 module util {
2374 published exception VetoException: ::com::sun::star::uno::Exception {
2377 module awt {
2378 module grid {
2379 published interface XGridControl {
2380 interface ::com::sun::star::uno::XInterface;
2381 long getColumnAtPoint([in] long X, [in] long Y);
2382 long getRowAtPoint([in] long X, [in] long Y);
2383 long getCurrentColumn();
2384 long getCurrentRow();
2385 void goToCell([in] long ColumnIndex, [in] long RowIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::util::VetoException);
2387 published interface XGridSelectionListener;
2388 published interface XGridRowSelection {
2389 interface ::com::sun::star::uno::XInterface;
2390 void selectAllRows();
2391 void selectRow([in] long RowIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2392 void deselectAllRows();
2393 void deselectRow([in] long RowIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2394 sequence< long > getSelectedRows();
2395 boolean hasSelectedRows();
2396 boolean isRowSelected([in] long RowIndex);
2397 void addSelectionListener([in] ::com::sun::star::awt::grid::XGridSelectionListener listener);
2398 void removeSelectionListener([in] ::com::sun::star::awt::grid::XGridSelectionListener listener);
2402 module view {
2403 published enum SelectionType {
2404 NONE = 0,
2405 SINGLE = 1,
2406 MULTI = 2,
2407 RANGE = 3
2410 module awt {
2411 module grid {
2412 published service UnoControlGridModel {
2413 service ::com::sun::star::awt::UnoControlModel;
2414 [property] boolean ShowRowHeader;
2415 [property] long RowHeaderWidth;
2416 [property] boolean ShowColumnHeader;
2417 [property, maybevoid] long ColumnHeaderHeight;
2418 [property, maybevoid] long RowHeight;
2419 [property] ::com::sun::star::awt::grid::XGridColumnModel ColumnModel;
2420 [property] ::com::sun::star::awt::grid::XGridDataModel GridDataModel;
2421 [property] boolean HScroll;
2422 [property] boolean VScroll;
2423 [property] boolean Tabstop;
2424 [property] ::com::sun::star::view::SelectionType SelectionModel;
2425 [property] boolean UseGridLines;
2426 [property, maybevoid] ::com::sun::star::util::Color GridLineColor;
2427 [property, maybevoid] ::com::sun::star::util::Color HeaderBackgroundColor;
2428 [property, maybevoid] ::com::sun::star::util::Color HeaderTextColor;
2429 [property, maybevoid] ::com::sun::star::util::Color ActiveSelectionBackgroundColor;
2430 [property, maybevoid] ::com::sun::star::util::Color InactiveSelectionBackgroundColor;
2431 [property, maybevoid] ::com::sun::star::util::Color ActiveSelectionTextColor;
2432 [property, maybevoid] ::com::sun::star::util::Color InactiveSelectionTextColor;
2433 [property, maybevoid] sequence< ::com::sun::star::util::Color > RowBackgroundColors;
2434 [property] ::com::sun::star::style::VerticalAlignment VerticalAlign;
2435 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
2436 [property, maybevoid] ::com::sun::star::util::Color TextColor;
2437 [property, maybevoid] ::com::sun::star::util::Color TextLineColor;
2438 [property] short FontEmphasisMark;
2439 [property] short FontRelief;
2440 [property] string HelpText;
2441 [property] string HelpURL;
2443 published interface XGridColumnListener {
2444 interface ::com::sun::star::lang::XEventListener;
2445 void columnChanged([in] ::com::sun::star::awt::grid::GridColumnEvent event);
2447 published interface XGridDataListener {
2448 interface ::com::sun::star::lang::XEventListener;
2449 void rowsInserted([in] ::com::sun::star::awt::grid::GridDataEvent Event);
2450 void rowsRemoved([in] ::com::sun::star::awt::grid::GridDataEvent Event);
2451 void dataChanged([in] ::com::sun::star::awt::grid::GridDataEvent Event);
2452 void rowHeadingChanged([in] ::com::sun::star::awt::grid::GridDataEvent Event);
2454 published interface XGridSelectionListener {
2455 interface ::com::sun::star::lang::XEventListener;
2456 void selectionChanged([in] ::com::sun::star::awt::grid::GridSelectionEvent gridSelectionEvent);
2459 module tab {
2460 published struct TabPageActivatedEvent: ::com::sun::star::lang::EventObject {
2461 short TabPageID;
2463 published interface XTabPage {
2464 interface ::com::sun::star::uno::XInterface;
2466 published service UnoControlTabPage {
2467 service ::com::sun::star::awt::UnoControlContainer;
2468 interface ::com::sun::star::awt::tab::XTabPage;
2470 published interface XTabPageContainerListener;
2471 published interface XTabPageContainer {
2472 interface ::com::sun::star::uno::XInterface;
2473 [attribute] short ActiveTabPageID;
2474 short getTabPageCount();
2475 boolean isTabPageActive([in] short tabPageIndex);
2476 ::com::sun::star::awt::tab::XTabPage getTabPage([in] short tabPageIndex);
2477 ::com::sun::star::awt::tab::XTabPage getTabPageByID([in] short tabPageID);
2478 void addTabPageContainerListener([in] ::com::sun::star::awt::tab::XTabPageContainerListener listener);
2479 void removeTabPageContainerListener([in] ::com::sun::star::awt::tab::XTabPageContainerListener listener);
2481 published service UnoControlTabPageContainer {
2482 service ::com::sun::star::awt::UnoControl;
2483 interface ::com::sun::star::awt::tab::XTabPageContainer;
2485 published interface XTabPageModel;
2486 published interface XTabPageContainerModel {
2487 interface ::com::sun::star::container::XIndexContainer;
2488 interface ::com::sun::star::container::XContainer;
2489 ::com::sun::star::awt::tab::XTabPageModel createTabPage([in] short TabPageID);
2490 ::com::sun::star::awt::tab::XTabPageModel loadTabPage([in] short TabPageID, [in] string ResourceURL);
2492 published service UnoControlTabPageContainerModel {
2493 service ::com::sun::star::awt::UnoControlModel;
2494 interface ::com::sun::star::awt::tab::XTabPageContainerModel;
2496 published interface XTabPageModel {
2497 interface ::com::sun::star::uno::XInterface;
2498 [attribute, readonly] short TabPageID;
2499 [attribute] boolean Enabled;
2500 [attribute] string Title;
2501 [attribute] string ImageURL;
2502 [attribute] string ToolTip;
2504 published service UnoControlTabPageModel {
2505 interface ::com::sun::star::awt::tab::XTabPageModel;
2507 published interface XTabPageContainerListener {
2508 interface ::com::sun::star::lang::XEventListener;
2509 void tabPageActivated([in] ::com::sun::star::awt::tab::TabPageActivatedEvent tabPageActivatedEvent);
2513 module view {
2514 published interface XSelectionChangeListener;
2515 published interface XSelectionSupplier {
2516 interface ::com::sun::star::uno::XInterface;
2517 boolean select([in] any xSelection) raises (::com::sun::star::lang::IllegalArgumentException);
2518 any getSelection();
2519 void addSelectionChangeListener([in] ::com::sun::star::view::XSelectionChangeListener xListener);
2520 void removeSelectionChangeListener([in] ::com::sun::star::view::XSelectionChangeListener xListener);
2523 module drawing {
2524 published interface XShape;
2526 module chart {
2527 published interface XAxisXSupplier {
2528 interface ::com::sun::star::uno::XInterface;
2529 ::com::sun::star::drawing::XShape getXAxisTitle();
2530 ::com::sun::star::beans::XPropertySet getXAxis();
2531 ::com::sun::star::beans::XPropertySet getXMainGrid();
2532 ::com::sun::star::beans::XPropertySet getXHelpGrid();
2534 published service ChartAxisXSupplier {
2535 interface ::com::sun::star::chart::XAxisXSupplier;
2536 [property] boolean HasXAxis;
2537 [property] boolean HasXAxisDescription;
2538 [property] boolean HasXAxisGrid;
2539 [property] boolean HasXAxisHelpGrid;
2540 [property] boolean HasXAxisTitle;
2543 module drawing {
2544 published interface XShape;
2546 module chart {
2547 published interface XAxisZSupplier {
2548 interface ::com::sun::star::uno::XInterface;
2549 ::com::sun::star::drawing::XShape getZAxisTitle();
2550 ::com::sun::star::beans::XPropertySet getZMainGrid();
2551 ::com::sun::star::beans::XPropertySet getZHelpGrid();
2552 ::com::sun::star::beans::XPropertySet getZAxis();
2554 published service ChartAxisZSupplier {
2555 interface ::com::sun::star::chart::XAxisZSupplier;
2556 [property] boolean HasZAxis;
2557 [property] boolean HasZAxisDescription;
2558 [property] boolean HasZAxisGrid;
2559 [property] boolean HasZAxisHelpGrid;
2560 [property] boolean HasZAxisTitle;
2562 published enum ChartErrorCategory {
2563 NONE = 0,
2564 VARIANCE = 1,
2565 STANDARD_DEVIATION = 2,
2566 PERCENT = 3,
2567 ERROR_MARGIN = 4,
2568 CONSTANT_VALUE = 5
2570 published enum ChartErrorIndicatorType {
2571 NONE = 0,
2572 TOP_AND_BOTTOM = 1,
2573 UPPER = 2,
2574 LOWER = 3
2576 published enum ChartRegressionCurveType {
2577 NONE = 0,
2578 LINEAR = 1,
2579 LOGARITHM = 2,
2580 EXPONENTIAL = 3,
2581 POLYNOMIAL = 4,
2582 POWER = 5
2584 published service ChartStatistics {
2585 interface ::com::sun::star::beans::XPropertySet;
2586 [property] double ConstantErrorLow;
2587 [property] double ConstantErrorHigh;
2588 [property] boolean MeanValue;
2589 /** @deprecated */ [property] ::com::sun::star::chart::ChartErrorCategory ErrorCategory;
2590 [property, optional] long ErrorBarStyle;
2591 [property] double PercentageError;
2592 [property] double ErrorMargin;
2593 [property] ::com::sun::star::chart::ChartErrorIndicatorType ErrorIndicator;
2594 [property] ::com::sun::star::chart::ChartRegressionCurveType RegressionCurves;
2595 [property, optional] string ErrorBarRangePositive;
2596 [property, optional] string ErrorBarRangeNegative;
2599 module drawing {
2600 published interface XShape;
2602 module chart {
2603 published interface XAxisYSupplier {
2604 interface ::com::sun::star::uno::XInterface;
2605 ::com::sun::star::drawing::XShape getYAxisTitle();
2606 ::com::sun::star::beans::XPropertySet getYAxis();
2607 ::com::sun::star::beans::XPropertySet getYHelpGrid();
2608 ::com::sun::star::beans::XPropertySet getYMainGrid();
2610 published service ChartAxisYSupplier {
2611 interface ::com::sun::star::chart::XAxisYSupplier;
2612 [property] boolean HasYAxis;
2613 [property] boolean HasYAxisDescription;
2614 [property] boolean HasYAxisGrid;
2615 [property] boolean HasYAxisHelpGrid;
2616 [property] boolean HasYAxisTitle;
2618 published interface XTwoAxisYSupplier {
2619 interface ::com::sun::star::chart::XAxisYSupplier;
2620 ::com::sun::star::beans::XPropertySet getSecondaryYAxis();
2622 published service ChartTwoAxisYSupplier {
2623 service ::com::sun::star::chart::ChartAxisYSupplier;
2624 interface ::com::sun::star::chart::XTwoAxisYSupplier;
2625 [property] boolean HasSecondaryYAxis;
2626 [property] boolean HasSecondaryYAxisDescription;
2627 [property, optional] boolean HasSecondaryYAxisTitle;
2629 published enum ChartDataRowSource {
2630 ROWS = 0,
2631 COLUMNS = 1
2633 interface XAxis;
2634 interface XAxisSupplier {
2635 interface ::com::sun::star::uno::XInterface;
2636 ::com::sun::star::chart::XAxis getAxis([in] long nDimensionIndex);
2637 ::com::sun::star::chart::XAxis getSecondaryAxis([in] long nDimensionIndex);
2640 module drawing {
2641 /** @deprecated */ published interface XShapeDescriptor {
2642 interface ::com::sun::star::uno::XInterface;
2643 string getShapeType();
2645 published interface XShape {
2646 interface ::com::sun::star::drawing::XShapeDescriptor;
2647 ::com::sun::star::awt::Point getPosition();
2648 void setPosition([in] ::com::sun::star::awt::Point aPosition);
2649 ::com::sun::star::awt::Size getSize();
2650 void setSize([in] ::com::sun::star::awt::Size aSize) raises (::com::sun::star::beans::PropertyVetoException);
2653 module chart {
2654 published interface XDiagram {
2655 interface ::com::sun::star::drawing::XShape;
2656 string getDiagramType();
2657 ::com::sun::star::beans::XPropertySet getDataRowProperties([in] long nRow) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2658 ::com::sun::star::beans::XPropertySet getDataPointProperties([in] long nCol, [in] long nRow) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2660 interface XDiagramPositioning {
2661 interface ::com::sun::star::uno::XInterface;
2662 void setAutomaticDiagramPositioning();
2663 boolean isAutomaticDiagramPositioning();
2664 void setDiagramPositionExcludingAxes([in] ::com::sun::star::awt::Rectangle PositionRect);
2665 boolean isExcludingDiagramPositioning();
2666 ::com::sun::star::awt::Rectangle calculateDiagramPositionExcludingAxes();
2667 void setDiagramPositionIncludingAxes([in] ::com::sun::star::awt::Rectangle PositionRect);
2668 ::com::sun::star::awt::Rectangle calculateDiagramPositionIncludingAxes();
2669 void setDiagramPositionIncludingAxesAndAxisTitles([in] ::com::sun::star::awt::Rectangle PositionRect);
2670 ::com::sun::star::awt::Rectangle calculateDiagramPositionIncludingAxesAndAxisTitles();
2672 interface XSecondAxisTitleSupplier {
2673 interface ::com::sun::star::uno::XInterface;
2674 ::com::sun::star::drawing::XShape getSecondXAxisTitle();
2675 ::com::sun::star::drawing::XShape getSecondYAxisTitle();
2678 module xml {
2679 published service UserDefinedAttributesSupplier {
2680 [property] ::com::sun::star::container::XNameContainer UserDefinedAttributes;
2683 module chart {
2684 published service Diagram {
2685 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
2686 interface ::com::sun::star::chart::XDiagram;
2687 interface ::com::sun::star::beans::XPropertySet;
2688 [optional] interface ::com::sun::star::chart::XAxisSupplier;
2689 [optional] interface ::com::sun::star::chart::XSecondAxisTitleSupplier;
2690 [optional] interface ::com::sun::star::chart::XDiagramPositioning;
2691 [property, optional] boolean AutomaticPosition;
2692 [property, optional] boolean AutomaticSize;
2693 [property] ::com::sun::star::chart::ChartDataRowSource DataRowSource;
2694 [property] long DataCaption;
2695 [property, optional] long MissingValueTreatment;
2697 published interface X3DDefaultSetter {
2698 interface ::com::sun::star::uno::XInterface;
2699 void set3DSettingsToDefault();
2700 void setDefaultRotation();
2701 void setDefaultIllumination();
2703 published interface X3DDisplay {
2704 interface ::com::sun::star::uno::XInterface;
2705 ::com::sun::star::beans::XPropertySet getWall();
2706 ::com::sun::star::beans::XPropertySet getFloor();
2708 published service Dim3DDiagram {
2709 interface ::com::sun::star::chart::X3DDisplay;
2710 [optional] interface ::com::sun::star::chart::X3DDefaultSetter;
2711 [property] boolean Dim3D;
2712 [property, optional] long Perspective;
2713 [property, optional] long RotationHorizontal;
2714 [property, optional] long RotationVertical;
2716 published service StackableDiagram {
2717 [property] boolean Percent;
2718 [property] boolean Stacked;
2720 published service AreaDiagram {
2721 service ::com::sun::star::chart::Diagram;
2722 service ::com::sun::star::chart::ChartStatistics;
2723 service ::com::sun::star::chart::ChartAxisXSupplier;
2724 service ::com::sun::star::chart::ChartTwoAxisYSupplier;
2725 service ::com::sun::star::chart::ChartAxisZSupplier;
2726 service ::com::sun::star::chart::Dim3DDiagram;
2727 service ::com::sun::star::chart::StackableDiagram;
2729 published service BarDiagram {
2730 service ::com::sun::star::chart::Diagram;
2731 service ::com::sun::star::chart::ChartStatistics;
2732 service ::com::sun::star::chart::ChartAxisXSupplier;
2733 service ::com::sun::star::chart::ChartTwoAxisYSupplier;
2734 service ::com::sun::star::chart::ChartAxisZSupplier;
2735 service ::com::sun::star::chart::Dim3DDiagram;
2736 service ::com::sun::star::chart::StackableDiagram;
2737 [property] boolean Vertical;
2738 [property, optional] boolean Deep;
2739 [property, optional] boolean StackedBarsConnected;
2740 [property, optional] boolean GroupBarsPerAxis;
2741 /** @deprecated */ [property] long NumberOfLines;
2743 published service BubbleDiagram {
2744 service ::com::sun::star::chart::Diagram;
2745 service ::com::sun::star::chart::ChartAxisXSupplier;
2746 service ::com::sun::star::chart::ChartTwoAxisYSupplier;
2747 [optional] service ::com::sun::star::chart::ChartStatistics;
2749 published service Chart3DBarProperties {
2750 interface ::com::sun::star::beans::XPropertySet;
2751 [property] long SolidType;
2754 module drawing {
2755 published enum BitmapMode {
2756 REPEAT = 0,
2757 STRETCH = 1,
2758 NO_REPEAT = 2
2760 published enum FillStyle {
2761 NONE = 0,
2762 SOLID = 1,
2763 GRADIENT = 2,
2764 HATCH = 3,
2765 BITMAP = 4
2767 published enum HatchStyle {
2768 SINGLE = 0,
2769 DOUBLE = 1,
2770 TRIPLE = 2
2772 published struct Hatch {
2773 ::com::sun::star::drawing::HatchStyle Style;
2774 ::com::sun::star::util::Color Color;
2775 long Distance;
2776 long Angle;
2778 published enum RectanglePoint {
2779 LEFT_TOP = 0,
2780 MIDDLE_TOP = 1,
2781 RIGHT_TOP = 2,
2782 LEFT_MIDDLE = 3,
2783 MIDDLE_MIDDLE = 4,
2784 RIGHT_MIDDLE = 5,
2785 LEFT_BOTTOM = 6,
2786 MIDDLE_BOTTOM = 7,
2787 RIGHT_BOTTOM = 8
2790 module text {
2791 published struct GraphicCrop {
2792 long Top;
2793 long Bottom;
2794 long Left;
2795 long Right;
2798 module drawing {
2799 published service FillProperties {
2800 [property] ::com::sun::star::drawing::FillStyle FillStyle;
2801 [property] ::com::sun::star::util::Color FillColor;
2802 [property] short FillTransparence;
2803 [property] string FillTransparenceGradientName;
2804 [property, optional] ::com::sun::star::awt::Gradient FillTransparenceGradient;
2805 [property] string FillGradientName;
2806 [property, optional] ::com::sun::star::awt::Gradient FillGradient;
2807 [property] string FillHatchName;
2808 [property, optional] ::com::sun::star::drawing::Hatch FillHatch;
2809 [property] boolean FillBackground;
2810 [property] string FillBitmapName;
2811 [property, optional] ::com::sun::star::awt::XBitmap FillBitmap;
2812 [property, optional] string FillBitmapURL;
2813 [property] short FillBitmapPositionOffsetX;
2814 [property] short FillBitmapPositionOffsetY;
2815 [property] short FillBitmapOffsetX;
2816 [property] short FillBitmapOffsetY;
2817 [property] ::com::sun::star::drawing::RectanglePoint FillBitmapRectanglePoint;
2818 [property] boolean FillBitmapLogicalSize;
2819 [property] long FillBitmapSizeX;
2820 [property] long FillBitmapSizeY;
2821 [property] ::com::sun::star::drawing::BitmapMode FillBitmapMode;
2822 [property, optional] boolean FillBitmapStretch;
2823 [property, optional] boolean FillBitmapTile;
2824 [property, optional] ::com::sun::star::text::GraphicCrop GraphicCrop;
2826 published enum LineCap {
2827 BUTT = 0,
2828 ROUND = 1,
2829 SQUARE = 2
2831 published enum DashStyle {
2832 RECT = 0,
2833 ROUND = 1,
2834 RECTRELATIVE = 2,
2835 ROUNDRELATIVE = 3
2837 published struct LineDash {
2838 ::com::sun::star::drawing::DashStyle Style;
2839 short Dots;
2840 long DotLen;
2841 short Dashes;
2842 long DashLen;
2843 long Distance;
2845 published enum LineJoint {
2846 NONE = 0,
2847 MIDDLE = 1,
2848 BEVEL = 2,
2849 MITER = 3,
2850 ROUND = 4
2852 published enum LineStyle {
2853 NONE = 0,
2854 SOLID = 1,
2855 DASH = 2
2857 published enum PolygonFlags {
2858 NORMAL = 0,
2859 SMOOTH = 1,
2860 CONTROL = 2,
2861 SYMMETRIC = 3
2863 published typedef sequence< ::com::sun::star::drawing::PolygonFlags > FlagSequence;
2864 published typedef sequence< ::com::sun::star::drawing::FlagSequence > FlagSequenceSequence;
2865 published typedef sequence< ::com::sun::star::awt::Point > PointSequence;
2866 published typedef sequence< ::com::sun::star::drawing::PointSequence > PointSequenceSequence;
2867 published struct PolyPolygonBezierCoords {
2868 ::com::sun::star::drawing::PointSequenceSequence Coordinates;
2869 ::com::sun::star::drawing::FlagSequenceSequence Flags;
2871 published service LineProperties {
2872 [property] ::com::sun::star::drawing::LineStyle LineStyle;
2873 [property] ::com::sun::star::drawing::LineDash LineDash;
2874 [property, optional] string LineDashName;
2875 [property] ::com::sun::star::util::Color LineColor;
2876 [property] short LineTransparence;
2877 [property] long LineWidth;
2878 [property] ::com::sun::star::drawing::LineJoint LineJoint;
2879 [property, optional] ::com::sun::star::drawing::LineCap LineCap;
2880 [property, optional] string LineStartName;
2881 [property, optional] string LineEndName;
2882 [property, optional] ::com::sun::star::drawing::PolyPolygonBezierCoords LineStart;
2883 [property, optional] ::com::sun::star::drawing::PolyPolygonBezierCoords LineEnd;
2884 [property, optional] boolean LineStartCenter;
2885 [property, optional] long LineStartWidth;
2886 [property, optional] boolean LineEndCenter;
2887 [property, optional] long LineEndWidth;
2890 module chart {
2891 published service ChartArea {
2892 service ::com::sun::star::drawing::FillProperties;
2893 service ::com::sun::star::drawing::LineProperties;
2894 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
2895 interface ::com::sun::star::beans::XPropertySet;
2897 published enum ChartAxisArrangeOrderType {
2898 AUTO = 0,
2899 SIDE_BY_SIDE = 1,
2900 STAGGER_EVEN = 2,
2901 STAGGER_ODD = 3
2903 published enum ChartAxisLabelPosition {
2904 NEAR_AXIS = 0,
2905 NEAR_AXIS_OTHER_SIDE = 1,
2906 OUTSIDE_START = 2,
2907 OUTSIDE_END = 3
2909 published enum ChartAxisMarkPosition {
2910 AT_LABELS = 0,
2911 AT_AXIS = 1,
2912 AT_LABELS_AND_AXIS = 2
2914 published enum ChartAxisPosition {
2915 ZERO = 0,
2916 START = 1,
2917 END = 2,
2918 VALUE = 3
2920 published struct TimeIncrement {
2921 any MajorTimeInterval;
2922 any MinorTimeInterval;
2923 any TimeResolution;
2925 interface XAxis {
2926 interface ::com::sun::star::uno::XInterface;
2927 ::com::sun::star::beans::XPropertySet getAxisTitle();
2928 ::com::sun::star::beans::XPropertySet getMajorGrid();
2929 ::com::sun::star::beans::XPropertySet getMinorGrid();
2932 module table {
2933 published struct BorderLine {
2934 ::com::sun::star::util::Color Color;
2935 short InnerLineWidth;
2936 short OuterLineWidth;
2937 short LineDistance;
2939 published struct BorderLine2: ::com::sun::star::table::BorderLine {
2940 short LineStyle;
2941 unsigned long LineWidth;
2943 published enum ShadowLocation {
2944 NONE = 0,
2945 TOP_LEFT = 1,
2946 TOP_RIGHT = 2,
2947 BOTTOM_LEFT = 3,
2948 BOTTOM_RIGHT = 4
2950 published struct ShadowFormat {
2951 ::com::sun::star::table::ShadowLocation Location;
2952 short ShadowWidth;
2953 boolean IsTransparent;
2954 ::com::sun::star::util::Color Color;
2957 module style {
2958 published service CharacterProperties {
2959 [property] string CharFontName;
2960 [property] string CharFontStyleName;
2961 [property] short CharFontFamily;
2962 [property] short CharFontCharSet;
2963 [property] short CharFontPitch;
2964 [property] ::com::sun::star::util::Color CharColor;
2965 [property, optional] short CharEscapement;
2966 [property] float CharHeight;
2967 [property] short CharUnderline;
2968 [property] float CharWeight;
2969 [property] ::com::sun::star::awt::FontSlant CharPosture;
2970 [property, optional] boolean CharAutoKerning;
2971 [property, optional] ::com::sun::star::util::Color CharBackColor;
2972 [property, optional] long CharShadingValue;
2973 [property, optional] boolean CharBackTransparent;
2974 [property, optional] short CharCaseMap;
2975 [property, optional] boolean CharCrossedOut;
2976 [property, optional] boolean CharFlash;
2977 [property, optional] short CharStrikeout;
2978 [property, optional] boolean CharWordMode;
2979 [property, optional] short CharKerning;
2980 [property] ::com::sun::star::lang::Locale CharLocale;
2981 [property, optional] boolean CharKeepTogether;
2982 [property, optional] boolean CharNoLineBreak;
2983 [property, optional] boolean CharShadowed;
2984 [property, optional] short CharFontType;
2985 [property, optional] string CharStyleName;
2986 [property, optional] boolean CharContoured;
2987 [property, optional] boolean CharCombineIsOn;
2988 [property, optional] string CharCombinePrefix;
2989 [property, optional] string CharCombineSuffix;
2990 [property, optional] short CharEmphasis;
2991 [property, optional] short CharRelief;
2992 [property, optional] string RubyText;
2993 [property, optional] short RubyAdjust;
2994 [property, optional] string RubyCharStyleName;
2995 [property, optional] boolean RubyIsAbove;
2996 [property, optional] short CharRotation;
2997 [property, optional] boolean CharRotationIsFitToLine;
2998 [property, optional] short CharScaleWidth;
2999 [property, optional] string HyperLinkURL;
3000 [property, optional] string HyperLinkTarget;
3001 [property, optional] string HyperLinkName;
3002 [property, optional] string VisitedCharStyleName;
3003 [property, optional] string UnvisitedCharStyleName;
3004 [property, optional] byte CharEscapementHeight;
3005 [property, optional] boolean CharNoHyphenation;
3006 [property] ::com::sun::star::util::Color CharUnderlineColor;
3007 [property] boolean CharUnderlineHasColor;
3008 [property, optional] sequence< string > CharStyleNames;
3009 [property, optional] boolean CharHidden;
3010 [property, optional] ::com::sun::star::container::XNameContainer TextUserDefinedAttributes;
3011 [property, optional] ::com::sun::star::table::BorderLine2 CharLeftBorder;
3012 [property, optional] ::com::sun::star::table::BorderLine2 CharRightBorder;
3013 [property, optional] ::com::sun::star::table::BorderLine2 CharTopBorder;
3014 [property, optional] ::com::sun::star::table::BorderLine2 CharBottomBorder;
3015 [property, optional] long CharBorderDistance;
3016 [property, optional] long CharLeftBorderDistance;
3017 [property, optional] long CharRightBorderDistance;
3018 [property, optional] long CharTopBorderDistance;
3019 [property, optional] long CharBottomBorderDistance;
3020 [property, optional] ::com::sun::star::table::ShadowFormat CharShadowFormat;
3021 [property, optional] ::com::sun::star::util::Color CharHighlight;
3022 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > CharInteropGrabBag;
3025 module chart {
3026 published service ChartAxis {
3027 service ::com::sun::star::drawing::LineProperties;
3028 service ::com::sun::star::style::CharacterProperties;
3029 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
3030 interface ::com::sun::star::beans::XPropertySet;
3031 [optional] interface ::com::sun::star::chart::XAxis;
3032 [property, optional] double Max;
3033 [property, optional] double Min;
3034 [property, optional] double StepMain;
3035 [property, optional] long StepHelpCount;
3036 /** @deprecated */ [property, optional] double StepHelp;
3037 [property, optional] boolean AutoMax;
3038 [property, optional] boolean AutoMin;
3039 [property, optional] boolean AutoStepMain;
3040 [property, optional] boolean AutoStepHelp;
3041 [property, optional] boolean Logarithmic;
3042 [property, optional] long AxisType;
3043 [property, maybevoid, optional] ::com::sun::star::chart::TimeIncrement TimeIncrement;
3044 [property, optional] boolean ReverseDirection;
3045 [property, optional] ::com::sun::star::chart::ChartAxisPosition CrossoverPosition;
3046 [property, optional] double CrossoverValue;
3047 [property, optional] double Origin;
3048 [property, optional] boolean AutoOrigin;
3049 [property] long Marks;
3050 [property] long HelpMarks;
3051 [property, optional] ::com::sun::star::chart::ChartAxisMarkPosition MarkPosition;
3052 [property] boolean DisplayLabels;
3053 [property] long NumberFormat;
3054 [property, optional] boolean LinkNumberFormatToSource;
3055 [property, optional] ::com::sun::star::chart::ChartAxisLabelPosition LabelPosition;
3056 [property] long TextRotation;
3057 [property] ::com::sun::star::chart::ChartAxisArrangeOrderType ArrangeOrder;
3058 [property] boolean TextBreak;
3059 [property] boolean TextCanOverlap;
3060 [property] long Overlap;
3061 [property] long GapWidth;
3063 published constants ChartAxisAssign {
3064 const long PRIMARY_Y = 2;
3065 const long SECONDARY_Y = 4;
3067 published constants ChartAxisMarks {
3068 const long INNER = 1;
3069 const long NONE = 0;
3070 const long OUTER = 2;
3072 published constants ChartAxisType {
3073 const long AUTOMATIC = 0;
3074 const long CATEGORY = 1;
3075 const long DATE = 2;
3077 published interface XChartDataChangeEventListener;
3078 published interface XChartData {
3079 interface ::com::sun::star::uno::XInterface;
3080 void addChartDataChangeEventListener([in] ::com::sun::star::chart::XChartDataChangeEventListener aListener);
3081 void removeChartDataChangeEventListener([in] ::com::sun::star::chart::XChartDataChangeEventListener aListener);
3082 double getNotANumber();
3083 boolean isNotANumber([in] double nNumber);
3085 published service ChartData {
3086 interface ::com::sun::star::chart::XChartData;
3088 published interface XChartDataArray {
3089 interface ::com::sun::star::chart::XChartData;
3090 sequence< sequence< double > > getData();
3091 void setData([in] sequence< sequence< double > > aData);
3092 sequence< string > getRowDescriptions();
3093 void setRowDescriptions([in] sequence< string > aRowDescriptions);
3094 sequence< string > getColumnDescriptions();
3095 void setColumnDescriptions([in] sequence< string > aColumnDescriptions);
3097 published service ChartDataArray {
3098 service ::com::sun::star::chart::ChartData;
3099 interface ::com::sun::star::chart::XChartDataArray;
3101 published constants ChartDataCaption {
3102 /** @deprecated */ const long FORMAT = 8;
3103 const long NONE = 0;
3104 const long PERCENT = 2;
3105 const long SYMBOL = 16;
3106 const long TEXT = 4;
3107 const long VALUE = 1;
3109 published enum ChartDataChangeType {
3110 ALL = 0,
3111 DATA_RANGE = 1,
3112 COLUMN_INSERTED = 2,
3113 ROW_INSERTED = 3,
3114 COLUMN_DELETED = 4,
3115 ROW_DELETED = 5
3117 published struct ChartDataChangeEvent: ::com::sun::star::lang::EventObject {
3118 ::com::sun::star::chart::ChartDataChangeType Type;
3119 short StartColumn;
3120 short EndColumn;
3121 short StartRow;
3122 short EndRow;
3124 /** @deprecated */ published struct ChartDataValue {
3125 double Value;
3126 double HighError;
3127 double LowError;
3129 /** @deprecated */ published typedef sequence< ::com::sun::star::chart::ChartDataValue > ChartDataPoint;
3130 published service ChartDataPointProperties {
3131 service ::com::sun::star::drawing::LineProperties;
3132 service ::com::sun::star::style::CharacterProperties;
3133 [optional] service ::com::sun::star::drawing::FillProperties;
3134 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
3135 [optional] service ::com::sun::star::chart::Chart3DBarProperties;
3136 interface ::com::sun::star::beans::XPropertySet;
3137 [property] long DataCaption;
3138 [property, optional] string LabelSeparator;
3139 [property, optional] long NumberFormat;
3140 [property, optional] long PercentageNumberFormat;
3141 [property, optional] long LabelPlacement;
3142 [property, optional] long SymbolType;
3143 [property, optional] string SymbolBitmapURL;
3144 [property, optional] long SegmentOffset;
3146 /** @deprecated */ published struct ChartDataRow {
3147 string Name;
3148 sequence< sequence< ::com::sun::star::chart::ChartDataValue > > Points;
3150 published service ChartDataRowProperties {
3151 service ::com::sun::star::chart::ChartDataPointProperties;
3152 [optional] service ::com::sun::star::chart::ChartStatistics;
3153 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
3154 interface ::com::sun::star::beans::XPropertySet;
3155 [property] long Axis;
3156 [property, optional, readonly] ::com::sun::star::beans::XPropertySet DataRegressionProperties;
3157 [property, optional, readonly] ::com::sun::star::beans::XPropertySet DataErrorProperties;
3158 [property, optional, readonly] ::com::sun::star::beans::XPropertySet DataMeanValueProperties;
3161 module frame {
3162 published interface XController;
3163 published interface XModel {
3164 interface ::com::sun::star::lang::XComponent;
3165 boolean attachResource([in] string URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments);
3166 string getURL();
3167 sequence< ::com::sun::star::beans::PropertyValue > getArgs();
3168 void connectController([in] ::com::sun::star::frame::XController Controller);
3169 void disconnectController([in] ::com::sun::star::frame::XController Controller);
3170 void lockControllers();
3171 void unlockControllers();
3172 boolean hasControllersLocked();
3173 ::com::sun::star::frame::XController getCurrentController();
3174 void setCurrentController([in] ::com::sun::star::frame::XController Controller) raises (::com::sun::star::container::NoSuchElementException);
3175 ::com::sun::star::uno::XInterface getCurrentSelection();
3178 module chart {
3179 published interface XChartDocument {
3180 interface ::com::sun::star::frame::XModel;
3181 ::com::sun::star::drawing::XShape getTitle();
3182 ::com::sun::star::drawing::XShape getSubTitle();
3183 ::com::sun::star::drawing::XShape getLegend();
3184 ::com::sun::star::beans::XPropertySet getArea();
3185 ::com::sun::star::chart::XDiagram getDiagram();
3186 void setDiagram([in] ::com::sun::star::chart::XDiagram xDiagram);
3187 ::com::sun::star::chart::XChartData getData();
3188 void attachData([in] ::com::sun::star::chart::XChartData xData);
3191 module drawing {
3192 published interface XDrawPage;
3193 /** @deprecated */ published interface XDrawPageSupplier {
3194 interface ::com::sun::star::uno::XInterface;
3195 ::com::sun::star::drawing::XDrawPage getDrawPage();
3198 module chart {
3199 published service ChartDocument {
3200 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
3201 interface ::com::sun::star::chart::XChartDocument;
3202 interface ::com::sun::star::beans::XPropertySet;
3203 [optional] interface ::com::sun::star::drawing::XDrawPageSupplier;
3204 [property] boolean HasMainTitle;
3205 [property] boolean HasSubTitle;
3206 [property] boolean HasLegend;
3208 published service ChartGrid {
3209 service ::com::sun::star::drawing::LineProperties;
3210 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
3211 interface ::com::sun::star::beans::XPropertySet;
3213 published enum ChartLegendPosition {
3214 NONE = 0,
3215 LEFT = 1,
3216 TOP = 2,
3217 RIGHT = 3,
3218 BOTTOM = 4
3221 module drawing {
3222 published struct HomogenMatrixLine3 {
3223 double Column1;
3224 double Column2;
3225 double Column3;
3227 published struct HomogenMatrix3 {
3228 ::com::sun::star::drawing::HomogenMatrixLine3 Line1;
3229 ::com::sun::star::drawing::HomogenMatrixLine3 Line2;
3230 ::com::sun::star::drawing::HomogenMatrixLine3 Line3;
3232 published interface XGluePointsSupplier {
3233 interface ::com::sun::star::uno::XInterface;
3234 ::com::sun::star::container::XIndexContainer getGluePoints();
3237 module style {
3238 published interface XStyle;
3240 module drawing {
3241 published service Shape {
3242 interface ::com::sun::star::beans::XPropertySet;
3243 interface ::com::sun::star::drawing::XShape;
3244 interface ::com::sun::star::lang::XComponent;
3245 interface ::com::sun::star::drawing::XShapeDescriptor;
3246 [optional] interface ::com::sun::star::drawing::XGluePointsSupplier;
3247 [optional] interface ::com::sun::star::beans::XTolerantMultiPropertySet;
3248 [property, optional] long ZOrder;
3249 [property, optional] short LayerID;
3250 [property, optional] string LayerName;
3251 [property, optional] boolean Visible;
3252 [property, optional] boolean Printable;
3253 [property, optional] boolean MoveProtect;
3254 [property, optional] string Name;
3255 [property, optional] boolean SizeProtect;
3256 [property, optional] ::com::sun::star::style::XStyle Style;
3257 [property, optional] ::com::sun::star::drawing::HomogenMatrix3 Transformation;
3258 [property, optional] ::com::sun::star::container::XNameContainer ShapeUserDefinedAttributes;
3259 [property, optional] long NavigationOrder;
3260 [property, optional] string Hyperlink;
3261 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > InteropGrabBag;
3262 [property, optional] short RelativeHeight;
3263 [property, optional] short RelativeWidth;
3264 [property, optional] short RelativeHeightRelation;
3265 [property, optional] short RelativeWidthRelation;
3268 module chart {
3269 published service ChartLegend {
3270 service ::com::sun::star::drawing::Shape;
3271 service ::com::sun::star::style::CharacterProperties;
3272 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
3273 [property, optional] boolean AutomaticPosition;
3274 [property] ::com::sun::star::chart::ChartLegendPosition Alignment;
3276 published service ChartLine {
3277 service ::com::sun::star::drawing::LineProperties;
3278 interface ::com::sun::star::beans::XPropertySet;
3280 published service ChartPieSegmentProperties {
3281 service ::com::sun::star::chart::ChartDataPointProperties;
3282 interface ::com::sun::star::beans::XPropertySet;
3283 [property] long SegmentOffset;
3285 published struct ChartSeriesAddress {
3286 string DataRangeAddress;
3287 string LabelAddress;
3288 sequence< string > DomainRangeAddresses;
3290 published constants ChartSolidType {
3291 const long CONE = 2;
3292 const long CYLINDER = 1;
3293 const long PYRAMID = 3;
3294 const long RECTANGULAR_SOLID = 0;
3296 published constants ChartSymbolType {
3297 const long AUTO = -2;
3298 const long BITMAPURL = -1;
3299 const long NONE = -3;
3300 const long SYMBOL0 = 0;
3301 const long SYMBOL1 = 1;
3302 const long SYMBOL2 = 2;
3303 const long SYMBOL3 = 3;
3304 const long SYMBOL4 = 4;
3305 const long SYMBOL5 = 5;
3306 const long SYMBOL6 = 6;
3307 const long SYMBOL7 = 7;
3309 published service ChartTableAddressSupplier {
3310 [property] string CategoriesRangeAddress;
3311 [property] sequence< ::com::sun::star::chart::ChartSeriesAddress > SeriesAddresses;
3312 [property, optional] string MainTitleAddress;
3313 [property, optional] string SubTitleAddress;
3315 published service ChartTitle {
3316 service ::com::sun::star::drawing::Shape;
3317 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
3318 [property, optional] boolean AutomaticPosition;
3319 [property] long TextRotation;
3320 [property] string String;
3322 published interface XTwoAxisXSupplier {
3323 interface ::com::sun::star::chart::XAxisXSupplier;
3324 ::com::sun::star::beans::XPropertySet getSecondaryXAxis();
3326 published service ChartTwoAxisXSupplier {
3327 service ::com::sun::star::chart::ChartAxisXSupplier;
3328 interface ::com::sun::star::chart::XTwoAxisXSupplier;
3329 [property] boolean HasSecondaryXAxis;
3330 [property] boolean HasSecondaryXAxisDescription;
3331 [property, optional] boolean HasSecondaryXAxisTitle;
3333 published constants DataLabelPlacement {
3334 const long AVOID_OVERLAP = 0;
3335 const long BOTTOM = 6;
3336 const long BOTTOM_LEFT = 5;
3337 const long BOTTOM_RIGHT = 7;
3338 const long CENTER = 1;
3339 const long INSIDE = 10;
3340 const long LEFT = 4;
3341 const long NEAR_ORIGIN = 12;
3342 const long OUTSIDE = 11;
3343 const long RIGHT = 8;
3344 const long TOP = 2;
3345 const long TOP_LEFT = 3;
3346 const long TOP_RIGHT = 9;
3348 published service DonutDiagram {
3349 service ::com::sun::star::chart::Diagram;
3351 published constants ErrorBarStyle {
3352 const long ABSOLUTE = 3;
3353 const long ERROR_MARGIN = 5;
3354 const long FROM_DATA = 7;
3355 const long NONE = 0;
3356 const long RELATIVE = 4;
3357 const long STANDARD_DEVIATION = 2;
3358 const long STANDARD_ERROR = 6;
3359 const long VARIANCE = 1;
3361 published service FilledNetDiagram {
3362 service ::com::sun::star::chart::Diagram;
3363 service ::com::sun::star::chart::ChartAxisXSupplier;
3364 service ::com::sun::star::chart::ChartAxisYSupplier;
3365 service ::com::sun::star::chart::StackableDiagram;
3367 published service LineDiagram {
3368 service ::com::sun::star::chart::Diagram;
3369 service ::com::sun::star::chart::ChartStatistics;
3370 service ::com::sun::star::chart::ChartAxisXSupplier;
3371 service ::com::sun::star::chart::ChartTwoAxisYSupplier;
3372 service ::com::sun::star::chart::ChartAxisZSupplier;
3373 service ::com::sun::star::chart::Dim3DDiagram;
3374 service ::com::sun::star::chart::StackableDiagram;
3375 [property] long SymbolType;
3376 [property, optional] ::com::sun::star::awt::Size SymbolSize;
3377 /** @deprecated */ [property, optional] string SymbolBitmapURL;
3378 [property] boolean Lines;
3379 [property] long SplineType;
3380 [property, optional] long SplineOrder;
3381 [property, optional] long SplineResolution;
3383 published constants MissingValueTreatment {
3384 const long CONTINUE = 2;
3385 const long LEAVE_GAP = 0;
3386 const long USE_ZERO = 1;
3388 published service NetDiagram {
3389 service ::com::sun::star::chart::Diagram;
3390 service ::com::sun::star::chart::StackableDiagram;
3391 service ::com::sun::star::chart::ChartAxisYSupplier;
3393 published service PieDiagram {
3394 service ::com::sun::star::chart::Diagram;
3395 service ::com::sun::star::chart::Dim3DDiagram;
3397 published interface XStatisticDisplay {
3398 interface ::com::sun::star::uno::XInterface;
3399 ::com::sun::star::beans::XPropertySet getUpBar();
3400 ::com::sun::star::beans::XPropertySet getDownBar();
3401 ::com::sun::star::beans::XPropertySet getMinMaxLine();
3403 published service StockDiagram {
3404 service ::com::sun::star::chart::ChartStatistics;
3405 service ::com::sun::star::chart::Diagram;
3406 service ::com::sun::star::chart::ChartAxisXSupplier;
3407 service ::com::sun::star::chart::ChartTwoAxisYSupplier;
3408 interface ::com::sun::star::chart::XStatisticDisplay;
3409 [property] boolean Volume;
3410 [property] boolean UpDown;
3412 published struct TimeInterval {
3413 long Number;
3414 long TimeUnit;
3416 published constants TimeUnit {
3417 const long DAY = 0;
3418 const long MONTH = 1;
3419 const long YEAR = 2;
3421 published interface XChartDataChangeEventListener {
3422 interface ::com::sun::star::lang::XEventListener;
3423 void chartDataChanged([in] ::com::sun::star::chart::ChartDataChangeEvent aEvent);
3425 published interface XComplexDescriptionAccess {
3426 interface ::com::sun::star::chart::XChartDataArray;
3427 sequence< sequence< string > > getComplexRowDescriptions();
3428 void setComplexRowDescriptions([in] sequence< sequence< string > > rRowDescriptions);
3429 sequence< sequence< string > > getComplexColumnDescriptions();
3430 void setComplexColumnDescriptions([in] sequence< sequence< string > > rColumnDescriptions);
3432 published interface XDateCategories {
3433 interface ::com::sun::star::uno::XInterface;
3434 void setDateCategories([in] sequence< double > rDates);
3435 sequence< double > getDateCategories();
3437 published service XYDiagram {
3438 service ::com::sun::star::chart::Diagram;
3439 service ::com::sun::star::chart::ChartStatistics;
3440 service ::com::sun::star::chart::ChartAxisXSupplier;
3441 service ::com::sun::star::chart::ChartTwoAxisYSupplier;
3442 service ::com::sun::star::chart::LineDiagram;
3445 module style {
3446 published service CharacterPropertiesAsian {
3447 [property] float CharHeightAsian;
3448 [property] float CharWeightAsian;
3449 [property] string CharFontNameAsian;
3450 [property] string CharFontStyleNameAsian;
3451 [property] short CharFontFamilyAsian;
3452 [property] short CharFontCharSetAsian;
3453 [property] short CharFontPitchAsian;
3454 [property] ::com::sun::star::awt::FontSlant CharPostureAsian;
3455 [property] ::com::sun::star::lang::Locale CharLocaleAsian;
3457 published service CharacterPropertiesComplex {
3458 [property] float CharHeightComplex;
3459 [property] float CharWeightComplex;
3460 [property] string CharFontNameComplex;
3461 [property] string CharFontStyleNameComplex;
3462 [property] short CharFontFamilyComplex;
3463 [property] short CharFontCharSetComplex;
3464 [property] short CharFontPitchComplex;
3465 [property] ::com::sun::star::awt::FontSlant CharPostureComplex;
3466 [property] ::com::sun::star::lang::Locale CharLocaleComplex;
3469 module util {
3470 published exception CloseVetoException: ::com::sun::star::uno::Exception {
3473 module style {
3474 published interface XStyleFamiliesSupplier {
3475 interface ::com::sun::star::uno::XInterface;
3476 ::com::sun::star::container::XNameAccess getStyleFamilies();
3479 module util {
3480 published interface XNumberFormats;
3481 published interface XNumberFormatsSupplier {
3482 interface ::com::sun::star::uno::XInterface;
3483 ::com::sun::star::beans::XPropertySet getNumberFormatSettings();
3484 ::com::sun::star::util::XNumberFormats getNumberFormats();
3487 module drawing {
3488 published enum Alignment {
3489 TOP_LEFT = 0,
3490 TOP = 1,
3491 TOP_RIGHT = 2,
3492 LEFT = 3,
3493 CENTER = 4,
3494 RIGHT = 5,
3495 BOTTOM_LEFT = 6,
3496 BOTTOM = 7,
3497 BOTTOM_RIGHT = 8
3499 published struct Direction3D {
3500 double DirectionX;
3501 double DirectionY;
3502 double DirectionZ;
3505 module style {
3506 published interface XStyle {
3507 interface ::com::sun::star::container::XNamed;
3508 boolean isUserDefined();
3509 boolean isInUse();
3510 string getParentStyle();
3511 void setParentStyle([in] string aParentStyle) raises (::com::sun::star::container::NoSuchElementException);
3513 published service Style {
3514 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
3515 interface ::com::sun::star::style::XStyle;
3516 interface ::com::sun::star::beans::XPropertySet;
3517 [optional] interface ::com::sun::star::beans::XMultiPropertySet;
3518 [optional] interface ::com::sun::star::beans::XMultiPropertyStates;
3519 [property, optional, readonly] boolean IsPhysical;
3520 [property, optional] string FollowStyle;
3521 [property, optional, readonly] string DisplayName;
3522 [property, optional] string IsAutoUpdate;
3523 [property, optional] sequence< ::com::sun::star::beans::NamedValue > ParaStyleConditions;
3524 [property, optional] boolean Hidden;
3525 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > StyleInteropGrabBag;
3527 published interface XDefaultsSupplier {
3528 interface ::com::sun::star::uno::XInterface;
3529 ::com::sun::star::beans::XPropertySet getDefaults();
3531 published enum BreakType {
3532 NONE = 0,
3533 COLUMN_BEFORE = 1,
3534 COLUMN_AFTER = 2,
3535 COLUMN_BOTH = 3,
3536 PAGE_BEFORE = 4,
3537 PAGE_AFTER = 5,
3538 PAGE_BOTH = 6
3540 published struct DropCapFormat {
3541 byte Lines;
3542 byte Count;
3543 short Distance;
3545 published enum GraphicLocation {
3546 NONE = 0,
3547 LEFT_TOP = 1,
3548 MIDDLE_TOP = 2,
3549 RIGHT_TOP = 3,
3550 LEFT_MIDDLE = 4,
3551 MIDDLE_MIDDLE = 5,
3552 RIGHT_MIDDLE = 6,
3553 LEFT_BOTTOM = 7,
3554 MIDDLE_BOTTOM = 8,
3555 RIGHT_BOTTOM = 9,
3556 AREA = 10,
3557 TILED = 11
3559 published struct LineSpacing {
3560 short Mode;
3561 short Height;
3563 published enum ParagraphAdjust {
3564 LEFT = 0,
3565 RIGHT = 1,
3566 BLOCK = 2,
3567 CENTER = 3,
3568 STRETCH = 4
3570 published enum TabAlign {
3571 LEFT = 0,
3572 CENTER = 1,
3573 RIGHT = 2,
3574 DECIMAL = 3,
3575 DEFAULT = 4
3577 published struct TabStop {
3578 long Position;
3579 ::com::sun::star::style::TabAlign Alignment;
3580 char DecimalChar;
3581 char FillChar;
3583 published service ParagraphProperties {
3584 [property] ::com::sun::star::style::ParagraphAdjust ParaAdjust;
3585 [property, optional] ::com::sun::star::style::LineSpacing ParaLineSpacing;
3586 [property, optional] ::com::sun::star::util::Color ParaBackColor;
3587 [property, optional] boolean ParaBackTransparent;
3588 [property, optional] string ParaBackGraphicURL;
3589 [property, optional] string ParaBackGraphicFilter;
3590 [property, optional] ::com::sun::star::style::GraphicLocation ParaBackGraphicLocation;
3591 [property] short ParaLastLineAdjust;
3592 [property, optional] boolean ParaExpandSingleWord;
3593 [property] long ParaLeftMargin;
3594 [property] long ParaRightMargin;
3595 [property] long ParaTopMargin;
3596 [property] long ParaBottomMargin;
3597 [property, optional] boolean ParaContextMargin;
3598 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > ParaInteropGrabBag;
3599 [property, optional] boolean ParaLineNumberCount;
3600 [property, optional] long ParaLineNumberStartValue;
3601 [property, optional] string PageDescName;
3602 [property, optional] short PageNumberOffset;
3603 [property, optional] boolean ParaRegisterModeActive;
3604 [property, optional] sequence< ::com::sun::star::style::TabStop > ParaTabStops;
3605 [property, optional] string ParaStyleName;
3606 [property, maybevoid, optional, readonly] string PageStyleName;
3607 [property, optional] ::com::sun::star::style::DropCapFormat DropCapFormat;
3608 [property, optional] boolean DropCapWholeWord;
3609 [property, optional] boolean ParaKeepTogether;
3610 [property, optional] boolean ParaSplit;
3611 [property, optional] short NumberingLevel;
3612 [property, optional] ::com::sun::star::container::XIndexReplace NumberingRules;
3613 [property, optional] short NumberingStartValue;
3614 [property, optional] boolean ParaIsNumberingRestart;
3615 [property, optional] string NumberingStyleName;
3616 [property, optional] byte ParaOrphans;
3617 [property, optional] byte ParaWidows;
3618 [property, optional] ::com::sun::star::table::ShadowFormat ParaShadowFormat;
3619 [property, optional] ::com::sun::star::table::BorderLine LeftBorder;
3620 [property, optional] ::com::sun::star::table::BorderLine RightBorder;
3621 [property, optional] ::com::sun::star::table::BorderLine TopBorder;
3622 [property, optional] ::com::sun::star::table::BorderLine BottomBorder;
3623 [property, optional] long BorderDistance;
3624 [property, optional] long LeftBorderDistance;
3625 [property, optional] long RightBorderDistance;
3626 [property, optional] long TopBorderDistance;
3627 [property, optional] long BottomBorderDistance;
3628 [property, optional] ::com::sun::star::style::BreakType BreakType;
3629 [property, optional] string DropCapCharStyleName;
3630 [property, optional] long ParaFirstLineIndent;
3631 [property, optional] boolean ParaIsAutoFirstLineIndent;
3632 [property] boolean ParaIsHyphenation;
3633 [property, optional] short ParaHyphenationMaxHyphens;
3634 [property, optional] short ParaHyphenationMaxLeadingChars;
3635 [property, optional] short ParaHyphenationMaxTrailingChars;
3636 [property, optional] short ParaVertAlignment;
3637 [property, optional] ::com::sun::star::container::XNameContainer ParaUserDefinedAttributes;
3638 [property, maybevoid, optional] boolean NumberingIsNumber;
3639 [property, maybevoid, optional] boolean ParaIsConnectBorder;
3640 [property, optional] string ListId;
3641 [property, optional] short OutlineLevel;
3644 module util {
3645 published interface XModifyListener;
3646 published interface XModifyBroadcaster {
3647 interface ::com::sun::star::uno::XInterface;
3648 void addModifyListener([in] ::com::sun::star::util::XModifyListener aListener);
3649 void removeModifyListener([in] ::com::sun::star::util::XModifyListener aListener);
3652 module sdbc {
3653 published exception SQLException: ::com::sun::star::uno::Exception {
3654 string SQLState;
3655 long ErrorCode;
3656 any NextException;
3659 module util {
3660 published struct DateTime {
3661 unsigned long NanoSeconds;
3662 unsigned short Seconds;
3663 unsigned short Minutes;
3664 unsigned short Hours;
3665 unsigned short Day;
3666 unsigned short Month;
3667 short Year;
3668 boolean IsUTC;
3671 module sdbc {
3672 published interface XArray;
3673 published interface XBlob;
3674 published interface XClob;
3675 published interface XRef;
3676 published interface XParameters {
3677 interface ::com::sun::star::uno::XInterface;
3678 void setNull([in] long parameterIndex, [in] long sqlType) raises (::com::sun::star::sdbc::SQLException);
3679 void setObjectNull([in] long parameterIndex, [in] long sqlType, [in] string typeName) raises (::com::sun::star::sdbc::SQLException);
3680 void setBoolean([in] long parameterIndex, [in] boolean x) raises (::com::sun::star::sdbc::SQLException);
3681 void setByte([in] long parameterIndex, [in] byte x) raises (::com::sun::star::sdbc::SQLException);
3682 void setShort([in] long parameterIndex, [in] short x) raises (::com::sun::star::sdbc::SQLException);
3683 void setInt([in] long parameterIndex, [in] long x) raises (::com::sun::star::sdbc::SQLException);
3684 void setLong([in] long parameterIndex, [in] hyper x) raises (::com::sun::star::sdbc::SQLException);
3685 void setFloat([in] long parameterIndex, [in] float x) raises (::com::sun::star::sdbc::SQLException);
3686 void setDouble([in] long parameterIndex, [in] double x) raises (::com::sun::star::sdbc::SQLException);
3687 void setString([in] long parameterIndex, [in] string x) raises (::com::sun::star::sdbc::SQLException);
3688 void setBytes([in] long parameterIndex, [in] sequence< byte > x) raises (::com::sun::star::sdbc::SQLException);
3689 void setDate([in] long parameterIndex, [in] ::com::sun::star::util::Date x) raises (::com::sun::star::sdbc::SQLException);
3690 void setTime([in] long parameterIndex, [in] ::com::sun::star::util::Time x) raises (::com::sun::star::sdbc::SQLException);
3691 void setTimestamp([in] long parameterIndex, [in] ::com::sun::star::util::DateTime x) raises (::com::sun::star::sdbc::SQLException);
3692 void setBinaryStream([in] long parameterIndex, [in] ::com::sun::star::io::XInputStream x, [in] long length) raises (::com::sun::star::sdbc::SQLException);
3693 void setCharacterStream([in] long parameterIndex, [in] ::com::sun::star::io::XInputStream x, [in] long length) raises (::com::sun::star::sdbc::SQLException);
3694 void setObject([in] long parameterIndex, [in] any x) raises (::com::sun::star::sdbc::SQLException);
3695 void setObjectWithInfo([in] long parameterIndex, [in] any x, [in] long targetSqlType, [in] long scale) raises (::com::sun::star::sdbc::SQLException);
3696 void setRef([in] long parameterIndex, [in] ::com::sun::star::sdbc::XRef x) raises (::com::sun::star::sdbc::SQLException);
3697 void setBlob([in] long parameterIndex, [in] ::com::sun::star::sdbc::XBlob x) raises (::com::sun::star::sdbc::SQLException);
3698 void setClob([in] long parameterIndex, [in] ::com::sun::star::sdbc::XClob x) raises (::com::sun::star::sdbc::SQLException);
3699 void setArray([in] long parameterIndex, [in] ::com::sun::star::sdbc::XArray x) raises (::com::sun::star::sdbc::SQLException);
3700 void clearParameters() raises (::com::sun::star::sdbc::SQLException);
3702 published interface XResultSet {
3703 interface ::com::sun::star::uno::XInterface;
3704 boolean next() raises (::com::sun::star::sdbc::SQLException);
3705 boolean isBeforeFirst() raises (::com::sun::star::sdbc::SQLException);
3706 boolean isAfterLast() raises (::com::sun::star::sdbc::SQLException);
3707 boolean isFirst() raises (::com::sun::star::sdbc::SQLException);
3708 boolean isLast() raises (::com::sun::star::sdbc::SQLException);
3709 void beforeFirst() raises (::com::sun::star::sdbc::SQLException);
3710 void afterLast() raises (::com::sun::star::sdbc::SQLException);
3711 boolean first() raises (::com::sun::star::sdbc::SQLException);
3712 boolean last() raises (::com::sun::star::sdbc::SQLException);
3713 long getRow() raises (::com::sun::star::sdbc::SQLException);
3714 boolean absolute([in] long row) raises (::com::sun::star::sdbc::SQLException);
3715 boolean relative([in] long rows) raises (::com::sun::star::sdbc::SQLException);
3716 boolean previous() raises (::com::sun::star::sdbc::SQLException);
3717 void refreshRow() raises (::com::sun::star::sdbc::SQLException);
3718 boolean rowUpdated() raises (::com::sun::star::sdbc::SQLException);
3719 boolean rowInserted() raises (::com::sun::star::sdbc::SQLException);
3720 boolean rowDeleted() raises (::com::sun::star::sdbc::SQLException);
3721 ::com::sun::star::uno::XInterface getStatement() raises (::com::sun::star::sdbc::SQLException);
3723 published interface XRowSetListener;
3724 published interface XRowSet {
3725 interface ::com::sun::star::sdbc::XResultSet;
3726 void execute() raises (::com::sun::star::sdbc::SQLException);
3727 void addRowSetListener([in] ::com::sun::star::sdbc::XRowSetListener listener);
3728 void removeRowSetListener([in] ::com::sun::star::sdbc::XRowSetListener listener);
3731 module view {
3732 published interface XSelectionChangeListener {
3733 interface ::com::sun::star::lang::XEventListener;
3734 void selectionChanged([in] ::com::sun::star::lang::EventObject aEvent);
3737 module configuration {
3738 published service HierarchyElement {
3739 interface ::com::sun::star::container::XHierarchicalName;
3740 interface ::com::sun::star::container::XNamed;
3741 [optional] interface ::com::sun::star::beans::XProperty;
3742 [optional] interface ::com::sun::star::beans::XPropertyWithState;
3743 [optional] interface ::com::sun::star::container::XChild;
3746 module util {
3747 published interface XChangesListener;
3748 published interface XChangesNotifier {
3749 interface ::com::sun::star::uno::XInterface;
3750 void addChangesListener([in] ::com::sun::star::util::XChangesListener aListener);
3751 void removeChangesListener([in] ::com::sun::star::util::XChangesListener aListener);
3754 module configuration {
3755 published service AccessRootElement {
3756 service ::com::sun::star::configuration::HierarchyElement;
3757 interface ::com::sun::star::lang::XComponent;
3758 interface ::com::sun::star::util::XChangesNotifier;
3759 [optional] interface ::com::sun::star::lang::XLocalizable;
3761 published service AdministrationProvider {
3762 interface ::com::sun::star::lang::XMultiServiceFactory;
3763 interface ::com::sun::star::lang::XComponent;
3765 published exception CannotLoadConfigurationException: ::com::sun::star::uno::Exception {
3767 published service HierarchyAccess {
3768 interface ::com::sun::star::container::XNameAccess;
3769 interface ::com::sun::star::container::XHierarchicalNameAccess;
3770 interface ::com::sun::star::container::XContainer;
3771 interface ::com::sun::star::beans::XExactName;
3772 [optional] interface ::com::sun::star::beans::XPropertySetInfo;
3773 [optional] interface ::com::sun::star::beans::XPropertyState;
3774 [optional] interface ::com::sun::star::beans::XMultiPropertyStates;
3776 published service PropertyHierarchy {
3777 interface ::com::sun::star::beans::XPropertySet;
3778 interface ::com::sun::star::beans::XMultiPropertySet;
3779 interface ::com::sun::star::beans::XHierarchicalPropertySet;
3780 interface ::com::sun::star::beans::XMultiHierarchicalPropertySet;
3782 published service GroupAccess {
3783 service ::com::sun::star::configuration::HierarchyAccess;
3784 service ::com::sun::star::configuration::PropertyHierarchy;
3785 [optional] interface ::com::sun::star::beans::XPropertyState;
3786 [optional] interface ::com::sun::star::beans::XMultiPropertyStates;
3788 published service GroupElement {
3789 service ::com::sun::star::configuration::HierarchyElement;
3790 interface ::com::sun::star::container::XChild;
3792 published interface XTemplateContainer {
3793 interface ::com::sun::star::uno::XInterface;
3794 string getElementTemplateName();
3797 module util {
3798 published interface XStringEscape {
3799 interface ::com::sun::star::uno::XInterface;
3800 string escapeString([in] string aString) raises (::com::sun::star::lang::IllegalArgumentException);
3801 string unescapeString([in] string aEscapedString) raises (::com::sun::star::lang::IllegalArgumentException);
3804 module configuration {
3805 published service SimpleSetAccess {
3806 interface ::com::sun::star::container::XNameAccess;
3807 [optional] interface ::com::sun::star::configuration::XTemplateContainer;
3808 [optional] interface ::com::sun::star::util::XStringEscape;
3809 [optional] interface ::com::sun::star::container::XContainer;
3811 published service SetAccess {
3812 service ::com::sun::star::configuration::HierarchyAccess;
3813 service ::com::sun::star::configuration::SimpleSetAccess;
3814 interface ::com::sun::star::container::XContainer;
3816 published interface XTemplateInstance {
3817 interface ::com::sun::star::uno::XInterface;
3818 string getTemplateName();
3820 published service SetElement {
3821 service ::com::sun::star::configuration::HierarchyElement;
3822 interface ::com::sun::star::container::XChild;
3823 interface ::com::sun::star::lang::XComponent;
3824 interface ::com::sun::star::configuration::XTemplateInstance;
3826 published service ConfigurationAccess {
3827 service ::com::sun::star::configuration::HierarchyAccess;
3828 service ::com::sun::star::configuration::HierarchyElement;
3829 [optional] service ::com::sun::star::configuration::SetAccess;
3830 [optional] service ::com::sun::star::configuration::GroupAccess;
3831 [optional] service ::com::sun::star::configuration::AccessRootElement;
3832 [optional] service ::com::sun::star::configuration::SetElement;
3833 [optional] service ::com::sun::star::configuration::GroupElement;
3835 /** @deprecated */ published service ConfigurationProvider {
3836 interface ::com::sun::star::lang::XMultiServiceFactory;
3837 interface ::com::sun::star::lang::XComponent;
3840 module util {
3841 published interface XFlushListener;
3842 published interface XFlushable {
3843 interface ::com::sun::star::uno::XInterface;
3844 void flush();
3845 void addFlushListener([in] ::com::sun::star::util::XFlushListener l);
3846 void removeFlushListener([in] ::com::sun::star::util::XFlushListener l);
3849 module configuration {
3850 published service ConfigurationRegistry {
3851 interface ::com::sun::star::registry::XSimpleRegistry;
3852 interface ::com::sun::star::util::XFlushable;
3854 published service GroupUpdate {
3855 service ::com::sun::star::configuration::GroupAccess;
3856 interface ::com::sun::star::container::XNameReplace;
3858 published service SimpleSetUpdate {
3859 service ::com::sun::star::configuration::SimpleSetAccess;
3860 interface ::com::sun::star::container::XNameContainer;
3861 [optional] interface ::com::sun::star::lang::XSingleServiceFactory;
3862 [optional] interface ::com::sun::star::lang::XMultiServiceFactory;
3864 published service SetUpdate {
3865 service ::com::sun::star::configuration::SetAccess;
3866 service ::com::sun::star::configuration::SimpleSetUpdate;
3869 module util {
3870 published struct ElementChange {
3871 any Accessor;
3872 any Element;
3873 any ReplacedElement;
3875 published typedef sequence< ::com::sun::star::util::ElementChange > ChangesSet;
3876 published interface XChangesBatch {
3877 interface ::com::sun::star::uno::XInterface;
3878 void commitChanges() raises (::com::sun::star::lang::WrappedTargetException);
3879 boolean hasPendingChanges();
3880 ::com::sun::star::util::ChangesSet getPendingChanges();
3883 module configuration {
3884 published service UpdateRootElement {
3885 service ::com::sun::star::configuration::AccessRootElement;
3886 interface ::com::sun::star::util::XChangesBatch;
3888 published service ConfigurationUpdateAccess {
3889 service ::com::sun::star::configuration::ConfigurationAccess;
3890 [optional] service ::com::sun::star::configuration::SetUpdate;
3891 [optional] service ::com::sun::star::configuration::GroupUpdate;
3892 [optional] service ::com::sun::star::configuration::UpdateRootElement;
3894 published exception CorruptedConfigurationException: ::com::sun::star::uno::RuntimeException {
3895 string Details;
3897 published exception CorruptedUIConfigurationException: ::com::sun::star::configuration::CorruptedConfigurationException {
3900 module util {
3901 published interface XRefreshListener;
3902 published interface XRefreshable {
3903 interface ::com::sun::star::uno::XInterface;
3904 void refresh();
3905 void addRefreshListener([in] ::com::sun::star::util::XRefreshListener l);
3906 void removeRefreshListener([in] ::com::sun::star::util::XRefreshListener l);
3909 module configuration {
3910 published service DefaultProvider {
3911 service ::com::sun::star::configuration::ConfigurationProvider;
3912 [optional] interface ::com::sun::star::util::XRefreshable;
3913 [optional] interface ::com::sun::star::util::XFlushable;
3914 [optional] interface ::com::sun::star::lang::XLocalizable;
3915 [property, optional] boolean EnableAsync;
3917 published exception InstallationIncompleteException: ::com::sun::star::configuration::CannotLoadConfigurationException {
3919 published exception InvalidBootstrapFileException: ::com::sun::star::configuration::CannotLoadConfigurationException {
3920 string BootstrapFileURL;
3922 published exception MissingBootstrapFileException: ::com::sun::star::configuration::CannotLoadConfigurationException {
3923 string BootstrapFileURL;
3925 module backend {
3926 published exception BackendSetupException: ::com::sun::star::configuration::CannotLoadConfigurationException {
3927 any BackendException;
3929 published exception AuthenticationFailedException: ::com::sun::star::configuration::backend::BackendSetupException {
3931 published exception BackendAccessException: ::com::sun::star::lang::WrappedTargetException {
3933 published interface XLayer;
3934 published interface XUpdateHandler;
3935 published interface XBackend {
3936 interface ::com::sun::star::uno::XInterface;
3937 sequence< ::com::sun::star::configuration::backend::XLayer > listOwnLayers([in] string aComponent) raises (::com::sun::star::configuration::backend::BackendAccessException, ::com::sun::star::lang::IllegalArgumentException);
3938 ::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);
3939 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);
3940 ::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);
3942 published interface XBackendEntities {
3943 interface ::com::sun::star::uno::XInterface;
3944 string getOwnerEntity();
3945 string getAdminEntity();
3946 boolean supportsEntity([in] string aEntity) raises (::com::sun::star::configuration::backend::BackendAccessException);
3947 boolean isEqualEntity([in] string aEntity, [in] string aOtherEntity) raises (::com::sun::star::configuration::backend::BackendAccessException, ::com::sun::star::lang::IllegalArgumentException);
3949 published interface XSchema;
3950 published interface XSchemaSupplier {
3951 interface ::com::sun::star::uno::XInterface;
3952 ::com::sun::star::configuration::backend::XSchema getComponentSchema([in] string aComponent) raises (::com::sun::star::configuration::backend::BackendAccessException, ::com::sun::star::lang::IllegalArgumentException);
3954 published service Backend {
3955 interface ::com::sun::star::configuration::backend::XSchemaSupplier;
3956 interface ::com::sun::star::configuration::backend::XBackend;
3957 [optional] interface ::com::sun::star::configuration::backend::XBackendEntities;
3959 published service BackendAdapter {
3960 service ::com::sun::star::configuration::backend::Backend;
3961 interface ::com::sun::star::configuration::backend::XBackendEntities;
3962 [optional] interface ::com::sun::star::lang::XInitialization;
3964 published exception CannotConnectException: ::com::sun::star::configuration::backend::BackendSetupException {
3966 published exception ConnectionLostException: ::com::sun::star::configuration::backend::BackendAccessException {
3968 published exception MalformedDataException: ::com::sun::star::uno::Exception {
3969 any ErrorDetails;
3971 published interface XLayer;
3972 published interface XLayerImporter {
3973 interface ::com::sun::star::uno::XInterface;
3974 ::com::sun::star::configuration::backend::XBackend getTargetBackend();
3975 void setTargetBackend([in] ::com::sun::star::configuration::backend::XBackend aBackend) raises (::com::sun::star::lang::NullPointerException);
3976 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);
3977 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);
3979 published service Importer {
3980 interface ::com::sun::star::configuration::backend::XLayerImporter;
3981 [optional] interface ::com::sun::star::lang::XInitialization;
3983 published service CopyImporter {
3984 service ::com::sun::star::configuration::backend::Importer;
3985 interface ::com::sun::star::lang::XInitialization;
3989 module task {
3990 published interface XJob {
3991 interface ::com::sun::star::uno::XInterface;
3992 any execute([in] sequence< ::com::sun::star::beans::NamedValue > Arguments) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::Exception);
3995 module configuration {
3996 module backend {
3997 published service DataImporter {
3998 interface ::com::sun::star::task::XJob;
4000 published service HierarchyBrowser {
4001 interface ::com::sun::star::task::XJob;
4003 published exception InsufficientAccessRightsException: ::com::sun::star::configuration::backend::BackendAccessException {
4005 published service InteractionHandler {
4006 interface ::com::sun::star::task::XInteractionHandler;
4007 interface ::com::sun::star::lang::XInitialization;
4009 published exception InvalidAuthenticationMechanismException: ::com::sun::star::configuration::backend::BackendSetupException {
4011 published interface XLayerHandler;
4012 published interface XLayer {
4013 interface ::com::sun::star::uno::XInterface;
4014 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);
4016 published interface XLayerHandler;
4017 published interface XCompositeLayer {
4018 interface ::com::sun::star::configuration::backend::XLayer;
4019 sequence< string > listSubLayerIds() raises (::com::sun::star::lang::WrappedTargetException);
4020 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);
4024 module util {
4025 published interface XTimeStamped {
4026 interface ::com::sun::star::uno::XInterface;
4027 string getTimestamp();
4030 module configuration {
4031 module backend {
4032 published service Layer {
4033 interface ::com::sun::star::configuration::backend::XLayer;
4034 [optional] interface ::com::sun::star::configuration::backend::XCompositeLayer;
4035 [optional] interface ::com::sun::star::util::XTimeStamped;
4036 [property, optional, readonly] string URL;
4038 published service LayerFilter {
4039 interface ::com::sun::star::configuration::backend::XLayer;
4040 interface ::com::sun::star::lang::XInitialization;
4042 published struct TemplateIdentifier {
4043 string Name;
4044 string Component;
4046 published interface XUpdateHandler {
4047 interface ::com::sun::star::uno::XInterface;
4048 void startUpdate() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::IllegalAccessException, ::com::sun::star::lang::WrappedTargetException);
4049 void endUpdate() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::IllegalAccessException, ::com::sun::star::lang::WrappedTargetException);
4050 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);
4051 void addOrReplaceNode([in] string aName, [in] short aAttributes) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4052 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);
4053 void endNode() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4054 void removeNode([in] string aName) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4055 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);
4056 void setPropertyValue([in] any aValue) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4057 void setPropertyValueForLocale([in] any aValue, [in] string aLocale) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4058 void resetPropertyValue() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4059 void resetPropertyValueForLocale([in] string aLocale) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4060 void endProperty() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4061 void resetProperty([in] string aName) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4062 void addOrReplaceProperty([in] string aName, [in] short aAttributes, [in] type aType) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4063 void addOrReplacePropertyWithValue([in] string aName, [in] short aAttributes, [in] any aValue) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4064 void removeProperty([in] string aName) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4066 published service LayerUpdateMerger {
4067 interface ::com::sun::star::configuration::backend::XUpdateHandler;
4068 interface ::com::sun::star::lang::XInitialization;
4070 published interface XUpdatableLayer;
4071 published interface XMultiLayerStratum {
4072 interface ::com::sun::star::uno::XInterface;
4073 sequence< string > listLayerIds([in] string aComponent, [in] string aEntity) raises (::com::sun::star::configuration::backend::BackendAccessException, ::com::sun::star::lang::IllegalArgumentException);
4074 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);
4075 ::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);
4076 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);
4077 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);
4078 ::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);
4080 published service SingleBackend {
4081 interface ::com::sun::star::configuration::backend::XSchemaSupplier;
4082 interface ::com::sun::star::configuration::backend::XMultiLayerStratum;
4083 interface ::com::sun::star::configuration::backend::XBackendEntities;
4085 published service LdapSingleBackend {
4086 service ::com::sun::star::configuration::backend::SingleBackend;
4088 published interface XUpdatableLayer;
4089 published interface XSingleLayerStratum {
4090 interface ::com::sun::star::uno::XInterface;
4091 ::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);
4092 ::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);
4094 published service LocalDataImporter {
4095 service ::com::sun::star::configuration::backend::DataImporter;
4097 published service LocalHierarchyBrowser {
4098 service ::com::sun::star::configuration::backend::HierarchyBrowser;
4100 published service LocalSingleBackend {
4101 service ::com::sun::star::configuration::backend::SingleBackend;
4103 published service MergeImporter {
4104 service ::com::sun::star::configuration::backend::Importer;
4106 published constants NodeAttribute {
4107 const short FINALIZED = 256;
4108 const short FUSE = 2048;
4109 const short MANDATORY = 512;
4110 const short MASK = 32512;
4111 const short READONLY = 1024;
4113 published service OfflineBackend {
4114 service ::com::sun::star::configuration::backend::BackendAdapter;
4116 published service OnlineBackend {
4117 service ::com::sun::star::configuration::backend::BackendAdapter;
4119 published interface XSchemaHandler;
4120 published interface XSchema {
4121 interface ::com::sun::star::uno::XInterface;
4122 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);
4123 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);
4124 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);
4126 published service Schema {
4127 interface ::com::sun::star::configuration::backend::XSchema;
4128 [property, optional, readonly] string URL;
4130 published constants SchemaAttribute {
4131 const short EXTENSIBLE = 4;
4132 const short LOCALIZED = 2;
4133 const short MASK = 255;
4134 const short REQUIRED = 1;
4136 published service SingleBackendAdapter {
4137 service ::com::sun::star::configuration::backend::BackendAdapter;
4139 published interface XUpdatableLayer {
4140 interface ::com::sun::star::configuration::backend::XLayer;
4141 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);
4143 published service UpdatableLayer {
4144 service ::com::sun::star::configuration::backend::Layer;
4145 interface ::com::sun::star::configuration::backend::XUpdatableLayer;
4147 published interface XLayerHandler {
4148 interface ::com::sun::star::uno::XInterface;
4149 void startLayer() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4150 void endLayer() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4151 void overrideNode([in] string aName, [in] short aAttributes, [in] boolean bClear) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4152 void addOrReplaceNode([in] string aName, [in] short aAttributes) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4153 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);
4154 void endNode() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4155 void dropNode([in] string aName) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4156 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);
4157 void setPropertyValue([in] any aValue) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4158 void setPropertyValueForLocale([in] any aValue, [in] string aLocale) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4159 void endProperty() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4160 void addProperty([in] string aName, [in] short aAttributes, [in] type aType) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4161 void addPropertyWithValue([in] string aName, [in] short aAttributes, [in] any aValue) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4163 published interface XSchemaHandler {
4164 interface ::com::sun::star::uno::XInterface;
4165 void startSchema() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4166 void endSchema() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4167 void importComponent([in] string aName) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4168 void startComponent([in] string aName) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4169 void endComponent() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4170 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);
4171 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);
4172 void endTemplate() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4173 void startGroup([in] string aName, [in] short aAttributes) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4174 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);
4175 void endNode() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4176 void addProperty([in] string aName, [in] short aAttributes, [in] type aType) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4177 void addPropertyWithDefault([in] string aName, [in] short aAttributes, [in] any aDefaultValue) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4178 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);
4179 void addItemType([in] ::com::sun::star::configuration::backend::TemplateIdentifier aItemType) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4181 module xml {
4182 published service LayerParser {
4183 interface ::com::sun::star::configuration::backend::XLayer;
4184 interface ::com::sun::star::io::XActiveDataSink;
4185 interface ::com::sun::star::lang::XInitialization;
4187 published service LayerWriter {
4188 interface ::com::sun::star::configuration::backend::XLayerHandler;
4189 interface ::com::sun::star::io::XActiveDataSource;
4190 interface ::com::sun::star::lang::XInitialization;
4192 published service SchemaParser {
4193 interface ::com::sun::star::configuration::backend::XSchema;
4194 interface ::com::sun::star::io::XActiveDataSink;
4195 interface ::com::sun::star::lang::XInitialization;
4199 module bootstrap {
4200 /** @deprecated */ published service BootstrapContext {
4201 interface ::com::sun::star::uno::XComponentContext;
4204 published singleton theDefaultProvider: ::com::sun::star::lang::XMultiServiceFactory;
4206 module ui {
4207 module dialogs {
4208 published interface XExecutableDialog {
4209 interface ::com::sun::star::uno::XInterface;
4210 void setTitle([in] string aTitle);
4211 short execute();
4215 module datatransfer {
4216 published struct DataFlavor {
4217 string MimeType;
4218 string HumanPresentableName;
4219 type DataType;
4221 published interface XDataFormatTranslator {
4222 interface ::com::sun::star::uno::XInterface;
4223 any getSystemDataTypeFromDataFlavor([in] ::com::sun::star::datatransfer::DataFlavor aDataFlavor);
4224 ::com::sun::star::datatransfer::DataFlavor getDataFlavorFromSystemDataType([in] any aSysDataType);
4226 published service DataFormatTranslator: ::com::sun::star::datatransfer::XDataFormatTranslator;
4227 published interface XMimeContentType;
4228 published interface XMimeContentTypeFactory {
4229 interface ::com::sun::star::uno::XInterface;
4230 ::com::sun::star::datatransfer::XMimeContentType createMimeContentType([in] string aContentType) raises (::com::sun::star::lang::IllegalArgumentException);
4232 published service MimeContentTypeFactory: ::com::sun::star::datatransfer::XMimeContentTypeFactory;
4233 published exception UnsupportedFlavorException: ::com::sun::star::uno::Exception {
4235 published interface XMimeContentType {
4236 interface ::com::sun::star::uno::XInterface;
4237 string getMediaType();
4238 string getMediaSubtype();
4239 string getFullMediaType();
4240 sequence< string > getParameters();
4241 boolean hasParameter([in] string aName);
4242 string getParameterValue([in] string aName) raises (::com::sun::star::container::NoSuchElementException);
4244 published interface XSystemTransferable {
4245 interface ::com::sun::star::uno::XInterface;
4246 any getData([in] sequence< byte > aProcessId);
4248 published interface XTransferDataAccess {
4249 interface ::com::sun::star::uno::XInterface;
4250 hyper queryDataSize([in] sequence< ::com::sun::star::datatransfer::DataFlavor > aFlavorList);
4251 sequence< any > getData([in] sequence< ::com::sun::star::datatransfer::DataFlavor > aFlavorList);
4253 published interface XTransferable {
4254 interface ::com::sun::star::uno::XInterface;
4255 any getTransferData([in] ::com::sun::star::datatransfer::DataFlavor aFlavor) raises (::com::sun::star::datatransfer::UnsupportedFlavorException, ::com::sun::star::io::IOException);
4256 sequence< ::com::sun::star::datatransfer::DataFlavor > getTransferDataFlavors();
4257 boolean isDataFlavorSupported([in] ::com::sun::star::datatransfer::DataFlavor aFlavor);
4259 published interface XTransferableEx {
4260 interface ::com::sun::star::uno::XInterface;
4261 sequence< ::com::sun::star::datatransfer::DataFlavor > queryTransferDataFlavors([in] sequence< ::com::sun::star::datatransfer::DataFlavor > requestedFlavors);
4263 published interface XTransferableSource {
4264 interface ::com::sun::star::uno::XInterface;
4265 string getDataSourceDescription();
4267 interface XTransferableSupplier {
4268 interface ::com::sun::star::uno::XInterface;
4269 ::com::sun::star::datatransfer::XTransferable getTransferable();
4270 void insertTransferable([in] ::com::sun::star::datatransfer::XTransferable xTrans) raises (::com::sun::star::datatransfer::UnsupportedFlavorException);
4272 module clipboard {
4273 published struct ClipboardEvent: ::com::sun::star::lang::EventObject {
4274 ::com::sun::star::datatransfer::XTransferable Contents;
4276 published interface XClipboard;
4277 published interface XClipboardManager {
4278 interface ::com::sun::star::uno::XInterface;
4279 ::com::sun::star::datatransfer::clipboard::XClipboard getClipboard([in] string aName) raises (::com::sun::star::container::NoSuchElementException);
4280 void addClipboard([in] ::com::sun::star::datatransfer::clipboard::XClipboard xClipboard) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::ElementExistException);
4281 void removeClipboard([in] string aName);
4282 sequence< string > listClipboardNames();
4284 published service ClipboardManager {
4285 interface ::com::sun::star::datatransfer::clipboard::XClipboardManager;
4286 interface ::com::sun::star::lang::XComponent;
4288 published interface XClipboardOwner;
4289 published interface XClipboard {
4290 interface ::com::sun::star::uno::XInterface;
4291 ::com::sun::star::datatransfer::XTransferable getContents();
4292 void setContents([in] ::com::sun::star::datatransfer::XTransferable xTrans, [in] ::com::sun::star::datatransfer::clipboard::XClipboardOwner xClipboardOwner);
4293 string getName();
4295 published interface XClipboardEx {
4296 interface ::com::sun::star::datatransfer::clipboard::XClipboard;
4297 byte getRenderingCapabilities();
4299 published interface XClipboardListener;
4300 published interface XClipboardNotifier {
4301 interface ::com::sun::star::uno::XInterface;
4302 void addClipboardListener([in] ::com::sun::star::datatransfer::clipboard::XClipboardListener listener);
4303 void removeClipboardListener([in] ::com::sun::star::datatransfer::clipboard::XClipboardListener listener);
4305 published service GenericClipboard {
4306 interface ::com::sun::star::datatransfer::clipboard::XClipboardEx;
4307 interface ::com::sun::star::datatransfer::clipboard::XClipboardNotifier;
4308 interface ::com::sun::star::lang::XInitialization;
4309 interface ::com::sun::star::lang::XComponent;
4311 published constants RenderingCapabilities {
4312 const byte Delayed = 1;
4313 const byte Persistant = 2;
4315 published interface XFlushableClipboard {
4316 interface ::com::sun::star::uno::XInterface;
4317 void flushClipboard();
4319 published interface XSystemClipboard {
4320 interface ::com::sun::star::datatransfer::clipboard::XClipboardEx;
4321 interface ::com::sun::star::datatransfer::clipboard::XClipboardNotifier;
4322 interface ::com::sun::star::lang::XComponent;
4323 [optional] interface ::com::sun::star::datatransfer::clipboard::XFlushableClipboard;
4325 published service SystemClipboard: ::com::sun::star::datatransfer::clipboard::XSystemClipboard;
4326 published interface XClipboardFactory {
4327 interface ::com::sun::star::uno::XInterface;
4328 ::com::sun::star::datatransfer::clipboard::XClipboard createClipboard([in] string aName) raises (::com::sun::star::lang::IllegalArgumentException);
4330 published interface XClipboardListener {
4331 interface ::com::sun::star::lang::XEventListener;
4332 void changedContents([in] ::com::sun::star::datatransfer::clipboard::ClipboardEvent event);
4334 published interface XClipboardOwner {
4335 interface ::com::sun::star::uno::XInterface;
4336 void lostOwnership([in] ::com::sun::star::datatransfer::clipboard::XClipboard xClipboard, [in] ::com::sun::star::datatransfer::XTransferable xTrans);
4339 module dnd {
4340 published constants DNDConstants {
4341 const byte ACTION_COPY = 1;
4342 const byte ACTION_COPY_OR_MOVE = 3;
4343 const byte ACTION_DEFAULT = -128;
4344 const byte ACTION_LINK = 4;
4345 const byte ACTION_MOVE = 2;
4346 const byte ACTION_NONE = 0;
4347 const byte ACTION_REFERENCE = 4;
4349 published interface XDragSource;
4350 published struct DragGestureEvent: ::com::sun::star::lang::EventObject {
4351 byte DragAction;
4352 long DragOriginX;
4353 long DragOriginY;
4354 ::com::sun::star::datatransfer::dnd::XDragSource DragSource;
4355 any Event;
4357 published interface XDragSource;
4358 published interface XDragSourceContext;
4359 published struct DragSourceEvent: ::com::sun::star::lang::EventObject {
4360 ::com::sun::star::datatransfer::dnd::XDragSourceContext DragSourceContext;
4361 ::com::sun::star::datatransfer::dnd::XDragSource DragSource;
4363 published struct DragSourceDragEvent: ::com::sun::star::datatransfer::dnd::DragSourceEvent {
4364 byte DropAction;
4365 byte UserAction;
4367 published struct DragSourceDropEvent: ::com::sun::star::datatransfer::dnd::DragSourceEvent {
4368 byte DropAction;
4369 boolean DropSuccess;
4371 published struct DropTargetEvent: ::com::sun::star::lang::EventObject {
4372 byte Dummy;
4374 published interface XDropTargetDragContext;
4375 published struct DropTargetDragEvent: ::com::sun::star::datatransfer::dnd::DropTargetEvent {
4376 ::com::sun::star::datatransfer::dnd::XDropTargetDragContext Context;
4377 byte DropAction;
4378 long LocationX;
4379 long LocationY;
4380 byte SourceActions;
4382 published struct DropTargetDragEnterEvent: ::com::sun::star::datatransfer::dnd::DropTargetDragEvent {
4383 sequence< ::com::sun::star::datatransfer::DataFlavor > SupportedDataFlavors;
4385 published interface XDropTargetDropContext;
4386 published struct DropTargetDropEvent: ::com::sun::star::datatransfer::dnd::DropTargetEvent {
4387 ::com::sun::star::datatransfer::dnd::XDropTargetDropContext Context;
4388 byte DropAction;
4389 long LocationX;
4390 long LocationY;
4391 byte SourceActions;
4392 ::com::sun::star::datatransfer::XTransferable Transferable;
4394 published exception InvalidDNDOperationException: ::com::sun::star::uno::RuntimeException {
4396 published interface XDragSourceListener;
4397 published interface XDragSource {
4398 interface ::com::sun::star::uno::XInterface;
4399 boolean isDragImageSupported();
4400 long getDefaultCursor([in] byte dragAction) raises (::com::sun::star::lang::IllegalArgumentException);
4401 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);
4403 published service OleDragSource {
4404 interface ::com::sun::star::datatransfer::dnd::XDragSource;
4405 interface ::com::sun::star::lang::XInitialization;
4406 interface ::com::sun::star::lang::XComponent;
4408 published interface XDropTargetListener;
4409 published interface XDropTarget {
4410 interface ::com::sun::star::uno::XInterface;
4411 void addDropTargetListener([in] ::com::sun::star::datatransfer::dnd::XDropTargetListener dtl);
4412 void removeDropTargetListener([in] ::com::sun::star::datatransfer::dnd::XDropTargetListener dtl);
4413 boolean isActive();
4414 void setActive([in] boolean active);
4415 byte getDefaultActions();
4416 void setDefaultActions([in] byte actions);
4418 published service OleDropTarget {
4419 interface ::com::sun::star::datatransfer::dnd::XDropTarget;
4420 interface ::com::sun::star::lang::XInitialization;
4421 interface ::com::sun::star::lang::XComponent;
4423 published service X11DragSource {
4424 interface ::com::sun::star::datatransfer::dnd::XDragSource;
4425 interface ::com::sun::star::lang::XInitialization;
4426 interface ::com::sun::star::lang::XComponent;
4428 published service X11DropTarget {
4429 interface ::com::sun::star::datatransfer::dnd::XDropTarget;
4430 interface ::com::sun::star::lang::XInitialization;
4431 interface ::com::sun::star::lang::XComponent;
4433 published interface XAutoscroll {
4434 interface ::com::sun::star::uno::XInterface;
4435 void autoscroll([in] long cursorLocationX, [in] long cursorLocationY);
4436 any getAutoscrollRegion();
4438 published interface XDragGestureListener {
4439 interface ::com::sun::star::lang::XEventListener;
4440 void dragGestureRecognized([in] ::com::sun::star::datatransfer::dnd::DragGestureEvent dge);
4442 published interface XDragGestureRecognizer {
4443 interface ::com::sun::star::uno::XInterface;
4444 void addDragGestureListener([in] ::com::sun::star::datatransfer::dnd::XDragGestureListener dgl);
4445 void removeDragGestureListener([in] ::com::sun::star::datatransfer::dnd::XDragGestureListener dgl);
4446 void resetRecognizer();
4448 published interface XDragSourceContext {
4449 interface ::com::sun::star::uno::XInterface;
4450 long getCurrentCursor();
4451 void setCursor([in] long cursorId);
4452 void setImage([in] long imageId);
4453 void transferablesFlavorsChanged();
4455 published interface XDragSourceListener {
4456 interface ::com::sun::star::lang::XEventListener;
4457 void dragDropEnd([in] ::com::sun::star::datatransfer::dnd::DragSourceDropEvent dsde);
4458 void dragEnter([in] ::com::sun::star::datatransfer::dnd::DragSourceDragEvent dsde);
4459 void dragExit([in] ::com::sun::star::datatransfer::dnd::DragSourceEvent dse);
4460 void dragOver([in] ::com::sun::star::datatransfer::dnd::DragSourceDragEvent dsde);
4461 void dropActionChanged([in] ::com::sun::star::datatransfer::dnd::DragSourceDragEvent dsde);
4463 published interface XDropTargetDragContext {
4464 interface ::com::sun::star::uno::XInterface;
4465 void acceptDrag([in] byte dragOperation);
4466 void rejectDrag();
4468 published interface XDropTargetDropContext {
4469 interface ::com::sun::star::uno::XInterface;
4470 void acceptDrop([in] byte dragOperation);
4471 void rejectDrop();
4472 void dropComplete([in] boolean success);
4474 published interface XDropTargetListener {
4475 interface ::com::sun::star::lang::XEventListener;
4476 void drop([in] ::com::sun::star::datatransfer::dnd::DropTargetDropEvent dtde);
4477 void dragEnter([in] ::com::sun::star::datatransfer::dnd::DropTargetDragEnterEvent dtdee);
4478 void dragExit([in] ::com::sun::star::datatransfer::dnd::DropTargetEvent dte);
4479 void dragOver([in] ::com::sun::star::datatransfer::dnd::DropTargetDragEvent dtde);
4480 void dropActionChanged([in] ::com::sun::star::datatransfer::dnd::DropTargetDragEvent dtde);
4484 module ucb {
4485 published exception CommandAbortedException: ::com::sun::star::uno::Exception {
4487 published exception CommandFailedException: ::com::sun::star::uno::Exception {
4488 any Reason;
4490 published enum ContentCreationError {
4491 UNKNOWN = 0,
4492 /** @deprecated */ NO_CONTENT_BROKER = 1,
4493 /** @deprecated */ NO_IDENTIFIER_FACTORY = 2,
4494 IDENTIFIER_CREATION_FAILED = 3,
4495 NO_CONTENT_PROVIDER = 4,
4496 CONTENT_CREATION_FAILED = 5
4498 published exception ContentCreationException: ::com::sun::star::uno::Exception {
4499 ::com::sun::star::ucb::ContentCreationError eError;
4501 published interface XProgressHandler;
4502 published interface XCommandEnvironment {
4503 interface ::com::sun::star::uno::XInterface;
4504 ::com::sun::star::task::XInteractionHandler getInteractionHandler();
4505 ::com::sun::star::ucb::XProgressHandler getProgressHandler();
4508 module document {
4509 published exception AmbigousFilterRequest: ::com::sun::star::uno::Exception {
4510 string URL;
4511 string SelectedFilter;
4512 string DetectedFilter;
4514 published exception BrokenPackageRequest: ::com::sun::star::uno::Exception {
4515 string aName;
4517 published exception ChangedByOthersRequest: ::com::sun::star::uno::Exception {
4519 published exception CorruptedFilterConfigurationException: ::com::sun::star::uno::RuntimeException {
4520 string Details;
4523 module embed {
4524 published interface XStorage;
4526 module document {
4527 published interface XDocumentProperties {
4528 interface ::com::sun::star::uno::XInterface;
4529 [attribute] string Author;
4530 [attribute] string Generator;
4531 [attribute] ::com::sun::star::util::DateTime CreationDate;
4532 [attribute] string Title;
4533 [attribute] string Subject;
4534 [attribute] string Description;
4535 [attribute] sequence< string > Keywords;
4536 [attribute] ::com::sun::star::lang::Locale Language;
4537 [attribute] string ModifiedBy;
4538 [attribute] ::com::sun::star::util::DateTime ModificationDate;
4539 [attribute] string PrintedBy;
4540 [attribute] ::com::sun::star::util::DateTime PrintDate;
4541 [attribute] string TemplateName;
4542 [attribute] string TemplateURL;
4543 [attribute] ::com::sun::star::util::DateTime TemplateDate;
4544 [attribute] string AutoloadURL;
4545 [attribute] long AutoloadSecs {
4546 set raises (::com::sun::star::lang::IllegalArgumentException);
4548 [attribute] string DefaultTarget;
4549 [attribute] sequence< ::com::sun::star::beans::NamedValue > DocumentStatistics;
4550 [attribute] short EditingCycles {
4551 set raises (::com::sun::star::lang::IllegalArgumentException);
4553 [attribute] long EditingDuration {
4554 set raises (::com::sun::star::lang::IllegalArgumentException);
4556 void resetUserData([in] string Author);
4557 ::com::sun::star::beans::XPropertyContainer getUserDefinedProperties();
4558 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);
4559 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);
4560 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);
4561 void storeToMedium([in] string URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Medium) raises (::com::sun::star::lang::WrappedTargetException, ::com::sun::star::io::IOException);
4563 published service DocumentProperties: ::com::sun::star::document::XDocumentProperties {
4564 create();
4566 published service EventDescriptor {
4567 [property] string EventType;
4568 [property] string Script;
4570 /** @deprecated */ published struct EventObject: ::com::sun::star::lang::EventObject {
4571 string EventName;
4573 published service Events {
4574 interface ::com::sun::star::container::XNameReplace;
4576 published interface XExporter {
4577 interface ::com::sun::star::uno::XInterface;
4578 void setSourceDocument([in] ::com::sun::star::lang::XComponent Document) raises (::com::sun::star::lang::IllegalArgumentException);
4580 published interface XFilter {
4581 interface ::com::sun::star::uno::XInterface;
4582 boolean filter([in] sequence< ::com::sun::star::beans::PropertyValue > aDescriptor);
4583 void cancel();
4585 published service ExportFilter {
4586 interface ::com::sun::star::document::XExporter;
4587 interface ::com::sun::star::document::XFilter;
4588 [optional] interface ::com::sun::star::lang::XInitialization;
4589 [optional] interface ::com::sun::star::container::XNamed;
4591 published interface XExtendedFilterDetection {
4592 interface ::com::sun::star::uno::XInterface;
4593 string detect([inout] sequence< ::com::sun::star::beans::PropertyValue > Descriptor);
4595 published service ExtendedTypeDetection {
4596 interface ::com::sun::star::document::XExtendedFilterDetection;
4598 published service ExtendedTypeDetectionFactory {
4599 interface ::com::sun::star::lang::XMultiServiceFactory;
4600 interface ::com::sun::star::container::XNameAccess;
4601 [optional] interface ::com::sun::star::container::XNameContainer;
4602 [optional] interface ::com::sun::star::container::XContainerQuery;
4603 [optional] interface ::com::sun::star::util::XFlushable;
4605 published interface XFilterAdapter {
4606 interface ::com::sun::star::uno::XInterface;
4607 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);
4609 published service FilterAdapter {
4610 interface ::com::sun::star::document::XFilterAdapter;
4612 published service FilterFactory {
4613 interface ::com::sun::star::lang::XMultiServiceFactory;
4614 interface ::com::sun::star::container::XNameAccess;
4615 interface ::com::sun::star::container::XContainerQuery;
4616 [optional] interface ::com::sun::star::container::XNameContainer;
4617 [optional] interface ::com::sun::star::util::XFlushable;
4619 published exception FilterOptionsRequest: ::com::sun::star::uno::Exception {
4620 ::com::sun::star::frame::XModel rModel;
4621 sequence< ::com::sun::star::beans::PropertyValue > rProperties;
4623 published interface XGraphicObjectResolver {
4624 interface ::com::sun::star::uno::XInterface;
4625 string resolveGraphicObjectURL([in] string aURL);
4627 published service HeaderFooterSettings {
4628 interface ::com::sun::star::beans::XPropertySet;
4629 [property, optional] boolean IsPrintPageName;
4630 [property, optional] boolean IsPrintDate;
4631 [property, optional] boolean IsPrintTime;
4633 published interface XImporter {
4634 interface ::com::sun::star::uno::XInterface;
4635 void setTargetDocument([in] ::com::sun::star::lang::XComponent Document) raises (::com::sun::star::lang::IllegalArgumentException);
4637 published service ImportFilter {
4638 interface ::com::sun::star::document::XImporter;
4639 interface ::com::sun::star::document::XFilter;
4640 [optional] interface ::com::sun::star::lang::XInitialization;
4641 [optional] interface ::com::sun::star::container::XNamed;
4643 published interface XLinkTargetSupplier {
4644 interface ::com::sun::star::uno::XInterface;
4645 ::com::sun::star::container::XNameAccess getLinks();
4647 published service LinkTarget {
4648 interface ::com::sun::star::beans::XPropertySet;
4649 [optional] interface ::com::sun::star::document::XLinkTargetSupplier;
4650 [property, readonly] string LinkDisplayName;
4652 published service LinkTargets {
4653 interface ::com::sun::star::container::XNameAccess;
4655 published constants LinkUpdateModes {
4656 const long AUTO = 2;
4657 const long GLOBAL_SETTING = 3;
4658 const long MANUAL = 1;
4659 const long NEVER = 0;
4661 published exception LockFileIgnoreRequest: ::com::sun::star::io::IOException {
4663 published exception LockedDocumentRequest: ::com::sun::star::uno::Exception {
4664 string DocumentURL;
4665 string UserInfo;
4667 published exception LockedOnSavingRequest: ::com::sun::star::uno::Exception {
4668 string DocumentURL;
4669 string UserInfo;
4671 published constants MacroExecMode {
4672 const short ALWAYS_EXECUTE = 2;
4673 const short ALWAYS_EXECUTE_NO_WARN = 4;
4674 const short FROM_LIST = 1;
4675 const short FROM_LIST_AND_SIGNED_NO_WARN = 9;
4676 const short FROM_LIST_AND_SIGNED_WARN = 8;
4677 const short FROM_LIST_NO_WARN = 7;
4678 const short NEVER_EXECUTE = 0;
4679 const short USE_CONFIG = 3;
4680 const short USE_CONFIG_APPROVE_CONFIRMATION = 6;
4681 const short USE_CONFIG_REJECT_CONFIRMATION = 5;
4683 published exception NoSuchFilterRequest: ::com::sun::star::uno::Exception {
4684 string URL;
4687 module xml {
4688 module sax {
4689 published exception SAXException: ::com::sun::star::uno::Exception {
4690 any WrappedException;
4694 module document {
4695 interface XDocumentEventListener;
4697 module frame {
4698 interface XController2;
4700 module document {
4701 interface XDocumentEventBroadcaster {
4702 interface ::com::sun::star::uno::XInterface;
4703 void addDocumentEventListener([in] ::com::sun::star::document::XDocumentEventListener Listener);
4704 void removeDocumentEventListener([in] ::com::sun::star::document::XDocumentEventListener Listener);
4705 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);
4707 published interface XDocumentPropertiesSupplier {
4708 interface ::com::sun::star::uno::XInterface;
4709 ::com::sun::star::document::XDocumentProperties getDocumentProperties();
4712 module script {
4713 interface XStorageBasedLibraryContainer;
4715 module document {
4716 interface XEmbeddedScripts {
4717 interface ::com::sun::star::uno::XInterface;
4718 [attribute, readonly] ::com::sun::star::script::XStorageBasedLibraryContainer BasicLibraries;
4719 [attribute, readonly] ::com::sun::star::script::XStorageBasedLibraryContainer DialogLibraries;
4720 [attribute, readonly] boolean AllowMacroExecution;
4722 published interface XEventListener;
4723 /** @deprecated */ published interface XEventBroadcaster {
4724 interface ::com::sun::star::uno::XInterface;
4725 void addEventListener([in] ::com::sun::star::document::XEventListener Listener);
4726 void removeEventListener([in] ::com::sun::star::document::XEventListener Listener);
4728 published interface XEventsSupplier {
4729 interface ::com::sun::star::uno::XInterface;
4730 ::com::sun::star::container::XNameReplace getEvents();
4732 interface XUndoManager;
4733 interface XUndoManagerSupplier {
4734 interface ::com::sun::star::uno::XInterface;
4735 ::com::sun::star::document::XUndoManager getUndoManager();
4737 published interface XViewDataSupplier {
4738 interface ::com::sun::star::uno::XInterface;
4739 ::com::sun::star::container::XIndexAccess getViewData();
4740 void setViewData([in] ::com::sun::star::container::XIndexAccess Data);
4743 module frame {
4744 published interface XStorable {
4745 interface ::com::sun::star::uno::XInterface;
4746 boolean hasLocation();
4747 string getLocation();
4748 boolean isReadonly();
4749 void store() raises (::com::sun::star::io::IOException);
4750 void storeAsURL([in] string sURL, [in] sequence< ::com::sun::star::beans::PropertyValue > lArguments) raises (::com::sun::star::io::IOException);
4751 void storeToURL([in] string sURL, [in] sequence< ::com::sun::star::beans::PropertyValue > lArguments) raises (::com::sun::star::io::IOException);
4754 module util {
4755 published interface XModifiable {
4756 interface ::com::sun::star::util::XModifyBroadcaster;
4757 boolean isModified();
4758 void setModified([in] boolean bModified) raises (::com::sun::star::beans::PropertyVetoException);
4761 module view {
4762 published interface XPrintJobListener;
4763 published interface XPrintJobBroadcaster {
4764 interface ::com::sun::star::uno::XInterface;
4765 void addPrintJobListener([in] ::com::sun::star::view::XPrintJobListener xListener);
4766 void removePrintJobListener([in] ::com::sun::star::view::XPrintJobListener xListener);
4768 published interface XPrintable {
4769 interface ::com::sun::star::uno::XInterface;
4770 sequence< ::com::sun::star::beans::PropertyValue > getPrinter();
4771 void setPrinter([in] sequence< ::com::sun::star::beans::PropertyValue > aPrinter) raises (::com::sun::star::lang::IllegalArgumentException);
4772 void print([in] sequence< ::com::sun::star::beans::PropertyValue > xOptions) raises (::com::sun::star::lang::IllegalArgumentException);
4775 module document {
4776 published service OfficeDocument {
4777 interface ::com::sun::star::frame::XModel;
4778 interface ::com::sun::star::util::XModifiable;
4779 interface ::com::sun::star::frame::XStorable;
4780 interface ::com::sun::star::view::XPrintable;
4781 /** @deprecated */ [optional] interface ::com::sun::star::document::XEventBroadcaster;
4782 [optional] interface ::com::sun::star::document::XDocumentEventBroadcaster;
4783 [optional] interface ::com::sun::star::document::XEventsSupplier;
4784 [optional] interface ::com::sun::star::document::XViewDataSupplier;
4785 [optional] interface ::com::sun::star::view::XPrintJobBroadcaster;
4786 [optional] interface ::com::sun::star::document::XEmbeddedScripts;
4787 [optional] interface ::com::sun::star::document::XDocumentPropertiesSupplier;
4788 [optional] interface ::com::sun::star::document::XUndoManagerSupplier;
4789 [property, optional] boolean AutomaticControlFocus;
4790 [property, optional] boolean ApplyFormDesignMode;
4791 [property, optional, readonly] string RuntimeUID;
4792 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > InteropGrabBag;
4794 published service OleEmbeddedServerRegistration: ::com::sun::star::uno::XInterface;
4795 published exception OwnLockOnDocumentRequest: ::com::sun::star::uno::Exception {
4796 string DocumentURL;
4797 string TimeInfo;
4798 boolean IsStoring;
4801 module ui {
4802 module dialogs {
4803 published service FilterOptionsDialog {
4804 interface ::com::sun::star::beans::XPropertyAccess;
4805 interface ::com::sun::star::ui::dialogs::XExecutableDialog;
4809 module document {
4810 published constants PrinterIndependentLayout {
4811 const short DISABLED = 1;
4812 /** @deprecated */ const short ENABLED = 2;
4813 const short HIGH_RESOLUTION = 3;
4814 const short LOW_RESOLUTION = 2;
4816 published constants RedlineDisplayType {
4817 const short INSERTED = 1;
4818 const short INSERTED_AND_REMOVED = 2;
4819 const short NONE = 0;
4820 const short REMOVED = 3;
4823 module i18n {
4824 published interface XForbiddenCharacters;
4826 module document {
4827 published service Settings {
4828 interface ::com::sun::star::beans::XPropertySet;
4829 [property, optional] ::com::sun::star::i18n::XForbiddenCharacters ForbiddenCharacters;
4830 [property, optional] short LinkUpdateMode;
4831 [property] string PrinterName;
4832 [property] sequence< byte > PrinterSetup;
4833 [property, optional] boolean IsKernAsianPunctuation;
4834 [property, optional] short CharacterCompressionType;
4835 [property, optional] boolean ApplyUserData;
4836 [property, optional] boolean SaveVersionOnClose;
4837 [property, optional] boolean UpdateFromTemplate;
4838 [property, optional] boolean FieldAutoUpdate;
4839 [property, optional] string CurrentDatabaseDataSource;
4840 [property, optional] string CurrentDatabaseCommand;
4841 [property, optional] long CurrentDatabaseCommandType;
4842 [property, optional] long DefaultTabStop;
4843 [property, optional] boolean IsPrintBooklet;
4844 [property, optional] boolean IsPrintBookletFront;
4845 [property, optional] boolean IsPrintBookletBack;
4846 [property, optional] long PrintQuality;
4847 [property, optional] string ColorTableURL;
4848 [property, optional] string DashTableURL;
4849 [property, optional] string LineEndTableURL;
4850 [property, optional] string HatchTableURL;
4851 [property, optional] string GradientTableURL;
4852 [property, optional] string BitmapTableURL;
4853 [property, optional] boolean AutoCalculate;
4854 [property, optional] short PrinterIndependentLayout;
4855 [property, optional] boolean AddExternalLeading;
4856 [property, optional] boolean EmbedFonts;
4857 [property, optional] boolean EmbedSystemFonts;
4859 published interface XTypeDetection {
4860 interface ::com::sun::star::uno::XInterface;
4861 string queryTypeByURL([in] string URL);
4862 string queryTypeByDescriptor([inout] sequence< ::com::sun::star::beans::PropertyValue > Descriptor, [in] boolean AllowDeep);
4864 published service TypeDetection {
4865 interface ::com::sun::star::document::XTypeDetection;
4866 interface ::com::sun::star::container::XNameAccess;
4867 [optional] interface ::com::sun::star::container::XNameContainer;
4868 [optional] interface ::com::sun::star::container::XContainerQuery;
4869 [optional] interface ::com::sun::star::util::XFlushable;
4871 published constants UpdateDocMode {
4872 const short ACCORDING_TO_CONFIG = 2;
4873 const short FULL_UPDATE = 3;
4874 const short NO_UPDATE = 0;
4875 const short QUIET_UPDATE = 1;
4877 published interface XActionLockable {
4878 interface ::com::sun::star::uno::XInterface;
4879 boolean isActionLocked();
4880 void addActionLock();
4881 void removeActionLock();
4882 void setActionLocks([in] short nLock);
4883 short resetActionLocks();
4885 published interface XBinaryStreamResolver {
4886 interface ::com::sun::star::uno::XInterface;
4887 ::com::sun::star::io::XInputStream getInputStream([in] string aURL);
4888 ::com::sun::star::io::XOutputStream createOutputStream();
4889 string resolveOutputStream([in] ::com::sun::star::io::XOutputStream aBinaryStream);
4891 published interface XDocumentInsertable {
4892 interface ::com::sun::star::uno::XInterface;
4893 void insertDocumentFromURL([in] string aURL, [in] sequence< ::com::sun::star::beans::PropertyValue > aOptions) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::io::IOException);
4895 published interface XEmbeddedObjectResolver {
4896 interface ::com::sun::star::uno::XInterface;
4897 string resolveEmbeddedObjectURL([in] string aURL);
4899 published interface XEmbeddedObjectSupplier {
4900 interface ::com::sun::star::uno::XInterface;
4901 ::com::sun::star::lang::XComponent getEmbeddedObject();
4903 /** @deprecated */ published interface XEventListener {
4904 interface ::com::sun::star::lang::XEventListener;
4905 void notifyEvent([in] ::com::sun::star::document::EventObject Event);
4907 published interface XInteractionFilterOptions {
4908 interface ::com::sun::star::task::XInteractionContinuation;
4909 void setFilterOptions([in] sequence< ::com::sun::star::beans::PropertyValue > rProperties);
4910 sequence< ::com::sun::star::beans::PropertyValue > getFilterOptions();
4912 published interface XInteractionFilterSelect {
4913 interface ::com::sun::star::task::XInteractionContinuation;
4914 void setFilter([in] string Name);
4915 string getFilter();
4917 published interface XXMLBasicExporter {
4918 interface ::com::sun::star::document::XExporter;
4919 interface ::com::sun::star::document::XFilter;
4922 module xml {
4923 module sax {
4924 published interface XDocumentHandler;
4927 module document {
4928 published service XMLBasicExporter: ::com::sun::star::document::XXMLBasicExporter {
4929 createWithHandler([in] ::com::sun::star::xml::sax::XDocumentHandler DocumentHandler);
4932 module xml {
4933 module sax {
4934 published interface XAttributeList;
4935 published interface XLocator;
4936 published interface XDocumentHandler {
4937 interface ::com::sun::star::uno::XInterface;
4938 void startDocument() raises (::com::sun::star::xml::sax::SAXException);
4939 void endDocument() raises (::com::sun::star::xml::sax::SAXException);
4940 void startElement([in] string aName, [in] ::com::sun::star::xml::sax::XAttributeList xAttribs) raises (::com::sun::star::xml::sax::SAXException);
4941 void endElement([in] string aName) raises (::com::sun::star::xml::sax::SAXException);
4942 void characters([in] string aChars) raises (::com::sun::star::xml::sax::SAXException);
4943 void ignorableWhitespace([in] string aWhitespaces) raises (::com::sun::star::xml::sax::SAXException);
4944 void processingInstruction([in] string aTarget, [in] string aData) raises (::com::sun::star::xml::sax::SAXException);
4945 void setDocumentLocator([in] ::com::sun::star::xml::sax::XLocator xLocator) raises (::com::sun::star::xml::sax::SAXException);
4949 module document {
4950 published service XMLBasicImporter {
4951 interface ::com::sun::star::document::XImporter;
4952 interface ::com::sun::star::xml::sax::XDocumentHandler;
4954 published service XMLOasisBasicExporter: ::com::sun::star::document::XXMLBasicExporter {
4955 createWithHandler([in] ::com::sun::star::xml::sax::XDocumentHandler DocumentHandler);
4957 published interface XXMLOasisBasicImporter {
4958 interface ::com::sun::star::document::XImporter;
4959 interface ::com::sun::star::xml::sax::XDocumentHandler;
4961 published service XMLOasisBasicImporter: ::com::sun::star::document::XXMLOasisBasicImporter;
4962 published interface XMimeTypeInfo {
4963 interface ::com::sun::star::uno::XInterface;
4964 boolean supportsMimeType([in] string MimeTypeName);
4965 sequence< string > getSupportedMimeTypeNames();
4967 published interface XRedlinesSupplier {
4968 interface ::com::sun::star::uno::XInterface;
4969 ::com::sun::star::container::XEnumerationAccess getRedlines();
4972 module frame {
4973 published exception DoubleInitializationException: ::com::sun::star::uno::Exception {
4976 module drawing {
4977 published service AppletShape {
4978 service ::com::sun::star::drawing::Shape;
4979 [property] string AppletCodeBase;
4980 [property] string AppletName;
4981 [property] string AppletCode;
4982 [property] sequence< ::com::sun::star::beans::PropertyValue > AppletCommands;
4983 [property, readonly] boolean AppletIsScript;
4985 /** @deprecated */ published enum Arrangement {
4986 FRONT = 0,
4987 MORE_FRONT = 1,
4988 MORE_BACK = 2,
4989 BACK = 3
4991 published service Background {
4992 service ::com::sun::star::drawing::FillProperties;
4994 /** @deprecated */ published struct BezierPoint {
4995 ::com::sun::star::awt::Point Position;
4996 ::com::sun::star::awt::Point ControlPoint1;
4997 ::com::sun::star::awt::Point ControlPoint2;
4999 published service BitmapTable {
5000 interface ::com::sun::star::container::XNameContainer;
5002 published struct Position3D {
5003 double PositionX;
5004 double PositionY;
5005 double PositionZ;
5007 published struct BoundVolume {
5008 ::com::sun::star::drawing::Position3D min;
5009 ::com::sun::star::drawing::Position3D max;
5011 published struct CameraGeometry {
5012 ::com::sun::star::drawing::Position3D vrp;
5013 ::com::sun::star::drawing::Direction3D vpn;
5014 ::com::sun::star::drawing::Direction3D vup;
5016 published constants CaptionEscapeDirection {
5017 const short auto = 2;
5018 const short horizontal = 0;
5019 const short vertical = 1;
5021 /** @deprecated */ published service RotationDescriptor {
5022 /** @deprecated */ [property] long RotateAngle;
5023 /** @deprecated */ [property, optional] long ShearAngle;
5025 published service ShadowProperties {
5026 [property] boolean Shadow;
5027 [property] ::com::sun::star::util::Color ShadowColor;
5028 [property] short ShadowTransparence;
5029 [property] long ShadowXDistance;
5030 [property] long ShadowYDistance;
5032 published enum TextAnimationDirection {
5033 LEFT = 0,
5034 RIGHT = 1,
5035 UP = 2,
5036 DOWN = 3
5038 published enum TextAnimationKind {
5039 NONE = 0,
5040 BLINK = 1,
5041 SCROLL = 2,
5042 ALTERNATE = 3,
5043 SLIDE = 4
5045 published enum TextFitToSizeType {
5046 NONE = 0,
5047 PROPORTIONAL = 1,
5048 ALLLINES = 2,
5049 AUTOFIT = 3
5051 published enum TextHorizontalAdjust {
5052 LEFT = 0,
5053 CENTER = 1,
5054 RIGHT = 2,
5055 BLOCK = 3
5057 published enum TextVerticalAdjust {
5058 TOP = 0,
5059 CENTER = 1,
5060 BOTTOM = 2,
5061 BLOCK = 3
5064 module style {
5065 published service ParagraphPropertiesAsian {
5066 [property] boolean ParaIsHangingPunctuation;
5067 [property] boolean ParaIsCharacterDistance;
5068 [property] boolean ParaIsForbiddenRules;
5070 published service ParagraphPropertiesComplex {
5071 [property] short WritingMode;
5074 module text {
5075 /** @deprecated */ published enum WritingMode {
5076 LR_TB = 0,
5077 RL_TB = 1,
5078 TB_RL = 2
5081 module drawing {
5082 published service TextProperties {
5083 service ::com::sun::star::style::CharacterProperties;
5084 service ::com::sun::star::style::ParagraphProperties;
5085 [optional] service ::com::sun::star::style::CharacterPropertiesAsian;
5086 [optional] service ::com::sun::star::style::CharacterPropertiesComplex;
5087 [optional] service ::com::sun::star::style::ParagraphPropertiesAsian;
5088 [optional] service ::com::sun::star::style::ParagraphPropertiesComplex;
5089 [property, optional] boolean IsNumbering;
5090 [property, optional] ::com::sun::star::container::XIndexReplace NumberingRules;
5091 [property] boolean TextAutoGrowHeight;
5092 [property] boolean TextAutoGrowWidth;
5093 [property] boolean TextContourFrame;
5094 [property] ::com::sun::star::drawing::TextFitToSizeType TextFitToSize;
5095 [property] ::com::sun::star::drawing::TextHorizontalAdjust TextHorizontalAdjust;
5096 [property] ::com::sun::star::drawing::TextVerticalAdjust TextVerticalAdjust;
5097 [property] long TextLeftDistance;
5098 [property] long TextRightDistance;
5099 [property] long TextUpperDistance;
5100 [property] long TextLowerDistance;
5101 [property] long TextMaximumFrameHeight;
5102 [property] long TextMaximumFrameWidth;
5103 [property] long TextMinimumFrameHeight;
5104 [property] long TextMinimumFrameWidth;
5105 [property] short TextAnimationAmount;
5106 [property] short TextAnimationCount;
5107 [property] short TextAnimationDelay;
5108 [property] ::com::sun::star::drawing::TextAnimationDirection TextAnimationDirection;
5109 [property] ::com::sun::star::drawing::TextAnimationKind TextAnimationKind;
5110 [property] boolean TextAnimationStartInside;
5111 [property] boolean TextAnimationStopInside;
5112 [property] ::com::sun::star::text::WritingMode TextWritingMode;
5115 module text {
5116 published interface XText;
5117 published interface XTextRange {
5118 interface ::com::sun::star::uno::XInterface;
5119 ::com::sun::star::text::XText getText();
5120 ::com::sun::star::text::XTextRange getStart();
5121 ::com::sun::star::text::XTextRange getEnd();
5122 string getString();
5123 void setString([in] string aString);
5125 published interface XTextCursor;
5126 published interface XSimpleText {
5127 interface ::com::sun::star::text::XTextRange;
5128 ::com::sun::star::text::XTextCursor createTextCursor();
5129 ::com::sun::star::text::XTextCursor createTextCursorByRange([in] ::com::sun::star::text::XTextRange aTextPosition);
5130 void insertString([in] ::com::sun::star::text::XTextRange xRange, [in] string aString, [in] boolean bAbsorb);
5131 void insertControlCharacter([in] ::com::sun::star::text::XTextRange xRange, [in] short nControlCharacter, [in] boolean bAbsorb) raises (::com::sun::star::lang::IllegalArgumentException);
5133 published interface XTextContent;
5134 published interface XText {
5135 interface ::com::sun::star::text::XSimpleText;
5136 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);
5137 void removeTextContent([in] ::com::sun::star::text::XTextContent xContent) raises (::com::sun::star::container::NoSuchElementException);
5140 module drawing {
5141 published service Text {
5142 service ::com::sun::star::drawing::TextProperties;
5143 interface ::com::sun::star::text::XText;
5145 published service CaptionShape {
5146 service ::com::sun::star::drawing::Shape;
5147 service ::com::sun::star::drawing::FillProperties;
5148 service ::com::sun::star::drawing::LineProperties;
5149 service ::com::sun::star::drawing::ShadowProperties;
5150 service ::com::sun::star::drawing::Text;
5151 service ::com::sun::star::drawing::RotationDescriptor;
5152 [property] long CornerRadius;
5153 [property] ::com::sun::star::awt::Point CaptionPoint;
5154 [property] short CaptionType;
5155 [property] boolean CaptionIsFixedAngle;
5156 [property] long CaptionAngle;
5157 [property] long CaptionGap;
5158 [property] long CaptionEscapeDirection;
5159 [property] boolean CaptionIsEscapeRelative;
5160 [property] long CaptionEscapeRelative;
5161 [property] long CaptionEscapeAbsolute;
5162 [property] long CaptionLineLength;
5163 [property] boolean CaptionIsFitLineLength;
5165 published constants CaptionType {
5166 const short angled = 1;
5167 const short connector = 2;
5168 const short straight = 0;
5170 published enum CircleKind {
5171 FULL = 0,
5172 SECTION = 1,
5173 CUT = 2,
5174 ARC = 3
5176 published enum PolygonKind {
5177 LINE = 0,
5178 POLY = 1,
5179 PLIN = 2,
5180 PATHLINE = 3,
5181 PATHFILL = 4,
5182 FREELINE = 5,
5183 FREEFILL = 6,
5184 PATHPOLY = 7,
5185 PATHPLIN = 8
5187 published service PolyPolygonBezierDescriptor {
5188 [property, readonly] ::com::sun::star::drawing::PolygonKind PolygonKind;
5189 [property] ::com::sun::star::drawing::PolyPolygonBezierCoords PolyPolygonBezier;
5190 [property] ::com::sun::star::drawing::PolyPolygonBezierCoords Geometry;
5192 published service ClosedBezierShape {
5193 service ::com::sun::star::drawing::Shape;
5194 service ::com::sun::star::drawing::LineProperties;
5195 service ::com::sun::star::drawing::FillProperties;
5196 service ::com::sun::star::drawing::PolyPolygonBezierDescriptor;
5197 service ::com::sun::star::drawing::Text;
5198 service ::com::sun::star::drawing::ShadowProperties;
5199 service ::com::sun::star::drawing::RotationDescriptor;
5201 published enum ColorMode {
5202 STANDARD = 0,
5203 GREYS = 1,
5204 MONO = 2,
5205 WATERMARK = 3
5207 published service ColorTable: ::com::sun::star::container::XNameContainer;
5208 published enum ConnectionType {
5209 AUTO = 0,
5210 LEFT = 1,
5211 TOP = 2,
5212 RIGHT = 3,
5213 BOTTOM = 4,
5214 SPECIAL = 5
5216 published enum ConnectorType {
5217 STANDARD = 0,
5218 CURVE = 1,
5219 LINE = 2,
5220 LINES = 3
5222 published service ConnectorProperties {
5223 [property] ::com::sun::star::drawing::ConnectorType EdgeKind;
5224 [property] long EdgeNode1HorzDist;
5225 [property] long EdgeNode1VertDist;
5226 [property] long EdgeNode2HorzDist;
5227 [property] long EdgeNode2VertDist;
5229 published service ConnectorShape {
5230 service ::com::sun::star::drawing::Shape;
5231 service ::com::sun::star::drawing::LineProperties;
5232 service ::com::sun::star::drawing::ConnectorProperties;
5233 service ::com::sun::star::drawing::ShadowProperties;
5234 service ::com::sun::star::drawing::Text;
5235 service ::com::sun::star::drawing::RotationDescriptor;
5236 [property] ::com::sun::star::drawing::XShape StartShape;
5237 [property] long StartGluePointIndex;
5238 [property] ::com::sun::star::awt::Point StartPosition;
5239 [property] ::com::sun::star::drawing::XShape EndShape;
5240 [property] ::com::sun::star::awt::Point EndPosition;
5241 [property] long EndGluePointIndex;
5242 [property] long EdgeLine1Delta;
5243 [property] long EdgeLine2Delta;
5244 [property] long EdgeLine3Delta;
5246 published interface XControlShape {
5247 interface ::com::sun::star::drawing::XShape;
5248 ::com::sun::star::awt::XControlModel getControl();
5249 void setControl([in] ::com::sun::star::awt::XControlModel xControl);
5251 published service ControlShape {
5252 service ::com::sun::star::drawing::Shape;
5253 interface ::com::sun::star::drawing::XControlShape;
5255 published typedef sequence< long > CoordinateSequence;
5256 published typedef sequence< ::com::sun::star::drawing::CoordinateSequence > CoordinateSequenceSequence;
5257 published service DashTable {
5258 interface ::com::sun::star::container::XNameContainer;
5260 /** @deprecated */ published enum MeasureKind {
5261 STANDARD = 0,
5262 RADIUS = 1
5264 published enum MeasureTextHorzPos {
5265 AUTO = 0,
5266 LEFTOUTSIDE = 1,
5267 INSIDE = 2,
5268 RIGHTOUTSIDE = 3
5270 published enum MeasureTextVertPos {
5271 AUTO = 0,
5272 EAST = 1,
5273 BREAKEDLINE = 2,
5274 WEST = 3,
5275 CENTERED = 4
5277 published service MeasureProperties {
5278 [property] boolean MeasureBelowReferenceEdge;
5279 [property] long MeasureHelpLine1Length;
5280 [property] long MeasureHelpLine2Length;
5281 [property] long MeasureHelpLineDistance;
5282 [property] long MeasureHelpLineOverhang;
5283 [property] ::com::sun::star::drawing::MeasureKind MeasureKind;
5284 [property] long MeasureLineDistance;
5285 [property] long MeasureOverhang;
5286 [property] boolean MeasureShowUnit;
5287 [property] boolean MeasureTextAutoAngle;
5288 [property] long MeasureTextAutoAngleView;
5289 [property] long MeasureTextFixedAngle;
5290 [property] ::com::sun::star::drawing::MeasureTextHorzPos MeasureTextHorizontalPosition;
5291 [property] ::com::sun::star::drawing::MeasureTextVertPos MeasureTextVerticalPosition;
5292 [property] boolean MeasureTextIsFixedAngle;
5293 [property] boolean MeasureTextRotate90;
5294 [property] boolean MeasureTextUpsideDown;
5295 [property, optional] short MeasureDecimalPlaces;
5297 published service Defaults {
5298 service ::com::sun::star::drawing::TextProperties;
5299 service ::com::sun::star::drawing::LineProperties;
5300 service ::com::sun::star::drawing::FillProperties;
5301 service ::com::sun::star::drawing::ShadowProperties;
5302 service ::com::sun::star::drawing::ConnectorProperties;
5303 service ::com::sun::star::drawing::MeasureProperties;
5305 published service DocumentSettings {
5306 service ::com::sun::star::document::Settings;
5307 [optional] service ::com::sun::star::document::HeaderFooterSettings;
5308 interface ::com::sun::star::beans::XPropertySet;
5309 [property, optional] short MeasureUnit;
5310 [property, optional] long ScaleNumerator;
5311 [property, optional] long ScaleDenominator;
5312 [property, optional] boolean IsPrintFitPage;
5313 [property, optional] boolean IsPrintTilePage;
5314 [property, optional] long PageNumberFormat;
5315 [property, optional] boolean ParagraphSummation;
5317 published typedef sequence< double > DoubleSequence;
5318 published typedef sequence< ::com::sun::star::drawing::DoubleSequence > DoubleSequenceSequence;
5319 published interface XShapes;
5320 published interface XShapeBinder {
5321 interface ::com::sun::star::uno::XInterface;
5322 ::com::sun::star::drawing::XShape bind([in] ::com::sun::star::drawing::XShapes xShapes);
5323 void unbind([in] ::com::sun::star::drawing::XShape xShape);
5325 published interface XShapes;
5326 published interface XShapeCombiner {
5327 interface ::com::sun::star::uno::XInterface;
5328 ::com::sun::star::drawing::XShape combine([in] ::com::sun::star::drawing::XShapes xShapes);
5329 void split([in] ::com::sun::star::drawing::XShape Group);
5331 published interface XShapeGroup;
5332 published interface XShapes;
5333 published interface XShapeGrouper {
5334 interface ::com::sun::star::uno::XInterface;
5335 ::com::sun::star::drawing::XShapeGroup group([in] ::com::sun::star::drawing::XShapes xShapes);
5336 void ungroup([in] ::com::sun::star::drawing::XShapeGroup aGroup);
5338 published interface XShapes {
5339 interface ::com::sun::star::container::XIndexAccess;
5340 void add([in] ::com::sun::star::drawing::XShape xShape);
5341 void remove([in] ::com::sun::star::drawing::XShape xShape);
5344 module view {
5345 published enum PaperOrientation {
5346 PORTRAIT = 0,
5347 LANDSCAPE = 1
5350 module drawing {
5351 published service GenericDrawPage {
5352 interface ::com::sun::star::drawing::XShapes;
5353 interface ::com::sun::star::drawing::XShapeGrouper;
5354 [optional] interface ::com::sun::star::drawing::XShapeCombiner;
5355 [optional] interface ::com::sun::star::drawing::XShapeBinder;
5356 [optional] interface ::com::sun::star::container::XNamed;
5357 [optional] interface ::com::sun::star::beans::XPropertySet;
5358 [property, optional] long BorderBottom;
5359 [property, optional] long BorderLeft;
5360 [property, optional] long BorderRight;
5361 [property, optional] long BorderTop;
5362 [property, optional] long Height;
5363 [property, optional] long Width;
5364 [property, optional, readonly] short Number;
5365 [property, optional] ::com::sun::star::view::PaperOrientation Orientation;
5366 [property, optional] ::com::sun::star::container::XNameContainer UserDefinedAttributes;
5367 [property, optional, readonly] boolean IsBackgroundDark;
5368 [property, optional] ::com::sun::star::container::XIndexAccess NavigationOrder;
5370 published interface XDrawPage;
5371 published interface XMasterPageTarget {
5372 interface ::com::sun::star::uno::XInterface;
5373 ::com::sun::star::drawing::XDrawPage getMasterPage();
5374 void setMasterPage([in] ::com::sun::star::drawing::XDrawPage xMasterPage);
5377 module form {
5378 published interface XFormsSupplier {
5379 interface ::com::sun::star::uno::XInterface;
5380 ::com::sun::star::container::XNameContainer getForms();
5383 module drawing {
5384 published service DrawPage {
5385 service ::com::sun::star::drawing::GenericDrawPage;
5386 interface ::com::sun::star::drawing::XMasterPageTarget;
5387 [optional] interface ::com::sun::star::form::XFormsSupplier;
5389 published interface XDrawPage;
5390 published interface XDrawPages;
5391 /** @deprecated */ published interface XDrawPageExpander {
5392 interface ::com::sun::star::uno::XInterface;
5393 ::com::sun::star::drawing::XDrawPages expand([in] ::com::sun::star::drawing::XDrawPage xPage);
5395 published interface XDrawPage;
5396 published interface XDrawPages;
5397 /** @deprecated */ published interface XDrawPageSummarizer {
5398 interface ::com::sun::star::uno::XInterface;
5399 ::com::sun::star::drawing::XDrawPage summarize([in] ::com::sun::star::drawing::XDrawPages xPages);
5401 published interface XDrawPage;
5402 published interface XDrawPages {
5403 interface ::com::sun::star::container::XIndexAccess;
5404 ::com::sun::star::drawing::XDrawPage insertNewByIndex([in] long nIndex);
5405 void remove([in] ::com::sun::star::drawing::XDrawPage xPage);
5407 published service DrawPages {
5408 interface ::com::sun::star::drawing::XDrawPages;
5409 [optional] interface ::com::sun::star::drawing::XDrawPageSummarizer;
5410 [optional] interface ::com::sun::star::drawing::XDrawPageExpander;
5412 /** @deprecated */ published enum DrawViewMode {
5413 DRAW = 0,
5414 NOTES = 1,
5415 HANDOUT = 2
5417 published interface XDrawPage;
5418 published interface XDrawPageDuplicator {
5419 interface ::com::sun::star::uno::XInterface;
5420 ::com::sun::star::drawing::XDrawPage duplicate([in] ::com::sun::star::drawing::XDrawPage xPage);
5422 published interface XDrawPagesSupplier {
5423 interface ::com::sun::star::uno::XInterface;
5424 ::com::sun::star::drawing::XDrawPages getDrawPages();
5426 published interface XLayerSupplier {
5427 interface ::com::sun::star::uno::XInterface;
5428 ::com::sun::star::container::XNameAccess getLayerManager();
5430 published interface XMasterPagesSupplier {
5431 interface ::com::sun::star::uno::XInterface;
5432 ::com::sun::star::drawing::XDrawPages getMasterPages();
5434 published interface XDrawPage;
5435 published interface XDrawView {
5436 interface ::com::sun::star::uno::XInterface;
5437 void setCurrentPage([in] ::com::sun::star::drawing::XDrawPage xPage);
5438 ::com::sun::star::drawing::XDrawPage getCurrentPage();
5441 module frame {
5442 published interface XFrame;
5443 published interface XController {
5444 interface ::com::sun::star::lang::XComponent;
5445 void attachFrame([in] ::com::sun::star::frame::XFrame Frame);
5446 boolean attachModel([in] ::com::sun::star::frame::XModel Model);
5447 boolean suspend([in] boolean Suspend);
5448 any getViewData();
5449 void restoreViewData([in] any Data);
5450 ::com::sun::star::frame::XModel getModel();
5451 ::com::sun::star::frame::XFrame getFrame();
5454 module util {
5455 published struct URL {
5456 string Complete;
5457 string Main;
5458 string Protocol;
5459 string User;
5460 string Password;
5461 string Server;
5462 short Port;
5463 string Path;
5464 string Name;
5465 string Arguments;
5466 string Mark;
5469 module frame {
5470 published struct DispatchDescriptor {
5471 ::com::sun::star::util::URL FeatureURL;
5472 string FrameName;
5473 long SearchFlags;
5475 published interface XDispatch;
5476 published interface XDispatchProvider {
5477 interface ::com::sun::star::uno::XInterface;
5478 ::com::sun::star::frame::XDispatch queryDispatch([in] ::com::sun::star::util::URL URL, [in] string TargetFrameName, [in] long SearchFlags);
5479 sequence< ::com::sun::star::frame::XDispatch > queryDispatches([in] sequence< ::com::sun::star::frame::DispatchDescriptor > Requests);
5482 module ui {
5483 published interface XContextMenuInterceptor;
5484 published interface XContextMenuInterception {
5485 interface ::com::sun::star::uno::XInterface;
5486 void registerContextMenuInterceptor([in] ::com::sun::star::ui::XContextMenuInterceptor Interceptor);
5487 void releaseContextMenuInterceptor([in] ::com::sun::star::ui::XContextMenuInterceptor Interceptor);
5490 module frame {
5491 published service Controller {
5492 interface ::com::sun::star::frame::XController;
5493 interface ::com::sun::star::frame::XDispatchProvider;
5494 [optional] interface ::com::sun::star::ui::XContextMenuInterception;
5495 [optional] interface ::com::sun::star::awt::XUserInputInterception;
5496 [optional] interface ::com::sun::star::view::XSelectionSupplier;
5497 [optional] interface ::com::sun::star::datatransfer::XTransferableSupplier;
5500 module view {
5501 published interface XControlAccess {
5502 interface ::com::sun::star::uno::XInterface;
5503 ::com::sun::star::awt::XControl getControl([in] ::com::sun::star::awt::XControlModel xModel) raises (::com::sun::star::container::NoSuchElementException);
5506 module form {
5507 published interface XForm;
5508 module runtime {
5509 interface XFormController;
5512 module view {
5513 interface XFormLayerAccess {
5514 interface ::com::sun::star::view::XControlAccess;
5515 ::com::sun::star::form::runtime::XFormController getFormController([in] ::com::sun::star::form::XForm Form);
5516 boolean isFormDesignMode();
5517 void setFormDesignMode([in] boolean DesignMode);
5520 module drawing {
5521 published interface XDrawPage;
5522 published service DrawingDocumentDrawView {
5523 service ::com::sun::star::frame::Controller;
5524 interface ::com::sun::star::drawing::XDrawView;
5525 interface ::com::sun::star::beans::XPropertySet;
5526 interface ::com::sun::star::view::XSelectionSupplier;
5527 [optional] interface ::com::sun::star::awt::XWindow;
5528 [optional] interface ::com::sun::star::view::XFormLayerAccess;
5529 [property] boolean IsMasterPageMode;
5530 [property] boolean IsLayerMode;
5531 [property] ::com::sun::star::drawing::XDrawPage CurrentPage;
5532 [property, readonly] ::com::sun::star::awt::Rectangle VisibleArea;
5533 [property, optional] short ZoomType;
5534 [property, optional] short ZoomValue;
5535 [property, optional] ::com::sun::star::awt::Point ViewOffset;
5537 /** @deprecated */ published service DrawingDocumentFactory {
5538 /** @deprecated */ interface ::com::sun::star::lang::XMultiServiceFactory;
5540 published service EllipseShape {
5541 service ::com::sun::star::drawing::Shape;
5542 service ::com::sun::star::drawing::LineProperties;
5543 service ::com::sun::star::drawing::FillProperties;
5544 service ::com::sun::star::drawing::Text;
5545 service ::com::sun::star::drawing::ShadowProperties;
5546 service ::com::sun::star::drawing::RotationDescriptor;
5547 [property] ::com::sun::star::drawing::CircleKind CircleKind;
5548 [property] long CircleStartAngle;
5549 [property] long CircleEndAngle;
5551 published enum ProjectionMode {
5552 PARALLEL = 0,
5553 PERSPECTIVE = 1
5555 published enum ShadeMode {
5556 FLAT = 0,
5557 PHONG = 1,
5558 SMOOTH = 2,
5559 DRAFT = 3
5561 published enum EscapeDirection {
5562 SMART = 0,
5563 LEFT = 1,
5564 RIGHT = 2,
5565 UP = 3,
5566 DOWN = 4,
5567 HORIZONTAL = 5,
5568 VERTICAL = 6
5570 /** @deprecated */ published struct GluePoint {
5571 ::com::sun::star::awt::Point Position;
5572 short EscapeDirection;
5573 boolean PositionAbsolute;
5574 short Alignment;
5576 published struct GluePoint2 {
5577 ::com::sun::star::awt::Point Position;
5578 boolean IsRelative;
5579 ::com::sun::star::drawing::Alignment PositionAlignment;
5580 ::com::sun::star::drawing::EscapeDirection Escape;
5581 boolean IsUserDefined;
5583 published service GradientTable {
5584 interface ::com::sun::star::container::XNameContainer;
5586 published interface XGraphicExportFilter {
5587 interface ::com::sun::star::document::XFilter;
5588 interface ::com::sun::star::document::XExporter;
5589 interface ::com::sun::star::document::XMimeTypeInfo;
5591 published service GraphicExportFilter: ::com::sun::star::drawing::XGraphicExportFilter;
5593 module graphic {
5594 published interface XGraphic;
5596 module drawing {
5597 published service GraphicObjectShape {
5598 service ::com::sun::star::drawing::Shape;
5599 service ::com::sun::star::drawing::Text;
5600 service ::com::sun::star::drawing::ShadowProperties;
5601 service ::com::sun::star::drawing::RotationDescriptor;
5602 [property] string GraphicURL;
5603 [property] string GraphicStreamURL;
5604 [property, optional] ::com::sun::star::awt::XBitmap GraphicObjectFillBitmap;
5605 [property] short AdjustLuminance;
5606 [property] short AdjustContrast;
5607 [property] short AdjustRed;
5608 [property] short AdjustGreen;
5609 [property] short AdjustBlue;
5610 [property] double Gamma;
5611 [property] short Transparency;
5612 [property] ::com::sun::star::drawing::ColorMode GraphicColorMode;
5613 [property, optional] ::com::sun::star::container::XIndexContainer ImageMap;
5614 [property, optional] ::com::sun::star::graphic::XGraphic Graphic;
5616 /** @deprecated */ published interface XShapeGroup {
5617 interface ::com::sun::star::drawing::XShape;
5618 void enterGroup();
5619 void leaveGroup();
5621 published service GroupShape {
5622 service ::com::sun::star::drawing::Shape;
5623 interface ::com::sun::star::drawing::XShapeGroup;
5624 interface ::com::sun::star::drawing::XShapes;
5626 published service HatchTable {
5627 interface ::com::sun::star::container::XNameContainer;
5629 published struct HomogenMatrixLine {
5630 double Column1;
5631 double Column2;
5632 double Column3;
5633 double Column4;
5635 published struct HomogenMatrix {
5636 ::com::sun::star::drawing::HomogenMatrixLine Line1;
5637 ::com::sun::star::drawing::HomogenMatrixLine Line2;
5638 ::com::sun::star::drawing::HomogenMatrixLine Line3;
5639 ::com::sun::star::drawing::HomogenMatrixLine Line4;
5641 published struct HomogenMatrixLine4 {
5642 double Column1;
5643 double Column2;
5644 double Column3;
5645 double Column4;
5647 published struct HomogenMatrix4 {
5648 ::com::sun::star::drawing::HomogenMatrixLine4 Line1;
5649 ::com::sun::star::drawing::HomogenMatrixLine4 Line2;
5650 ::com::sun::star::drawing::HomogenMatrixLine4 Line3;
5651 ::com::sun::star::drawing::HomogenMatrixLine4 Line4;
5653 published enum HorizontalDimensioning {
5654 AUTO = 0,
5655 LEFT = 1,
5656 CENTERED = 2,
5657 RIGHT = 3
5659 published service Layer {
5660 interface ::com::sun::star::beans::XPropertySet;
5661 [property] string Name;
5662 [property] boolean IsVisible;
5663 [property] boolean IsPrintable;
5664 [property] boolean IsLocked;
5666 published interface XLayer;
5667 published interface XLayerManager {
5668 interface ::com::sun::star::container::XIndexAccess;
5669 ::com::sun::star::drawing::XLayer insertNewByIndex([in] long nIndex);
5670 void remove([in] ::com::sun::star::drawing::XLayer xLayer) raises (::com::sun::star::container::NoSuchElementException);
5671 void attachShapeToLayer([in] ::com::sun::star::drawing::XShape xShape, [in] ::com::sun::star::drawing::XLayer xLayer);
5672 ::com::sun::star::drawing::XLayer getLayerForShape([in] ::com::sun::star::drawing::XShape xShape);
5674 published service LayerManager {
5675 interface ::com::sun::star::drawing::XLayerManager;
5676 interface ::com::sun::star::container::XNameAccess;
5678 published enum LayerType {
5679 LAYOUT = 0,
5680 CONTROLSA = 1,
5681 DIMENSIONIANG_LINES = 2,
5682 USER_DEFINED = 3
5684 /** @deprecated */ published enum LineEndType {
5685 NONE = 0,
5686 ARROW = 1,
5687 CIRCLE = 2,
5688 SQUARE = 3,
5689 SPECIAL = 4
5691 published service PolyPolygonDescriptor {
5692 [property, readonly] ::com::sun::star::drawing::PolygonKind PolygonKind;
5693 [property] ::com::sun::star::drawing::PointSequenceSequence PolyPolygon;
5694 [property] ::com::sun::star::drawing::PointSequenceSequence Geometry;
5696 published service LineShape {
5697 service ::com::sun::star::drawing::Shape;
5698 service ::com::sun::star::drawing::LineProperties;
5699 service ::com::sun::star::drawing::PolyPolygonDescriptor;
5700 service ::com::sun::star::drawing::Text;
5701 service ::com::sun::star::drawing::ShadowProperties;
5702 service ::com::sun::star::drawing::RotationDescriptor;
5704 published service MarkerTable {
5705 interface ::com::sun::star::container::XNameContainer;
5707 published service MasterPage {
5708 service ::com::sun::star::drawing::GenericDrawPage;
5710 published service MasterPages {
5711 interface ::com::sun::star::drawing::XDrawPages;
5713 published service MeasureShape {
5714 service ::com::sun::star::drawing::Shape;
5715 service ::com::sun::star::drawing::MeasureProperties;
5716 service ::com::sun::star::drawing::LineProperties;
5717 service ::com::sun::star::drawing::Text;
5718 service ::com::sun::star::drawing::ShadowProperties;
5719 service ::com::sun::star::drawing::RotationDescriptor;
5720 [property] ::com::sun::star::awt::Point StartPosition;
5721 [property] ::com::sun::star::awt::Point EndPosition;
5723 published enum MirrorAxis {
5724 VERTICAL = 0,
5725 HORIZONTAL = 1
5727 published enum NormalsKind {
5728 SPECIFIC = 0,
5729 FLAT = 1,
5730 SPHERE = 2
5732 published service OLE2Shape {
5733 service ::com::sun::star::drawing::Shape;
5734 [property] string CLSID;
5735 [property] string PersistName;
5736 [property, readonly] ::com::sun::star::frame::XModel Model;
5737 [property, readonly] boolean IsInternal;
5739 published service OpenBezierShape {
5740 service ::com::sun::star::drawing::Shape;
5741 service ::com::sun::star::drawing::LineProperties;
5742 service ::com::sun::star::drawing::PolyPolygonBezierDescriptor;
5743 service ::com::sun::star::drawing::Text;
5744 service ::com::sun::star::drawing::ShadowProperties;
5745 service ::com::sun::star::drawing::RotationDescriptor;
5747 published service PageShape {
5748 service ::com::sun::star::drawing::Shape;
5749 [property, optional] long PageNumber;
5751 published service PluginShape {
5752 service ::com::sun::star::drawing::Shape;
5753 [property] string PluginMimeType;
5754 [property] string PluginURL;
5755 [property] sequence< ::com::sun::star::beans::PropertyValue > PluginCommands;
5757 published service PolyLineShape {
5758 service ::com::sun::star::drawing::Shape;
5759 service ::com::sun::star::drawing::LineProperties;
5760 service ::com::sun::star::drawing::PolyPolygonDescriptor;
5761 service ::com::sun::star::drawing::Text;
5762 service ::com::sun::star::drawing::ShadowProperties;
5763 service ::com::sun::star::drawing::RotationDescriptor;
5765 published service PolyPolygonBezierShape {
5766 service ::com::sun::star::drawing::Shape;
5767 service ::com::sun::star::drawing::LineProperties;
5768 service ::com::sun::star::drawing::FillProperties;
5769 service ::com::sun::star::drawing::PolyPolygonBezierDescriptor;
5770 service ::com::sun::star::drawing::Text;
5771 service ::com::sun::star::drawing::ShadowProperties;
5772 service ::com::sun::star::drawing::RotationDescriptor;
5774 published service PolyPolygonShape {
5775 service ::com::sun::star::drawing::Shape;
5776 service ::com::sun::star::drawing::LineProperties;
5777 service ::com::sun::star::drawing::FillProperties;
5778 service ::com::sun::star::drawing::PolyPolygonDescriptor;
5779 service ::com::sun::star::drawing::Text;
5780 service ::com::sun::star::drawing::ShadowProperties;
5781 service ::com::sun::star::drawing::RotationDescriptor;
5783 published struct PolyPolygonShape3D {
5784 ::com::sun::star::drawing::DoubleSequenceSequence SequenceX;
5785 ::com::sun::star::drawing::DoubleSequenceSequence SequenceY;
5786 ::com::sun::star::drawing::DoubleSequenceSequence SequenceZ;
5788 published service RectangleShape {
5789 service ::com::sun::star::drawing::Shape;
5790 service ::com::sun::star::drawing::FillProperties;
5791 service ::com::sun::star::drawing::LineProperties;
5792 service ::com::sun::star::drawing::Text;
5793 service ::com::sun::star::drawing::ShadowProperties;
5794 service ::com::sun::star::drawing::RotationDescriptor;
5795 [property] long CornerRadius;
5797 published service ShapeCollection: ::com::sun::star::drawing::XShapes;
5798 published service Shapes {
5799 interface ::com::sun::star::drawing::XShapes;
5801 /** @deprecated */ published enum SnapObjectType {
5802 POINT = 0,
5803 VERTICAL = 1,
5804 HORIZONTAL = 2
5806 /** @deprecated */ published enum TextAdjust {
5807 LEFT = 0,
5808 CENTER = 1,
5809 RIGHT = 2,
5810 BLOCK = 3,
5811 STRETCH = 4
5813 published service TextShape {
5814 service ::com::sun::star::drawing::Shape;
5815 service ::com::sun::star::drawing::FillProperties;
5816 service ::com::sun::star::drawing::LineProperties;
5817 service ::com::sun::star::drawing::ShadowProperties;
5818 service ::com::sun::star::drawing::Text;
5819 service ::com::sun::star::drawing::RotationDescriptor;
5820 [property] long CornerRadius;
5822 /** @deprecated */ published enum TextureKind {
5823 LUMINANCE = 0,
5824 COLOR = 1
5826 published enum TextureKind2 {
5827 LUMINANCE = 0,
5828 INTENSITY = 1,
5829 COLOR = 2
5831 published enum TextureMode {
5832 REPLACE = 0,
5833 MODULATE = 1,
5834 BLEND = 2
5836 published enum TextureProjectionMode {
5837 OBJECTSPECIFIC = 0,
5838 PARALLEL = 1,
5839 SPHERE = 2
5841 published service TransparencyGradientTable {
5842 interface ::com::sun::star::container::XNameContainer;
5844 published enum VerticalDimensioning {
5845 AUTO = 0,
5846 TOP = 1,
5847 CENTERED = 2,
5848 BOTTOM = 3
5850 /** @deprecated */ published interface XConnectableShape {
5851 interface ::com::sun::star::uno::XInterface;
5852 boolean canConnect([in] ::com::sun::star::awt::Point nPos, [in] boolean bCreateGluePoint, [in] long nMaxDist);
5853 boolean doConnect([in] ::com::sun::star::awt::Point nPos, [in] boolean bCreateGluePoint, [in] long nMaxDist);
5855 /** @deprecated */ published interface XConnectorShape {
5856 interface ::com::sun::star::drawing::XShape;
5857 void connectStart([in] ::com::sun::star::drawing::XConnectableShape xShape, [in] ::com::sun::star::drawing::ConnectionType nPos);
5858 void connectEnd([in] ::com::sun::star::drawing::XConnectableShape xShape, [in] ::com::sun::star::drawing::ConnectionType nPos);
5859 void disconnectBegin([in] ::com::sun::star::drawing::XConnectableShape xShape);
5860 void disconnectEnd([in] ::com::sun::star::drawing::XConnectableShape xShape);
5862 published interface XDrawPage {
5863 interface ::com::sun::star::drawing::XShapes;
5865 published interface XLayer {
5866 interface ::com::sun::star::beans::XPropertySet;
5869 module frame {
5870 published interface XStatusListener;
5871 published interface XDispatch {
5872 interface ::com::sun::star::uno::XInterface;
5873 void dispatch([in] ::com::sun::star::util::URL URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments);
5874 void addStatusListener([in] ::com::sun::star::frame::XStatusListener Control, [in] ::com::sun::star::util::URL URL);
5875 void removeStatusListener([in] ::com::sun::star::frame::XStatusListener Control, [in] ::com::sun::star::util::URL URL);
5878 module drawing {
5879 published interface XSelectionFunction {
5880 interface ::com::sun::star::lang::XComponent;
5881 interface ::com::sun::star::lang::XServiceInfo;
5882 interface ::com::sun::star::frame::XDispatch;
5883 interface ::com::sun::star::awt::XKeyHandler;
5884 interface ::com::sun::star::awt::XMouseClickHandler;
5885 interface ::com::sun::star::awt::XMouseMotionHandler;
5886 interface ::com::sun::star::view::XSelectionChangeListener;
5888 /** @deprecated */ published interface XShapeAligner {
5889 interface ::com::sun::star::uno::XInterface;
5890 void alignShapes([inout] ::com::sun::star::drawing::XShapes aShapes, [in] ::com::sun::star::drawing::Alignment eType);
5892 /** @deprecated */ published interface XShapeArranger {
5893 interface ::com::sun::star::uno::XInterface;
5894 void arrange([in] ::com::sun::star::drawing::XShapes xShapes, [in] ::com::sun::star::drawing::Arrangement eType);
5895 void bringToFront([in] ::com::sun::star::drawing::XShapes xShapes, [in] short nSteps);
5896 void sendToBack([in] ::com::sun::star::drawing::XShapes xShapes, [in] short nSteps);
5897 void setBehindShape([in] ::com::sun::star::drawing::XShapes xShapes, [in] ::com::sun::star::drawing::XShape xShape);
5898 void setInFrontOf([in] ::com::sun::star::drawing::XShapes xShapes, [in] ::com::sun::star::drawing::XShape xShape);
5899 void reverseOrder([in] ::com::sun::star::drawing::XShapes xShapes);
5901 /** @deprecated */ published interface XShapeMirror {
5902 interface ::com::sun::star::uno::XInterface;
5903 void mirror([inout] ::com::sun::star::drawing::XShapes aShapes, [in] ::com::sun::star::drawing::MirrorAxis eAxis);
5904 void mirrorAtAxis([inout] ::com::sun::star::drawing::XShapes aShapes, [in] ::com::sun::star::drawing::XShape aLine);
5906 /** @deprecated */ published interface XUniversalShapeDescriptor {
5907 interface ::com::sun::star::drawing::XShapeDescriptor;
5908 void setShapeType([in] string aShapeTypeName);
5911 module embed {
5912 published constants Actions {
5913 const long PREVENT_CLOSE = 1;
5914 const long PREVENT_TERMINATION = 2;
5916 published constants Aspects {
5917 const hyper MSOLE_CONTENT = 1;
5918 const hyper MSOLE_DOCPRINT = 8;
5919 const hyper MSOLE_ICON = 4;
5920 const hyper MSOLE_THUMBNAIL = 2;
5922 published exception InvalidStorageException: ::com::sun::star::io::IOException {
5924 published exception StorageWrappedTargetException: ::com::sun::star::lang::WrappedTargetException {
5927 module packages {
5928 published exception NoEncryptionException: ::com::sun::star::uno::Exception {
5930 published exception WrongPasswordException: ::com::sun::star::uno::Exception {
5933 module embed {
5934 published interface XStorage {
5935 interface ::com::sun::star::container::XNameAccess;
5936 interface ::com::sun::star::lang::XComponent;
5937 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);
5938 ::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);
5939 ::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);
5940 ::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);
5941 ::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);
5942 ::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);
5943 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);
5944 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);
5945 boolean isStreamElement([in] string sElementName) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::embed::InvalidStorageException);
5946 boolean isStorageElement([in] string sElementName) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::embed::InvalidStorageException);
5947 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);
5948 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);
5949 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);
5950 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);
5952 published service BaseStorage {
5953 interface ::com::sun::star::embed::XStorage;
5954 interface ::com::sun::star::beans::XPropertySet;
5955 [property, readonly] long OpenMode;
5956 [property, optional, readonly] string URL;
5959 module frame {
5960 published interface XFrame;
5962 module embed {
5963 published service DocumentCloser: ::com::sun::star::lang::XComponent {
5964 DocumentCloserCtor1([in] ::com::sun::star::frame::XFrame xFrame) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::frame::DoubleInitializationException, ::com::sun::star::uno::Exception);
5966 published constants ElementModes {
5967 const long NOCREATE = 16;
5968 const long READ = 1;
5969 const long READWRITE = 7;
5970 const long SEEKABLE = 2;
5971 const long SEEKABLEREAD = 3;
5972 const long TRUNCATE = 8;
5973 const long WRITE = 4;
5975 published constants EmbedMapUnits {
5976 const long ONE_1000TH_INCH = 4;
5977 const long ONE_100TH_INCH = 5;
5978 const long ONE_100TH_MM = 0;
5979 const long ONE_10TH_INCH = 6;
5980 const long ONE_10TH_MM = 1;
5981 const long ONE_CM = 3;
5982 const long ONE_INCH = 7;
5983 const long ONE_MM = 2;
5984 const long PIXEL = 10;
5985 const long POINT = 8;
5986 const long TWIP = 9;
5988 published constants EmbedMisc {
5989 const hyper EMBED_ACTIVATEIMMEDIATELY = 4294967296;
5990 const hyper EMBED_NEEDSSIZEONLOAD = 17179869184;
5991 const hyper EMBED_NEVERRESIZE = 8589934592;
5992 const hyper MS_EMBED_ACTIVATEWHENVISIBLE = 256;
5993 const hyper MS_EMBED_ACTSLIKEBUTTON = 4096;
5994 const hyper MS_EMBED_ACTSLIKELABEL = 8192;
5995 const hyper MS_EMBED_ALIGNABLE = 32768;
5996 const hyper MS_EMBED_ALWAYSRUN = 2048;
5997 const hyper MS_EMBED_CANLINKBYOLE1 = 32;
5998 const hyper MS_EMBED_CANTLINKINSIDE = 16;
5999 const hyper MS_EMBED_IGNOREACTIVATEWHENVISIBLE = 524288;
6000 const hyper MS_EMBED_IMEMODE = 262144;
6001 const hyper MS_EMBED_INSERTNOTREPLACE = 4;
6002 const hyper MS_EMBED_INSIDEOUT = 128;
6003 const hyper MS_EMBED_INVISIBLEATRUNTIME = 1024;
6004 const hyper MS_EMBED_ISLINKOBJECT = 64;
6005 const hyper MS_EMBED_NOUIACTIVATE = 16384;
6006 const hyper MS_EMBED_ONLYICONIC = 2;
6007 const hyper MS_EMBED_RECOMPOSEONRESIZE = 1;
6008 const hyper MS_EMBED_RENDERINGISDEVICEINDEPENDENT = 512;
6009 const hyper MS_EMBED_SETCLIENTSITEFIRST = 131072;
6010 const hyper MS_EMBED_SIMPLEFRAME = 65536;
6011 const hyper MS_EMBED_STATIC = 8;
6012 const hyper MS_EMBED_SUPPORTSMULTILEVELUNDO = 2097152;
6013 const hyper MS_EMBED_WANTSTOMENUMERGE = 1048576;
6015 published constants EmbedStates {
6016 const long ACTIVE = 2;
6017 const long INPLACE_ACTIVE = 3;
6018 const long LOADED = 0;
6019 const long RUNNING = 1;
6020 const long UI_ACTIVE = 4;
6022 published constants EmbedUpdateModes {
6023 const long ALWAYS_UPDATE = 0;
6024 const long EXPLICIT_UPDATE = 1;
6026 published constants EmbedVerbs {
6027 const long MS_OLEVERB_DISCARDUNDOSTATE = -6;
6028 const long MS_OLEVERB_HIDE = -3;
6029 const long MS_OLEVERB_IPACTIVATE = -5;
6030 const long MS_OLEVERB_OPEN = -2;
6031 const long MS_OLEVERB_PRIMARY = 0;
6032 const long MS_OLEVERB_SHOW = -1;
6033 const long MS_OLEVERB_UIACTIVATE = -4;
6035 published interface XEmbedObjectCreator {
6036 interface ::com::sun::star::uno::XInterface;
6037 ::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);
6038 ::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);
6039 ::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);
6041 published interface XEmbedObjectFactory {
6042 interface ::com::sun::star::uno::XInterface;
6043 ::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);
6045 published interface XLinkCreator {
6046 interface ::com::sun::star::uno::XInterface;
6047 ::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);
6049 published interface XLinkFactory {
6050 interface ::com::sun::star::uno::XInterface;
6051 ::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);
6054 module frame {
6055 published interface XDispatchProviderInterceptor;
6057 module embed {
6058 published service EmbeddedObjectDescriptor {
6059 [property, optional] boolean StoreVisualReplacement;
6060 [property, optional] ::com::sun::star::frame::XDispatchProviderInterceptor OutplaceDispatchInterceptor;
6061 [property, optional] ::com::sun::star::embed::XStorage RecoveryStorage;
6063 published constants EntryInitModes {
6064 const long DEFAULT_INIT = 0;
6065 const long MEDIA_DESCRIPTOR_INIT = 3;
6066 const long NO_INIT = 2;
6067 const long TRUNCATE_INIT = 1;
6068 const long URL_LINK_INIT = 4;
6070 published service FileSystemStorage {
6071 service ::com::sun::star::embed::BaseStorage;
6073 published service FileSystemStorageFactory: ::com::sun::star::lang::XSingleServiceFactory;
6074 published interface XHatchWindow;
6075 published interface XHatchWindowFactory {
6076 interface ::com::sun::star::uno::XInterface;
6077 ::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);
6079 published interface XEmbeddedObject;
6080 published struct InsertedObjectInfo {
6081 ::com::sun::star::embed::XEmbeddedObject Object;
6082 sequence< ::com::sun::star::beans::NamedValue > Options;
6084 published interface XActionsApproval;
6085 published service InstanceLocker: ::com::sun::star::lang::XComponent {
6086 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);
6087 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);
6089 published exception LinkageMisuseException: ::com::sun::star::uno::Exception {
6091 published interface XEmbedObjectClipboardCreator {
6092 interface ::com::sun::star::uno::XInterface;
6093 ::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);
6095 published exception WrongStateException: ::com::sun::star::uno::Exception {
6097 published exception NeedsRunningStateException: ::com::sun::star::embed::WrongStateException {
6099 published exception NoVisualAreaSizeException: ::com::sun::star::uno::Exception {
6101 published interface XClassifiedObject {
6102 interface ::com::sun::star::uno::XInterface;
6103 sequence< byte > getClassID();
6104 string getClassName();
6105 void setClassInfo([in] sequence< byte > aClassID, [in] string sClassName) raises (::com::sun::star::lang::NoSupportException);
6107 published interface XTransactedObject {
6108 interface ::com::sun::star::uno::XInterface;
6109 void commit() raises (::com::sun::star::io::IOException, ::com::sun::star::lang::WrappedTargetException);
6110 void revert() raises (::com::sun::star::io::IOException, ::com::sun::star::lang::WrappedTargetException);
6112 published interface XOLESimpleStorage {
6113 interface ::com::sun::star::container::XNameContainer;
6114 interface ::com::sun::star::lang::XComponent;
6115 interface ::com::sun::star::embed::XTransactedObject;
6116 interface ::com::sun::star::embed::XClassifiedObject;
6118 published service OLESimpleStorage: ::com::sun::star::embed::XOLESimpleStorage {
6119 createFromInputStream([in] ::com::sun::star::io::XInputStream xInputStream, [in] boolean bNoTempCopy);
6120 createFromStream([in] ::com::sun::star::io::XStream xStream, [in] boolean bNoTempCopy);
6122 published exception ObjectSaveVetoException: ::com::sun::star::uno::Exception {
6124 published exception StateChangeInProgressException: ::com::sun::star::embed::WrongStateException {
6125 long TargetState;
6127 published interface XEncryptionProtectedSource {
6128 interface ::com::sun::star::uno::XInterface;
6129 void setEncryptionPassword([in] string sPassword) raises (::com::sun::star::io::IOException);
6130 void removeEncryption() raises (::com::sun::star::io::IOException);
6132 published interface XTransactionListener;
6133 published interface XTransactionBroadcaster {
6134 interface ::com::sun::star::uno::XInterface;
6135 void addTransactionListener([in] ::com::sun::star::embed::XTransactionListener aListener);
6136 void removeTransactionListener([in] ::com::sun::star::embed::XTransactionListener aListener);
6138 published service Storage {
6139 service ::com::sun::star::embed::BaseStorage;
6140 interface ::com::sun::star::embed::XTransactedObject;
6141 interface ::com::sun::star::embed::XTransactionBroadcaster;
6142 [optional] interface ::com::sun::star::embed::XEncryptionProtectedSource;
6143 [property] string MediaType;
6144 [property, optional] string Version;
6145 [property, readonly] boolean MediaTypeFallbackIsUsed;
6146 [property, readonly] boolean IsRoot;
6147 [property, optional, readonly] boolean RepairPackage;
6148 [property, optional, readonly] boolean HasEncryptedEntries;
6149 [property, optional, readonly] boolean HasNonEncryptedEntries;
6151 published service StorageFactory: ::com::sun::star::lang::XSingleServiceFactory;
6152 published constants StorageFormats {
6153 const long OFOPXML = 3;
6154 const long PACKAGE = 1;
6155 const long ZIP = 2;
6157 published service StorageStream {
6158 interface ::com::sun::star::io::XStream;
6159 interface ::com::sun::star::lang::XComponent;
6160 interface ::com::sun::star::beans::XPropertySet;
6161 [optional] interface ::com::sun::star::io::XSeekable;
6162 [optional] interface ::com::sun::star::embed::XEncryptionProtectedSource;
6163 [property] string MediaType;
6164 [property] boolean IsCompressed;
6165 [property, readonly] boolean IsEncrypted;
6166 [property] boolean UseCommonStoragePasswordEncryption;
6167 [property, readonly] long Size;
6169 published exception UnreachableStateException: ::com::sun::star::uno::Exception {
6170 long CurrentState;
6171 long NextState;
6173 published exception UseBackupException: ::com::sun::star::io::IOException {
6174 string TemporaryFileURL;
6176 published constants VerbAttributes {
6177 const long MS_VERBATTR_NEVERDIRTIES = 1;
6178 const long MS_VERBATTR_ONCONTAINERMENU = 2;
6180 published struct VerbDescriptor {
6181 long VerbID;
6182 string VerbName;
6183 long VerbFlags;
6184 long VerbAttributes;
6186 published struct VisualRepresentation {
6187 ::com::sun::star::datatransfer::DataFlavor Flavor;
6188 any Data;
6190 published interface XActionsApproval {
6191 interface ::com::sun::star::uno::XInterface;
6192 boolean approveAction([in] long nAction);
6194 published interface XCommonEmbedPersist {
6195 interface ::com::sun::star::uno::XInterface;
6196 void storeOwn() raises (::com::sun::star::embed::WrongStateException, ::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
6197 boolean isReadonly() raises (::com::sun::star::embed::WrongStateException);
6198 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);
6201 module util {
6202 published interface XCloseable;
6204 module embed {
6205 published interface XComponentSupplier {
6206 interface ::com::sun::star::uno::XInterface;
6207 ::com::sun::star::util::XCloseable getComponent();
6209 published interface XEmbedPersist {
6210 interface ::com::sun::star::embed::XCommonEmbedPersist;
6211 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);
6212 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);
6213 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);
6214 void saveCompleted([in] boolean bUseNew) raises (::com::sun::star::embed::WrongStateException, ::com::sun::star::uno::Exception);
6215 boolean hasEntry() raises (::com::sun::star::embed::WrongStateException);
6216 string getEntryName() raises (::com::sun::star::embed::WrongStateException);
6218 published interface XEmbeddedClient {
6219 interface ::com::sun::star::embed::XComponentSupplier;
6220 void saveObject() raises (::com::sun::star::embed::ObjectSaveVetoException, ::com::sun::star::uno::Exception);
6221 void visibilityChanged([in] boolean bVisible) raises (::com::sun::star::embed::WrongStateException);
6223 published interface XStateChangeListener;
6224 published interface XStateChangeBroadcaster {
6225 interface ::com::sun::star::uno::XInterface;
6226 void addStateChangeListener([in] ::com::sun::star::embed::XStateChangeListener xListener);
6227 void removeStateChangeListener([in] ::com::sun::star::embed::XStateChangeListener xListener);
6229 published interface XVisualObject {
6230 interface ::com::sun::star::uno::XInterface;
6231 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);
6232 ::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);
6233 ::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);
6234 long getMapUnit([in] hyper nAspect) raises (::com::sun::star::uno::Exception);
6237 module util {
6238 published interface XCloseListener;
6239 published interface XCloseBroadcaster {
6240 interface ::com::sun::star::uno::XInterface;
6241 void addCloseListener([in] ::com::sun::star::util::XCloseListener Listener);
6242 void removeCloseListener([in] ::com::sun::star::util::XCloseListener Listener);
6244 published interface XCloseable {
6245 interface ::com::sun::star::util::XCloseBroadcaster;
6246 void close([in] boolean DeliverOwnership) raises (::com::sun::star::util::CloseVetoException);
6249 module embed {
6250 published interface XEmbeddedObject {
6251 interface ::com::sun::star::embed::XVisualObject;
6252 interface ::com::sun::star::embed::XClassifiedObject;
6253 interface ::com::sun::star::embed::XComponentSupplier;
6254 interface ::com::sun::star::embed::XStateChangeBroadcaster;
6255 interface ::com::sun::star::document::XEventBroadcaster;
6256 interface ::com::sun::star::util::XCloseable;
6257 void changeState([in] long nNewState) raises (::com::sun::star::embed::UnreachableStateException, ::com::sun::star::embed::WrongStateException, ::com::sun::star::uno::Exception);
6258 sequence< long > getReachableStates() raises (::com::sun::star::embed::NeedsRunningStateException, ::com::sun::star::embed::WrongStateException);
6259 long getCurrentState() raises (::com::sun::star::embed::WrongStateException);
6260 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);
6261 sequence< ::com::sun::star::embed::VerbDescriptor > getSupportedVerbs() raises (::com::sun::star::embed::NeedsRunningStateException, ::com::sun::star::embed::WrongStateException);
6262 void setClientSite([in] ::com::sun::star::embed::XEmbeddedClient xClient) raises (::com::sun::star::embed::WrongStateException);
6263 ::com::sun::star::embed::XEmbeddedClient getClientSite() raises (::com::sun::star::embed::WrongStateException);
6264 void update() raises (::com::sun::star::embed::WrongStateException, ::com::sun::star::uno::Exception);
6265 void setUpdateMode([in] long nMode) raises (::com::sun::star::embed::WrongStateException);
6266 hyper getStatus([in] hyper nAspect) raises (::com::sun::star::embed::WrongStateException);
6267 void setContainerName([in] string sName);
6269 published interface XExtendedStorageStream {
6270 interface ::com::sun::star::io::XStream;
6271 interface ::com::sun::star::lang::XComponent;
6272 [optional] interface ::com::sun::star::io::XSeekable;
6273 [optional] interface ::com::sun::star::embed::XEncryptionProtectedSource;
6274 [optional] interface ::com::sun::star::beans::XPropertySet;
6275 [optional] interface ::com::sun::star::embed::XTransactedObject;
6276 [optional] interface ::com::sun::star::embed::XTransactionBroadcaster;
6278 published interface XHatchWindowController;
6279 published interface XHatchWindow {
6280 interface ::com::sun::star::lang::XComponent;
6281 [attribute] ::com::sun::star::awt::Size HatchBorderSize;
6282 void setController([in] ::com::sun::star::embed::XHatchWindowController xController);
6284 published interface XHatchWindowController {
6285 interface ::com::sun::star::uno::XInterface;
6286 void requestPositioning([in] ::com::sun::star::awt::Rectangle aRect);
6287 ::com::sun::star::awt::Rectangle calcAdjustedRectangle([in] ::com::sun::star::awt::Rectangle aRect);
6288 void activated();
6289 void deactivated();
6291 published interface XHierarchicalStorageAccess {
6292 interface ::com::sun::star::uno::XInterface;
6293 ::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);
6294 ::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);
6295 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);
6297 published interface XInplaceObject {
6298 interface ::com::sun::star::uno::XInterface;
6299 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);
6300 void enableModeless([in] boolean bEnable) raises (::com::sun::star::embed::WrongStateException, ::com::sun::star::uno::Exception);
6301 void translateAccelerators([in] sequence< ::com::sun::star::awt::KeyEvent > aKeys) raises (::com::sun::star::embed::WrongStateException);
6303 published interface XInsertObjectDialog {
6304 interface ::com::sun::star::uno::XInterface;
6305 ::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);
6307 published interface XLinkageSupport {
6308 interface ::com::sun::star::embed::XCommonEmbedPersist;
6309 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);
6310 boolean isLink() raises (::com::sun::star::embed::WrongStateException);
6311 string getLinkURL() raises (::com::sun::star::embed::WrongStateException, ::com::sun::star::uno::Exception);
6314 module packages {
6315 published exception NoRawFormatException: ::com::sun::star::io::IOException {
6318 module embed {
6319 published interface XOptimizedStorage {
6320 interface ::com::sun::star::uno::XInterface;
6321 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);
6322 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);
6323 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);
6324 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);
6325 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);
6326 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);
6327 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);
6329 published interface XPackageStructureCreator {
6330 interface ::com::sun::star::uno::XInterface;
6331 void convertToPackage([in] string sFolderURL, [in] ::com::sun::star::io::XOutputStream xTargetStream) raises (::com::sun::star::io::IOException);
6333 published interface XPersistanceHolder {
6334 interface ::com::sun::star::uno::XInterface;
6335 void disconnectPersistence() raises (::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
6336 void connectPersistance([in] ::com::sun::star::io::XStream xStream) raises (::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
6338 published interface XRelationshipAccess {
6339 interface ::com::sun::star::uno::XInterface;
6340 boolean hasByID([in] string sID) raises (::com::sun::star::io::IOException);
6341 string getTargetByID([in] string sID) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::io::IOException);
6342 string getTypeByID([in] string sID) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::io::IOException);
6343 sequence< ::com::sun::star::beans::StringPair > getRelationshipByID([in] string sID) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::io::IOException);
6344 sequence< sequence< ::com::sun::star::beans::StringPair > > getRelationshipsByType([in] string sType) raises (::com::sun::star::io::IOException);
6345 sequence< sequence< ::com::sun::star::beans::StringPair > > getAllRelationships() raises (::com::sun::star::io::IOException);
6346 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);
6347 void removeRelationshipByID([in] string sID) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::io::IOException);
6348 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);
6349 void clearRelationships() raises (::com::sun::star::io::IOException);
6351 published interface XStateChangeListener {
6352 interface ::com::sun::star::lang::XEventListener;
6353 void changingState([in] ::com::sun::star::lang::EventObject aEvent, [in] long nOldState, [in] long nNewState) raises (::com::sun::star::embed::WrongStateException);
6354 void stateChanged([in] ::com::sun::star::lang::EventObject aEvent, [in] long nOldState, [in] long nNewState);
6356 published interface XStorageRawAccess {
6357 interface ::com::sun::star::uno::XInterface;
6358 ::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);
6359 ::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);
6360 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);
6362 published interface XTransactionListener {
6363 interface ::com::sun::star::lang::XEventListener;
6364 void preCommit([in] ::com::sun::star::lang::EventObject aEvent) raises (::com::sun::star::uno::Exception);
6365 void commited([in] ::com::sun::star::lang::EventObject aEvent);
6366 void preRevert([in] ::com::sun::star::lang::EventObject aEvent) raises (::com::sun::star::uno::Exception);
6367 void reverted([in] ::com::sun::star::lang::EventObject aEvent);
6369 published interface XTransferableSupplier {
6370 interface ::com::sun::star::uno::XInterface;
6371 ::com::sun::star::datatransfer::XTransferable getTransferable();
6373 published interface XWindowSupplier {
6374 interface ::com::sun::star::uno::XInterface;
6375 ::com::sun::star::awt::XWindow getWindow();
6378 module form {
6379 published service ControlFontDialog: ::com::sun::star::ui::dialogs::XExecutableDialog {
6380 createWithGridModel([in] ::com::sun::star::beans::XPropertySet GridModel);
6382 published interface XFormComponent {
6383 interface ::com::sun::star::container::XChild;
6385 published service FormComponent {
6386 interface ::com::sun::star::form::XFormComponent;
6387 interface ::com::sun::star::lang::XComponent;
6388 interface ::com::sun::star::container::XNamed;
6389 interface ::com::sun::star::beans::XPropertySet;
6390 interface ::com::sun::star::io::XPersistObject;
6391 [optional] interface ::com::sun::star::beans::XPropertyBag;
6392 [property] string Name;
6394 published service FormControlModel {
6395 service ::com::sun::star::awt::UnoControlModel;
6396 service ::com::sun::star::form::FormComponent;
6397 [optional] interface ::com::sun::star::beans::XFastPropertySet;
6398 [optional] interface ::com::sun::star::beans::XPropertyState;
6399 [property, readonly] short ClassId;
6400 [property, optional] short TabIndex;
6401 [property] string Tag;
6403 published interface XUpdateListener;
6404 published interface XUpdateBroadcaster {
6405 interface ::com::sun::star::uno::XInterface;
6406 void addUpdateListener([in] ::com::sun::star::form::XUpdateListener aListener);
6407 void removeUpdateListener([in] ::com::sun::star::form::XUpdateListener aListener);
6409 published interface XBoundComponent {
6410 interface ::com::sun::star::form::XUpdateBroadcaster;
6411 boolean commit();
6413 published interface XLoadListener {
6414 interface ::com::sun::star::lang::XEventListener;
6415 void loaded([in] ::com::sun::star::lang::EventObject aEvent);
6416 void unloading([in] ::com::sun::star::lang::EventObject aEvent);
6417 void unloaded([in] ::com::sun::star::lang::EventObject aEvent);
6418 void reloading([in] ::com::sun::star::lang::EventObject aEvent);
6419 void reloaded([in] ::com::sun::star::lang::EventObject aEvent);
6421 published interface XResetListener;
6422 published interface XReset {
6423 interface ::com::sun::star::uno::XInterface;
6424 void reset();
6425 void addResetListener([in] ::com::sun::star::form::XResetListener aListener);
6426 void removeResetListener([in] ::com::sun::star::form::XResetListener aListener);
6428 published service DataAwareControlModel {
6429 service ::com::sun::star::form::FormControlModel;
6430 interface ::com::sun::star::form::XLoadListener;
6431 interface ::com::sun::star::form::XReset;
6432 [optional] interface ::com::sun::star::form::XBoundComponent;
6433 [property] string DataField;
6434 [property, optional] boolean InputRequired;
6435 [property, readonly] ::com::sun::star::beans::XPropertySet BoundField;
6436 [property] ::com::sun::star::beans::XPropertySet LabelControl;
6438 /** @deprecated */ published enum DataSelectionType {
6439 TABLE = 0,
6440 QUERY = 1,
6441 SQL = 2,
6442 SQLPASSTHROUGH = 3
6444 /** @deprecated */ published struct DatabaseDeleteEvent: ::com::sun::star::lang::EventObject {
6445 sequence< any > Bookmarks;
6447 published struct DatabaseParameterEvent: ::com::sun::star::lang::EventObject {
6448 ::com::sun::star::container::XIndexAccess Parameters;
6450 /** @deprecated */ published struct ErrorEvent: ::com::sun::star::lang::EventObject {
6451 any Reason;
6453 published enum FormButtonType {
6454 PUSH = 0,
6455 SUBMIT = 1,
6456 RESET = 2,
6457 URL = 3
6459 published constants FormComponentType {
6460 const short CHECKBOX = 5;
6461 const short COMBOBOX = 7;
6462 const short COMMANDBUTTON = 2;
6463 const short CONTROL = 1;
6464 const short CURRENCYFIELD = 18;
6465 const short DATEFIELD = 15;
6466 const short FILECONTROL = 12;
6467 const short FIXEDTEXT = 10;
6468 const short GRIDCONTROL = 11;
6469 const short GROUPBOX = 8;
6470 const short HIDDENCONTROL = 13;
6471 const short IMAGEBUTTON = 4;
6472 const short IMAGECONTROL = 14;
6473 const short LISTBOX = 6;
6474 const short NAVIGATIONBAR = 22;
6475 const short NUMERICFIELD = 17;
6476 const short PATTERNFIELD = 19;
6477 const short RADIOBUTTON = 3;
6478 const short SCROLLBAR = 20;
6479 const short SPINBUTTON = 21;
6480 const short TEXTFIELD = 9;
6481 const short TIMEFIELD = 16;
6483 published service FormComponents {
6484 interface ::com::sun::star::container::XContainer;
6485 interface ::com::sun::star::container::XNameContainer;
6486 interface ::com::sun::star::container::XIndexContainer;
6487 interface ::com::sun::star::container::XEnumerationAccess;
6488 interface ::com::sun::star::script::XEventAttacherManager;
6490 /** @deprecated */ published service FormControllerDispatcher {
6491 [optional] interface ::com::sun::star::frame::XDispatchProvider;
6493 published interface XConfirmDeleteListener;
6494 published interface XConfirmDeleteBroadcaster {
6495 interface ::com::sun::star::uno::XInterface;
6496 void addConfirmDeleteListener([in] ::com::sun::star::form::XConfirmDeleteListener aListener);
6497 void removeConfirmDeleteListener([in] ::com::sun::star::form::XConfirmDeleteListener aListener);
6499 published interface XDatabaseParameterListener;
6500 published interface XDatabaseParameterBroadcaster {
6501 interface ::com::sun::star::uno::XInterface;
6502 void addParameterListener([in] ::com::sun::star::form::XDatabaseParameterListener aListener);
6503 void removeParameterListener([in] ::com::sun::star::form::XDatabaseParameterListener aListener);
6505 published interface XFormControllerListener;
6506 /** @deprecated */ published interface XFormController {
6507 interface ::com::sun::star::awt::XTabController;
6508 ::com::sun::star::awt::XControl getCurrentControl();
6509 void addActivateListener([in] ::com::sun::star::form::XFormControllerListener l);
6510 void removeActivateListener([in] ::com::sun::star::form::XFormControllerListener l);
6513 module sdb {
6514 published interface XRowSetApproveListener;
6515 published interface XRowSetApproveBroadcaster {
6516 interface ::com::sun::star::uno::XInterface;
6517 void addRowSetApproveListener([in] ::com::sun::star::sdb::XRowSetApproveListener listener);
6518 void removeRowSetApproveListener([in] ::com::sun::star::sdb::XRowSetApproveListener listener);
6520 published interface XSQLErrorListener;
6521 published interface XSQLErrorBroadcaster {
6522 interface ::com::sun::star::uno::XInterface;
6523 void addSQLErrorListener([in] ::com::sun::star::sdb::XSQLErrorListener Listener);
6524 void removeSQLErrorListener([in] ::com::sun::star::sdb::XSQLErrorListener Listener);
6527 module form {
6528 /** @deprecated */ published service FormController {
6529 [optional] service ::com::sun::star::form::FormControllerDispatcher;
6530 interface ::com::sun::star::form::XFormController;
6531 interface ::com::sun::star::awt::XTabController;
6532 interface ::com::sun::star::container::XChild;
6533 interface ::com::sun::star::lang::XComponent;
6534 interface ::com::sun::star::container::XEnumerationAccess;
6535 interface ::com::sun::star::util::XModifyBroadcaster;
6536 interface ::com::sun::star::form::XConfirmDeleteBroadcaster;
6537 interface ::com::sun::star::sdb::XSQLErrorBroadcaster;
6538 interface ::com::sun::star::sdb::XRowSetApproveBroadcaster;
6539 interface ::com::sun::star::form::XDatabaseParameterBroadcaster;
6541 published enum FormSubmitEncoding {
6542 URL = 0,
6543 MULTIPART = 1,
6544 TEXT = 2
6546 published enum FormSubmitMethod {
6547 GET = 0,
6548 POST = 1
6550 published interface XForms {
6551 interface ::com::sun::star::container::XContainer;
6552 interface ::com::sun::star::container::XNameContainer;
6553 interface ::com::sun::star::container::XIndexContainer;
6554 interface ::com::sun::star::container::XEnumerationAccess;
6555 interface ::com::sun::star::script::XEventAttacherManager;
6556 interface ::com::sun::star::container::XChild;
6557 interface ::com::sun::star::util::XCloneable;
6558 interface ::com::sun::star::lang::XComponent;
6560 published service Forms: ::com::sun::star::form::XForms;
6561 published enum ListSourceType {
6562 VALUELIST = 0,
6563 TABLE = 1,
6564 QUERY = 2,
6565 SQL = 3,
6566 SQLPASSTHROUGH = 4,
6567 TABLEFIELDS = 5
6569 published enum NavigationBarMode {
6570 NONE = 0,
6571 CURRENT = 1,
6572 PARENT = 2
6574 /** @deprecated */ published service PropertyBrowserController {
6575 interface ::com::sun::star::frame::XController;
6576 interface ::com::sun::star::beans::XPropertySet;
6577 interface ::com::sun::star::beans::XFastPropertySet;
6578 interface ::com::sun::star::beans::XMultiPropertySet;
6579 [property] ::com::sun::star::beans::XPropertySet IntrospectedObject;
6580 [property] string CurrentPage;
6582 published service TabOrderDialog: ::com::sun::star::ui::dialogs::XExecutableDialog {
6583 createWithModel([in] ::com::sun::star::awt::XTabControllerModel TabbingModel, [in] ::com::sun::star::awt::XControlContainer ControlContext, [in] ::com::sun::star::awt::XWindow ParentWindow);
6585 published enum TabulatorCycle {
6586 RECORDS = 0,
6587 CURRENT = 1,
6588 PAGE = 2
6590 published interface XApproveActionListener;
6591 published interface XApproveActionBroadcaster {
6592 interface ::com::sun::star::uno::XInterface;
6593 void addApproveActionListener([in] ::com::sun::star::form::XApproveActionListener aListener);
6594 void removeApproveActionListener([in] ::com::sun::star::form::XApproveActionListener aListener);
6596 published interface XApproveActionListener {
6597 interface ::com::sun::star::lang::XEventListener;
6598 boolean approveAction([in] ::com::sun::star::lang::EventObject aEvent);
6600 published interface XBoundControl {
6601 interface ::com::sun::star::uno::XInterface;
6602 boolean getLock();
6603 void setLock([in] boolean bLock);
6605 published interface XChangeListener;
6606 published interface XChangeBroadcaster {
6607 interface ::com::sun::star::uno::XInterface;
6608 void addChangeListener([in] ::com::sun::star::form::XChangeListener aListener);
6609 void removeChangeListener([in] ::com::sun::star::form::XChangeListener aListener);
6611 published interface XChangeListener {
6612 interface ::com::sun::star::lang::XEventListener;
6613 void changed([in] ::com::sun::star::lang::EventObject rEvent);
6616 module sdb {
6617 published struct RowChangeEvent: ::com::sun::star::lang::EventObject {
6618 long Action;
6619 long Rows;
6622 module form {
6623 published interface XConfirmDeleteListener {
6624 interface ::com::sun::star::lang::XEventListener;
6625 boolean confirmDelete([in] ::com::sun::star::sdb::RowChangeEvent aEvent);
6627 published interface XDatabaseParameterListener {
6628 interface ::com::sun::star::lang::XEventListener;
6629 boolean approveParameter([in] ::com::sun::star::form::DatabaseParameterEvent aEvent);
6631 /** @deprecated */ published interface XDeleteListener {
6632 interface ::com::sun::star::lang::XEventListener;
6633 boolean approveDelete([in] ::com::sun::star::lang::EventObject aEvent);
6634 void deleted([in] ::com::sun::star::lang::EventObject aEvent);
6636 published interface XErrorListener;
6637 /** @deprecated */ published interface XErrorBroadcaster {
6638 interface ::com::sun::star::uno::XInterface;
6639 void addErrorListener([in] ::com::sun::star::form::XErrorListener aListener);
6640 void removeErrorListener([in] ::com::sun::star::form::XErrorListener aListener);
6642 /** @deprecated */ published interface XErrorListener {
6643 interface ::com::sun::star::lang::XEventListener;
6644 void errorOccured([in] ::com::sun::star::form::ErrorEvent aEvent);
6646 published interface XForm {
6647 interface ::com::sun::star::form::XFormComponent;
6649 published interface XFormControllerListener {
6650 interface ::com::sun::star::lang::XEventListener;
6651 void formActivated([in] ::com::sun::star::lang::EventObject rEvent);
6652 void formDeactivated([in] ::com::sun::star::lang::EventObject rEvent);
6654 /** @deprecated */ published interface XGrid {
6655 interface ::com::sun::star::uno::XInterface;
6656 short getCurrentColumnPosition();
6657 void setCurrentColumnPosition([in] short nPos);
6659 published interface XGridColumnFactory {
6660 interface ::com::sun::star::uno::XInterface;
6661 ::com::sun::star::beans::XPropertySet createColumn([in] string aColumnType) raises (::com::sun::star::lang::IllegalArgumentException);
6662 sequence< string > getColumnTypes();
6664 /** @deprecated */ published interface XGridFieldDataSupplier {
6665 interface ::com::sun::star::uno::XInterface;
6666 sequence< boolean > queryFieldDataType([in] type xType);
6667 sequence< any > queryFieldData([in] long nRow, [in] type xType);
6669 interface XGridControlListener;
6670 interface XGridControl {
6671 interface ::com::sun::star::form::XGrid;
6672 interface ::com::sun::star::form::XGridFieldDataSupplier;
6673 void addGridControlListener([in] ::com::sun::star::form::XGridControlListener listener);
6674 void removeGridControlListener([in] ::com::sun::star::form::XGridControlListener listener);
6676 /** @deprecated */ published interface XGridPeer {
6677 interface ::com::sun::star::uno::XInterface;
6678 ::com::sun::star::container::XIndexContainer getColumns();
6679 void setColumns([in] ::com::sun::star::container::XIndexContainer aColumns);
6681 published interface XImageProducerSupplier {
6682 interface ::com::sun::star::uno::XInterface;
6683 ::com::sun::star::awt::XImageProducer getImageProducer();
6685 /** @deprecated */ published interface XInsertListener {
6686 interface ::com::sun::star::lang::XEventListener;
6687 void inserting([in] ::com::sun::star::lang::EventObject aEvent);
6688 void inserted([in] ::com::sun::star::lang::EventObject aEvent);
6690 published interface XLoadable {
6691 interface ::com::sun::star::uno::XInterface;
6692 void load();
6693 void unload();
6694 void reload();
6695 boolean isLoaded();
6696 void addLoadListener([in] ::com::sun::star::form::XLoadListener aListener);
6697 void removeLoadListener([in] ::com::sun::star::form::XLoadListener aListener);
6699 /** @deprecated */ published interface XPositioningListener {
6700 interface ::com::sun::star::lang::XEventListener;
6701 void positioned([in] ::com::sun::star::lang::EventObject aEvent);
6703 published interface XResetListener {
6704 interface ::com::sun::star::lang::XEventListener;
6705 boolean approveReset([in] ::com::sun::star::lang::EventObject rEvent);
6706 void resetted([in] ::com::sun::star::lang::EventObject rEvent);
6708 /** @deprecated */ published interface XRestoreListener {
6709 interface ::com::sun::star::lang::XEventListener;
6710 void restored([in] ::com::sun::star::lang::EventObject aEvent);
6712 published interface XSubmitListener;
6713 published interface XSubmit {
6714 interface ::com::sun::star::uno::XInterface;
6715 void submit([in] ::com::sun::star::awt::XControl aControl, [in] ::com::sun::star::awt::MouseEvent aMouseEvt);
6716 void addSubmitListener([in] ::com::sun::star::form::XSubmitListener aListener);
6717 void removeSubmitListener([in] ::com::sun::star::form::XSubmitListener aListener);
6719 /** @deprecated */ published interface XSubmitListener {
6720 interface ::com::sun::star::lang::XEventListener;
6721 boolean approveSubmit([in] ::com::sun::star::lang::EventObject Event);
6723 published interface XUpdateListener {
6724 interface ::com::sun::star::lang::XEventListener;
6725 boolean approveUpdate([in] ::com::sun::star::lang::EventObject aEvent);
6726 void updated([in] ::com::sun::star::lang::EventObject aEvent);
6728 module component {
6729 published service CheckBox {
6730 service ::com::sun::star::awt::UnoControlCheckBoxModel;
6731 service ::com::sun::star::form::FormControlModel;
6732 interface ::com::sun::star::form::XReset;
6733 [property] short DefaultState;
6734 [property] string RefValue;
6736 published service DatabaseCheckBox {
6737 service ::com::sun::star::form::component::CheckBox;
6738 service ::com::sun::star::form::DataAwareControlModel;
6740 published service ComboBox {
6741 service ::com::sun::star::awt::UnoControlComboBoxModel;
6742 service ::com::sun::star::form::FormControlModel;
6743 interface ::com::sun::star::form::XReset;
6744 [property] string DefaultText;
6746 published service DatabaseComboBox {
6747 service ::com::sun::star::form::component::ComboBox;
6748 service ::com::sun::star::form::DataAwareControlModel;
6749 [property] boolean ConvertEmptyToNull;
6750 [property] string ListSource;
6751 [property] ::com::sun::star::form::ListSourceType ListSourceType;
6753 published service DateField {
6754 service ::com::sun::star::awt::UnoControlDateFieldModel;
6755 service ::com::sun::star::form::FormControlModel;
6756 interface ::com::sun::star::form::XReset;
6757 [property] long DefaultDate;
6759 published service DatabaseDateField {
6760 service ::com::sun::star::form::component::DateField;
6761 service ::com::sun::star::form::DataAwareControlModel;
6763 published service FormattedField {
6764 service ::com::sun::star::awt::UnoControlFormattedFieldModel;
6765 service ::com::sun::star::form::FormControlModel;
6766 interface ::com::sun::star::form::XReset;
6768 published service DatabaseFormattedField {
6769 service ::com::sun::star::form::component::FormattedField;
6770 service ::com::sun::star::form::DataAwareControlModel;
6771 [property] boolean ConvertEmptyToNull;
6773 published service ListBox {
6774 service ::com::sun::star::awt::UnoControlListBoxModel;
6775 service ::com::sun::star::form::FormControlModel;
6776 interface ::com::sun::star::form::XReset;
6777 [property] sequence< short > DefaultSelection;
6778 [property] sequence< string > ListSource;
6780 published service DatabaseListBox {
6781 service ::com::sun::star::form::component::ListBox;
6782 service ::com::sun::star::form::DataAwareControlModel;
6783 [property] short BoundColumn;
6784 [property] ::com::sun::star::form::ListSourceType ListSourceType;
6785 [property, optional, transient] sequence< any > SelectedValues;
6786 [property, optional, transient] any SelectedValue;
6788 published service NumericField {
6789 service ::com::sun::star::awt::UnoControlNumericFieldModel;
6790 service ::com::sun::star::form::FormControlModel;
6791 interface ::com::sun::star::form::XReset;
6792 [property] double DefaultValue;
6794 published service DatabaseNumericField {
6795 service ::com::sun::star::form::component::NumericField;
6796 service ::com::sun::star::form::DataAwareControlModel;
6798 published service RadioButton {
6799 service ::com::sun::star::awt::UnoControlRadioButtonModel;
6800 service ::com::sun::star::form::FormControlModel;
6801 interface ::com::sun::star::form::XReset;
6802 [property] short DefaultState;
6803 [property] string RefValue;
6804 [property, optional] string UncheckedRefValue;
6806 published service DatabaseRadioButton {
6807 service ::com::sun::star::form::component::RadioButton;
6808 service ::com::sun::star::form::DataAwareControlModel;
6812 module text {
6813 published service TextRange {
6814 service ::com::sun::star::style::CharacterProperties;
6815 service ::com::sun::star::style::ParagraphProperties;
6816 [optional] service ::com::sun::star::style::CharacterPropertiesAsian;
6817 [optional] service ::com::sun::star::style::CharacterPropertiesComplex;
6818 [optional] service ::com::sun::star::style::ParagraphPropertiesAsian;
6819 [optional] service ::com::sun::star::style::ParagraphPropertiesComplex;
6820 interface ::com::sun::star::text::XTextRange;
6821 interface ::com::sun::star::beans::XPropertySet;
6822 interface ::com::sun::star::beans::XPropertyState;
6823 [optional] interface ::com::sun::star::container::XContentEnumerationAccess;
6826 module form {
6827 module component {
6828 published service RichTextControl {
6829 service ::com::sun::star::awt::UnoControlEditModel;
6830 service ::com::sun::star::form::FormControlModel;
6831 service ::com::sun::star::text::TextRange;
6832 [property] boolean HardLineBreaks;
6833 [property] boolean RichText;
6835 published service TextField {
6836 service ::com::sun::star::awt::UnoControlEditModel;
6837 service ::com::sun::star::form::FormControlModel;
6838 [optional] service ::com::sun::star::form::component::RichTextControl;
6839 interface ::com::sun::star::form::XReset;
6840 [property] string DefaultText;
6842 published service DatabaseTextField {
6843 service ::com::sun::star::form::component::TextField;
6844 service ::com::sun::star::form::DataAwareControlModel;
6845 [property] boolean ConvertEmptyToNull;
6847 published service TimeField {
6848 service ::com::sun::star::awt::UnoControlTimeFieldModel;
6849 service ::com::sun::star::form::FormControlModel;
6850 interface ::com::sun::star::form::XReset;
6851 [property] long DefaultTime;
6853 published service DatabaseTimeField {
6854 service ::com::sun::star::form::component::TimeField;
6855 service ::com::sun::star::form::DataAwareControlModel;
6857 published service CommandButton {
6858 service ::com::sun::star::awt::UnoControlButtonModel;
6859 service ::com::sun::star::form::FormControlModel;
6860 interface ::com::sun::star::form::XImageProducerSupplier;
6861 [optional] interface ::com::sun::star::form::XReset;
6862 [property] ::com::sun::star::form::FormButtonType ButtonType;
6863 [property] string TargetFrame;
6864 [property] string TargetURL;
6865 [property, optional] boolean DefaultState;
6867 published service CurrencyField {
6868 service ::com::sun::star::awt::UnoControlCurrencyFieldModel;
6869 service ::com::sun::star::form::FormControlModel;
6870 interface ::com::sun::star::form::XReset;
6871 [property] double DefaultValue;
6873 published service Form {
6874 service ::com::sun::star::form::FormComponent;
6875 service ::com::sun::star::form::FormComponents;
6876 interface ::com::sun::star::form::XForm;
6877 interface ::com::sun::star::awt::XTabControllerModel;
6881 module sdbc {
6882 published interface XCloseable {
6883 interface ::com::sun::star::uno::XInterface;
6884 void close() raises (::com::sun::star::sdbc::SQLException);
6886 published interface XColumnLocate {
6887 interface ::com::sun::star::uno::XInterface;
6888 long findColumn([in] string columnName) raises (::com::sun::star::sdbc::SQLException);
6890 published interface XResultSetMetaData;
6891 published interface XResultSetMetaDataSupplier {
6892 interface ::com::sun::star::uno::XInterface;
6893 ::com::sun::star::sdbc::XResultSetMetaData getMetaData() raises (::com::sun::star::sdbc::SQLException);
6895 published interface XResultSetUpdate {
6896 interface ::com::sun::star::uno::XInterface;
6897 void insertRow() raises (::com::sun::star::sdbc::SQLException);
6898 void updateRow() raises (::com::sun::star::sdbc::SQLException);
6899 void deleteRow() raises (::com::sun::star::sdbc::SQLException);
6900 void cancelRowUpdates() raises (::com::sun::star::sdbc::SQLException);
6901 void moveToInsertRow() raises (::com::sun::star::sdbc::SQLException);
6902 void moveToCurrentRow() raises (::com::sun::star::sdbc::SQLException);
6904 published interface XArray;
6905 published interface XBlob;
6906 published interface XClob;
6907 published interface XRef;
6908 published interface XRow {
6909 interface ::com::sun::star::uno::XInterface;
6910 boolean wasNull() raises (::com::sun::star::sdbc::SQLException);
6911 string getString([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6912 boolean getBoolean([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6913 byte getByte([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6914 short getShort([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6915 long getInt([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6916 hyper getLong([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6917 float getFloat([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6918 double getDouble([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6919 sequence< byte > getBytes([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6920 ::com::sun::star::util::Date getDate([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6921 ::com::sun::star::util::Time getTime([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6922 ::com::sun::star::util::DateTime getTimestamp([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6923 ::com::sun::star::io::XInputStream getBinaryStream([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6924 ::com::sun::star::io::XInputStream getCharacterStream([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6925 any getObject([in] long columnIndex, [in] ::com::sun::star::container::XNameAccess typeMap) raises (::com::sun::star::sdbc::SQLException);
6926 ::com::sun::star::sdbc::XRef getRef([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6927 ::com::sun::star::sdbc::XBlob getBlob([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6928 ::com::sun::star::sdbc::XClob getClob([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6929 ::com::sun::star::sdbc::XArray getArray([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6931 published interface XRowUpdate {
6932 interface ::com::sun::star::uno::XInterface;
6933 void updateNull([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6934 void updateBoolean([in] long columnIndex, [in] boolean x) raises (::com::sun::star::sdbc::SQLException);
6935 void updateByte([in] long columnIndex, [in] byte x) raises (::com::sun::star::sdbc::SQLException);
6936 void updateShort([in] long columnIndex, [in] short x) raises (::com::sun::star::sdbc::SQLException);
6937 void updateInt([in] long columnIndex, [in] long x) raises (::com::sun::star::sdbc::SQLException);
6938 void updateLong([in] long columnIndex, [in] hyper x) raises (::com::sun::star::sdbc::SQLException);
6939 void updateFloat([in] long columnIndex, [in] float x) raises (::com::sun::star::sdbc::SQLException);
6940 void updateDouble([in] long columnIndex, [in] double x) raises (::com::sun::star::sdbc::SQLException);
6941 void updateString([in] long columnIndex, [in] string x) raises (::com::sun::star::sdbc::SQLException);
6942 void updateBytes([in] long columnIndex, [in] sequence< byte > x) raises (::com::sun::star::sdbc::SQLException);
6943 void updateDate([in] long columnIndex, [in] ::com::sun::star::util::Date x) raises (::com::sun::star::sdbc::SQLException);
6944 void updateTime([in] long columnIndex, [in] ::com::sun::star::util::Time x) raises (::com::sun::star::sdbc::SQLException);
6945 void updateTimestamp([in] long columnIndex, [in] ::com::sun::star::util::DateTime x) raises (::com::sun::star::sdbc::SQLException);
6946 void updateBinaryStream([in] long columnIndex, [in] ::com::sun::star::io::XInputStream x, [in] long length) raises (::com::sun::star::sdbc::SQLException);
6947 void updateCharacterStream([in] long columnIndex, [in] ::com::sun::star::io::XInputStream x, [in] long length) raises (::com::sun::star::sdbc::SQLException);
6948 void updateObject([in] long columnIndex, [in] any x) raises (::com::sun::star::sdbc::SQLException);
6949 void updateNumericObject([in] long columnIndex, [in] any x, [in] long scale) raises (::com::sun::star::sdbc::SQLException);
6951 published interface XWarningsSupplier {
6952 interface ::com::sun::star::uno::XInterface;
6953 any getWarnings() raises (::com::sun::star::sdbc::SQLException);
6954 void clearWarnings() raises (::com::sun::star::sdbc::SQLException);
6956 published service ResultSet {
6957 interface ::com::sun::star::beans::XPropertySet;
6958 interface ::com::sun::star::sdbc::XResultSetMetaDataSupplier;
6959 interface ::com::sun::star::sdbc::XResultSet;
6960 interface ::com::sun::star::sdbc::XRow;
6961 interface ::com::sun::star::sdbc::XColumnLocate;
6962 [optional] interface ::com::sun::star::lang::XComponent;
6963 [optional] interface ::com::sun::star::sdbc::XCloseable;
6964 [optional] interface ::com::sun::star::sdbc::XWarningsSupplier;
6965 [optional] interface ::com::sun::star::sdbc::XResultSetUpdate;
6966 [optional] interface ::com::sun::star::sdbc::XRowUpdate;
6967 [property, optional, readonly] string CursorName;
6968 [property, readonly] long ResultSetConcurrency;
6969 [property, readonly] long ResultSetType;
6970 [property] long FetchDirection;
6971 [property] long FetchSize;
6974 module sdbcx {
6975 published interface XDeleteRows {
6976 interface ::com::sun::star::uno::XInterface;
6977 sequence< long > deleteRows([in] sequence< any > rows) raises (::com::sun::star::sdbc::SQLException);
6979 published interface XRowLocate {
6980 interface ::com::sun::star::uno::XInterface;
6981 any getBookmark() raises (::com::sun::star::sdbc::SQLException);
6982 boolean moveToBookmark([in] any bookmark) raises (::com::sun::star::sdbc::SQLException);
6983 boolean moveRelativeToBookmark([in] any bookmark, [in] long rows) raises (::com::sun::star::sdbc::SQLException);
6984 long compareBookmarks([in] any first, [in] any second) raises (::com::sun::star::sdbc::SQLException);
6985 boolean hasOrderedBookmarks() raises (::com::sun::star::sdbc::SQLException);
6986 long hashBookmark([in] any bookmark) raises (::com::sun::star::sdbc::SQLException);
6989 module util {
6990 published interface XCancellable {
6991 interface ::com::sun::star::uno::XInterface;
6992 void cancel();
6995 module sdbcx {
6996 published service ResultSet {
6997 service ::com::sun::star::sdbc::ResultSet;
6998 interface ::com::sun::star::sdbcx::XRowLocate;
6999 [optional] interface ::com::sun::star::util::XCancellable;
7000 [optional] interface ::com::sun::star::sdbcx::XDeleteRows;
7001 [property, readonly] boolean IsBookmarkable;
7002 [property, optional, readonly] boolean CanUpdateInsertedRows;
7004 published interface XColumnsSupplier {
7005 interface ::com::sun::star::uno::XInterface;
7006 ::com::sun::star::container::XNameAccess getColumns();
7009 module sdb {
7010 published service ResultSet {
7011 service ::com::sun::star::sdbcx::ResultSet;
7012 interface ::com::sun::star::sdbcx::XColumnsSupplier;
7014 published interface XCompletedExecution {
7015 interface ::com::sun::star::uno::XInterface;
7016 void executeWithCompletion([in] ::com::sun::star::task::XInteractionHandler handler) raises (::com::sun::star::sdbc::SQLException);
7018 published interface XParametersSupplier {
7019 interface ::com::sun::star::uno::XInterface;
7020 ::com::sun::star::container::XIndexAccess getParameters();
7022 published interface XResultSetAccess {
7023 interface ::com::sun::star::uno::XInterface;
7024 ::com::sun::star::sdbc::XResultSet createResultSet() raises (::com::sun::star::sdbc::SQLException);
7027 module sdbc {
7028 published service RowSet {
7029 service ::com::sun::star::sdbc::ResultSet;
7030 interface ::com::sun::star::sdbc::XRowSet;
7031 interface ::com::sun::star::sdbc::XParameters;
7032 interface ::com::sun::star::sdbc::XColumnLocate;
7033 [property] string DataSourceName;
7034 [property] string URL;
7035 [property] string Command;
7036 [property] long TransactionIsolation;
7037 [property] ::com::sun::star::container::XNameAccess TypeMap;
7038 [property] boolean EscapeProcessing;
7039 [property] long QueryTimeOut;
7040 [property] long MaxFieldSize;
7041 [property] long MaxRows;
7042 [property] string User;
7043 [property] string Password;
7044 [property] long ResultSetType;
7046 published interface XConnection;
7048 module sdb {
7049 published service RowSet {
7050 service ::com::sun::star::sdbc::RowSet;
7051 service ::com::sun::star::sdb::ResultSet;
7052 interface ::com::sun::star::sdb::XCompletedExecution;
7053 interface ::com::sun::star::sdb::XRowSetApproveBroadcaster;
7054 interface ::com::sun::star::sdb::XResultSetAccess;
7055 [optional] interface ::com::sun::star::sdbc::XResultSetUpdate;
7056 [optional] interface ::com::sun::star::sdbcx::XDeleteRows;
7057 [optional] interface ::com::sun::star::sdb::XParametersSupplier;
7058 [property] ::com::sun::star::sdbc::XConnection ActiveConnection;
7059 [property] string DataSourceName;
7060 [property] string Command;
7061 [property] long CommandType;
7062 [property, readonly] string ActiveCommand;
7063 [property] boolean IgnoreResult;
7064 [property] string Filter;
7065 [property] boolean ApplyFilter;
7066 [property, optional] string HavingClause;
7067 [property, optional] string GroupBy;
7068 [property] string Order;
7069 [property, readonly] long Privileges;
7070 [property, readonly] boolean IsModified;
7071 [property, readonly] boolean IsNew;
7072 [property, readonly] long RowCount;
7073 [property, readonly] boolean IsRowCountFinal;
7074 [property, optional] string UpdateTableName;
7075 [property, optional] string UpdateCatalogName;
7076 [property, optional] string UpdateSchemaName;
7079 module form {
7080 module component {
7081 published service DataForm {
7082 service ::com::sun::star::sdb::RowSet;
7083 service ::com::sun::star::form::component::Form;
7084 interface ::com::sun::star::form::XReset;
7085 interface ::com::sun::star::form::XLoadable;
7086 interface ::com::sun::star::sdb::XCompletedExecution;
7087 interface ::com::sun::star::form::XDatabaseParameterBroadcaster;
7088 [property] sequence< string > MasterFields;
7089 [property] sequence< string > DetailFields;
7090 [property] ::com::sun::star::form::TabulatorCycle Cycle;
7091 [property] ::com::sun::star::form::NavigationBarMode NavigationBarMode;
7092 [property] boolean AllowInserts;
7093 [property] boolean AllowUpdates;
7094 [property] boolean AllowDeletes;
7096 published service DatabaseCurrencyField {
7097 service ::com::sun::star::form::component::CurrencyField;
7098 service ::com::sun::star::form::DataAwareControlModel;
7100 published service DatabaseImageControl {
7101 service ::com::sun::star::awt::UnoControlImageControlModel;
7102 service ::com::sun::star::form::DataAwareControlModel;
7103 interface ::com::sun::star::form::XImageProducerSupplier;
7104 [property] boolean ReadOnly;
7106 published service PatternField {
7107 service ::com::sun::star::awt::UnoControlPatternFieldModel;
7108 service ::com::sun::star::form::FormControlModel;
7109 interface ::com::sun::star::form::XReset;
7110 [property] string DefaultText;
7112 published service DatabasePatternField {
7113 service ::com::sun::star::form::component::PatternField;
7114 service ::com::sun::star::form::DataAwareControlModel;
7115 [property] boolean ConvertEmptyToNull;
7117 published service FileControl {
7118 service ::com::sun::star::awt::UnoControlFileControlModel;
7119 service ::com::sun::star::form::FormControlModel;
7120 interface ::com::sun::star::form::XReset;
7121 [property] string DefaultText;
7123 published service FixedText {
7124 service ::com::sun::star::awt::UnoControlFixedTextModel;
7125 service ::com::sun::star::form::FormControlModel;
7127 published service GridControl {
7128 service ::com::sun::star::form::FormControlModel;
7129 service ::com::sun::star::form::FormComponents;
7130 interface ::com::sun::star::form::XGridColumnFactory;
7131 /** @deprecated */ interface ::com::sun::star::view::XSelectionSupplier;
7132 interface ::com::sun::star::form::XReset;
7133 [property] short Border;
7134 [property, optional] long BorderColor;
7135 [property] boolean Enabled;
7136 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
7137 [property] long RowHeight;
7138 [property] boolean Tabstop;
7139 [property] ::com::sun::star::util::Color TextColor;
7141 published service GroupBox {
7142 service ::com::sun::star::awt::UnoControlGroupBoxModel;
7143 service ::com::sun::star::form::FormControlModel;
7145 published service HTMLForm {
7146 service ::com::sun::star::form::component::Form;
7147 interface ::com::sun::star::form::XReset;
7148 interface ::com::sun::star::form::XSubmit;
7149 [property] string TargetFrame;
7150 [property] string TargetURL;
7151 [property] ::com::sun::star::form::FormSubmitMethod SubmitMethod;
7152 [property] ::com::sun::star::form::FormSubmitEncoding SubmitEncoding;
7154 published service HiddenControl {
7155 service ::com::sun::star::form::FormComponent;
7156 [property] string HiddenValue;
7158 published service ImageButton {
7159 service ::com::sun::star::awt::UnoControlImageControlModel;
7160 service ::com::sun::star::form::FormControlModel;
7161 interface ::com::sun::star::form::XImageProducerSupplier;
7162 [property] ::com::sun::star::form::FormButtonType ButtonType;
7163 [property] string TargetFrame;
7164 [property] string TargetURL;
7167 module control {
7168 published service CheckBox {
7169 service ::com::sun::star::awt::UnoControlCheckBox;
7170 interface ::com::sun::star::form::XBoundControl;
7172 published service ComboBox {
7173 service ::com::sun::star::awt::UnoControlComboBox;
7174 interface ::com::sun::star::form::XBoundControl;
7176 published service CommandButton {
7177 service ::com::sun::star::awt::UnoControlButton;
7178 interface ::com::sun::star::form::XApproveActionBroadcaster;
7180 published service CurrencyField {
7181 service ::com::sun::star::awt::UnoControlCurrencyField;
7182 interface ::com::sun::star::form::XBoundControl;
7184 published service DateField {
7185 service ::com::sun::star::awt::UnoControlDateField;
7186 interface ::com::sun::star::form::XBoundControl;
7188 published service FormattedField {
7189 service ::com::sun::star::awt::UnoControlFormattedField;
7190 interface ::com::sun::star::form::XBoundControl;
7194 module frame {
7195 published interface XDispatchProviderInterceptor;
7196 published interface XDispatchProviderInterception {
7197 interface ::com::sun::star::uno::XInterface;
7198 void registerDispatchProviderInterceptor([in] ::com::sun::star::frame::XDispatchProviderInterceptor Interceptor);
7199 void releaseDispatchProviderInterceptor([in] ::com::sun::star::frame::XDispatchProviderInterceptor Interceptor);
7202 module util {
7203 published interface XModeSelector {
7204 interface ::com::sun::star::uno::XInterface;
7205 void setMode([in] string aMode) raises (::com::sun::star::lang::NoSupportException);
7206 string getMode();
7207 sequence< string > getSupportedModes();
7208 boolean supportsMode([in] string aMode);
7211 module form {
7212 module control {
7213 published service GridControl {
7214 service ::com::sun::star::awt::UnoControl;
7215 interface ::com::sun::star::form::XBoundComponent;
7216 interface ::com::sun::star::form::XGrid;
7217 interface ::com::sun::star::util::XModifyBroadcaster;
7218 interface ::com::sun::star::container::XIndexAccess;
7219 interface ::com::sun::star::container::XEnumerationAccess;
7220 [optional] interface ::com::sun::star::form::XGridControl;
7221 [optional] interface ::com::sun::star::form::XGridFieldDataSupplier;
7222 [optional] interface ::com::sun::star::util::XModeSelector;
7223 [optional] interface ::com::sun::star::view::XSelectionSupplier;
7224 [optional] interface ::com::sun::star::frame::XDispatchProviderInterception;
7226 published service GroupBox {
7227 service ::com::sun::star::awt::UnoControlGroupBox;
7229 published service ImageButton {
7230 service ::com::sun::star::awt::UnoControlImageControl;
7231 interface ::com::sun::star::form::XApproveActionBroadcaster;
7233 published service ImageControl {
7234 service ::com::sun::star::awt::UnoControlImageControl;
7235 interface ::com::sun::star::form::XBoundControl;
7237 published service InteractionGridControl {
7238 service ::com::sun::star::form::control::GridControl;
7239 interface ::com::sun::star::frame::XDispatch;
7241 published service ListBox {
7242 service ::com::sun::star::awt::UnoControlListBox;
7243 interface ::com::sun::star::form::XBoundControl;
7244 interface ::com::sun::star::form::XChangeBroadcaster;
7246 published service NumericField {
7247 service ::com::sun::star::awt::UnoControlNumericField;
7248 interface ::com::sun::star::form::XBoundControl;
7250 published service PatternField {
7251 service ::com::sun::star::awt::UnoControlPatternField;
7252 interface ::com::sun::star::form::XBoundControl;
7254 published service RadioButton {
7255 service ::com::sun::star::awt::UnoControlRadioButton;
7256 interface ::com::sun::star::form::XBoundControl;
7258 published service TextField {
7259 service ::com::sun::star::awt::UnoControlEdit;
7260 interface ::com::sun::star::form::XBoundControl;
7261 interface ::com::sun::star::form::XChangeBroadcaster;
7263 published service TimeField {
7264 service ::com::sun::star::awt::UnoControlTimeField;
7265 interface ::com::sun::star::form::XBoundControl;
7269 module formula {
7270 published service FormulaProperties {
7271 [property] short Alignment;
7272 [property] short BaseFontHeight;
7273 [property] string CustomFontNameFixed;
7274 [property] boolean FontFixedIsItalic;
7275 [property] boolean FontFixedIsBold;
7276 [property] string CustomFontNameSans;
7277 [property] boolean FontSansIsItalic;
7278 [property] boolean FontSansIsBold;
7279 [property] string CustomFontNameSerif;
7280 [property] boolean FontSerifIsItalic;
7281 [property] boolean FontSerifIsBold;
7282 [property] string FontNameFunctions;
7283 [property] boolean FontFunctionsIsItalic;
7284 [property] boolean FontFunctionsIsBold;
7285 [property] string FontNameNumbers;
7286 [property] boolean FontNumbersIsItalic;
7287 [property] boolean FontNumbersIsBold;
7288 [property] string FontNameText;
7289 [property] boolean FontTextIsItalic;
7290 [property] boolean FontTextIsBold;
7291 [property] string FontNameVariables;
7292 [property] boolean FontVariablesIsItalic;
7293 [property] boolean FontVariablesIsBold;
7294 [property] string Formula;
7295 [property] boolean IsScaleAllBrackets;
7296 [property] boolean IsTextMode;
7297 [property] short RelativeFontHeightFunctions;
7298 [property] short RelativeFontHeightIndices;
7299 [property] short RelativeFontHeightLimits;
7300 [property] short RelativeFontHeightOperators;
7301 [property] short RelativeFontHeightText;
7302 [property] short RelativeBracketDistance;
7303 [property] short RelativeBracketExcessSize;
7304 [property] short RelativeFractionBarExcessLength;
7305 [property] short RelativeFractionBarLineWeight;
7306 [property] short RelativeFractionDenominatorDepth;
7307 [property] short RelativeFractionNumeratorHeight;
7308 [property] short RelativeIndexSubscript;
7309 [property] short RelativeIndexSuperscript;
7310 [property] short RelativeLineSpacing;
7311 [property] short RelativeLowerLimitDistance;
7312 [property] short RelativeMatrixColumnSpacing;
7313 [property] short RelativeMatrixLineSpacing;
7314 [property] short RelativeOperatorExcessSize;
7315 [property] short RelativeOperatorSpacing;
7316 [property] short RelativeRootSpacing;
7317 [property] short RelativeScaleBracketExcessSize;
7318 [property] short RelativeSpacing;
7319 [property] short RelativeSymbolMinimumHeight;
7320 [property] short RelativeSymbolPrimaryHeight;
7321 [property] short RelativeUpperLimitDistance;
7322 [property] short TopMargin;
7323 [property] short BottomMargin;
7324 [property] short LeftMargin;
7325 [property] short RightMargin;
7326 [property, optional] short BaseLine;
7328 /** @deprecated */ published struct SymbolDescriptor {
7329 string sName;
7330 string sExportName;
7331 string sSymbolSet;
7332 long nCharacter;
7333 string sFontName;
7334 short nCharSet;
7335 short nFamily;
7336 short nPitch;
7337 short nWeight;
7338 short nItalic;
7341 module frame {
7342 published struct DispatchInformation {
7343 string Command;
7344 short GroupId;
7346 published interface XDispatchInformationProvider {
7347 interface ::com::sun::star::uno::XInterface;
7348 sequence< short > getSupportedCommandGroups();
7349 sequence< ::com::sun::star::frame::DispatchInformation > getConfigurableDispatchInformation([in] short CommandGroup);
7351 published service Bibliography: ::com::sun::star::container::XNameAccess;
7352 published constants CommandGroup {
7353 const short APPLICATION = 1;
7354 const short CHART = 20;
7355 const short CONNECTOR = 22;
7356 const short CONTROLS = 25;
7357 const short DATA = 17;
7358 const short DOCUMENT = 3;
7359 const short DRAWING = 24;
7360 const short EDIT = 4;
7361 const short ENUMERATION = 16;
7362 const short EXPLORER = 21;
7363 const short FORMAT = 10;
7364 const short FRAME = 13;
7365 const short GRAPHIC = 14;
7366 const short IMAGE = 19;
7367 const short INSERT = 9;
7368 const short INTERNAL = 0;
7369 const short MACRO = 5;
7370 const short MATH = 7;
7371 const short MODIFY = 23;
7372 const short NAVIGATOR = 8;
7373 const short OPTIONS = 6;
7374 const short SPECIAL = 18;
7375 const short TABLE = 15;
7376 const short TEMPLATE = 11;
7377 const short TEXT = 12;
7378 const short VIEW = 2;
7380 published service Components {
7381 interface ::com::sun::star::container::XEnumerationAccess;
7383 published interface XDispatchResultListener;
7384 published interface XNotifyingDispatch {
7385 interface ::com::sun::star::frame::XDispatch;
7386 void dispatchWithNotification([in] ::com::sun::star::util::URL URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments, [in] ::com::sun::star::frame::XDispatchResultListener Listener);
7388 published service ContentHandler {
7389 interface ::com::sun::star::frame::XNotifyingDispatch;
7391 published interface XLoaderFactory {
7392 interface ::com::sun::star::lang::XMultiServiceFactory;
7393 interface ::com::sun::star::container::XNameAccess;
7394 interface ::com::sun::star::container::XContainerQuery;
7396 published service ContentHandlerFactory: ::com::sun::star::frame::XLoaderFactory;
7397 published interface XComponentLoader {
7398 interface ::com::sun::star::uno::XInterface;
7399 ::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);
7401 published interface XFrame;
7402 published interface XTerminateListener;
7403 published interface XDesktop {
7404 interface ::com::sun::star::uno::XInterface;
7405 boolean terminate();
7406 void addTerminateListener([in] ::com::sun::star::frame::XTerminateListener Listener);
7407 void removeTerminateListener([in] ::com::sun::star::frame::XTerminateListener Listener);
7408 ::com::sun::star::container::XEnumerationAccess getComponents();
7409 ::com::sun::star::lang::XComponent getCurrentComponent();
7410 ::com::sun::star::frame::XFrame getCurrentFrame();
7412 published interface XFrameActionListener;
7413 published interface XFramesSupplier;
7414 published interface XFrame {
7415 interface ::com::sun::star::lang::XComponent;
7416 void initialize([in] ::com::sun::star::awt::XWindow xWindow);
7417 ::com::sun::star::awt::XWindow getContainerWindow();
7418 void setCreator([in] ::com::sun::star::frame::XFramesSupplier Creator);
7419 ::com::sun::star::frame::XFramesSupplier getCreator();
7420 string getName();
7421 void setName([in] string aName);
7422 ::com::sun::star::frame::XFrame findFrame([in] string aTargetFrameName, [in] long nSearchFlags);
7423 boolean isTop();
7424 void activate();
7425 void deactivate();
7426 boolean isActive();
7427 boolean setComponent([in] ::com::sun::star::awt::XWindow xComponentWindow, [in] ::com::sun::star::frame::XController xController);
7428 ::com::sun::star::awt::XWindow getComponentWindow();
7429 ::com::sun::star::frame::XController getController();
7430 void contextChanged();
7431 void addFrameActionListener([in] ::com::sun::star::frame::XFrameActionListener xListener);
7432 void removeFrameActionListener([in] ::com::sun::star::frame::XFrameActionListener xListener);
7434 published interface XFrames;
7435 published interface XFramesSupplier {
7436 interface ::com::sun::star::frame::XFrame;
7437 ::com::sun::star::frame::XFrames getFrames();
7438 ::com::sun::star::frame::XFrame getActiveFrame();
7439 void setActiveFrame([in] ::com::sun::star::frame::XFrame Frame);
7441 published interface XDesktop2 {
7442 interface ::com::sun::star::frame::XDispatchProvider;
7443 interface ::com::sun::star::frame::XDispatchProviderInterception;
7444 interface ::com::sun::star::frame::XFramesSupplier;
7445 interface ::com::sun::star::frame::XDesktop;
7446 interface ::com::sun::star::frame::XComponentLoader;
7448 /** @deprecated */ published service Desktop: ::com::sun::star::frame::XDesktop2;
7449 /** @deprecated */ published interface XDesktopTask {
7450 interface ::com::sun::star::lang::XComponent;
7451 /** @deprecated */ void initialize([in] ::com::sun::star::awt::XWindow TaskWindow);
7452 /** @deprecated */ boolean close();
7454 /** @deprecated */ published interface XWindowArranger {
7455 interface ::com::sun::star::uno::XInterface;
7456 /** @deprecated */ boolean hasArrangeCommand([in] short nCommand);
7457 /** @deprecated */ void arrange([in] short nCommand);
7459 /** @deprecated */ published service DesktopTask {
7460 interface ::com::sun::star::frame::XDesktopTask;
7461 interface ::com::sun::star::frame::XFrame;
7462 interface ::com::sun::star::beans::XPropertySet;
7463 interface ::com::sun::star::frame::XWindowArranger;
7464 interface ::com::sun::star::frame::XFramesSupplier;
7465 [property, readonly] string Title;
7466 [property, readonly] boolean IsDesktop;
7467 [property] boolean IsVisible;
7468 [property] boolean IsFloating;
7469 [property] boolean IsAlwaysVisible;
7470 [property] ::com::sun::star::awt::Point Position;
7471 [property] ::com::sun::star::awt::Size Size;
7473 /** @deprecated */ published service DesktopTasks {
7474 interface ::com::sun::star::container::XEnumerationAccess;
7476 published interface XDispatchHelper {
7477 interface ::com::sun::star::uno::XInterface;
7478 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);
7480 published service DispatchHelper: ::com::sun::star::frame::XDispatchHelper;
7481 published service DispatchProvider {
7482 interface ::com::sun::star::frame::XDispatchProvider;
7483 [optional] interface ::com::sun::star::frame::XDispatchProviderInterception;
7485 published interface XDispatchRecorder {
7486 interface ::com::sun::star::uno::XInterface;
7487 void startRecording([in] ::com::sun::star::frame::XFrame Frame);
7488 void endRecording();
7489 void recordDispatch([in] ::com::sun::star::util::URL URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments);
7490 void recordDispatchAsComment([in] ::com::sun::star::util::URL URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments);
7491 string getRecordedMacro();
7493 published service DispatchRecorder: ::com::sun::star::frame::XDispatchRecorder;
7494 published interface XDispatchRecorderSupplier {
7495 interface ::com::sun::star::uno::XInterface;
7496 void setDispatchRecorder([in] ::com::sun::star::frame::XDispatchRecorder Recorder);
7497 ::com::sun::star::frame::XDispatchRecorder getDispatchRecorder();
7498 void dispatchAndRecord([in] ::com::sun::star::util::URL URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments, [in] ::com::sun::star::frame::XDispatch Dispatcher);
7500 published service DispatchRecorderSupplier: ::com::sun::star::frame::XDispatchRecorderSupplier;
7501 published struct DispatchResultEvent: ::com::sun::star::lang::EventObject {
7502 short State;
7503 any Result;
7505 published constants DispatchResultState {
7506 const short DONTKNOW = 2;
7507 const short FAILURE = 0;
7508 const short SUCCESS = 1;
7510 published struct DispatchStatement {
7511 string aCommand;
7512 string aTarget;
7513 sequence< ::com::sun::star::beans::PropertyValue > aArgs;
7514 long nFlags;
7515 boolean bIsComment;
7518 module ucb {
7519 published interface XContent;
7521 module frame {
7522 published interface XDocumentTemplates {
7523 interface ::com::sun::star::uno::XInterface;
7524 ::com::sun::star::ucb::XContent getContent();
7525 boolean storeTemplate([in] string GroupName, [in] string TemplateName, [in] ::com::sun::star::frame::XStorable Storable);
7526 boolean addTemplate([in] string GroupName, [in] string TemplateName, [in] string SourceURL);
7527 boolean removeTemplate([in] string GroupName, [in] string TemplateName);
7528 boolean renameTemplate([in] string GroupName, [in] string OldTemplateName, [in] string NewTemplateName);
7529 boolean addGroup([in] string GroupName);
7530 boolean removeGroup([in] string GroupName);
7531 boolean renameGroup([in] string OldGroupName, [in] string NewGroupName);
7532 void update();
7534 published service DocumentTemplates: ::com::sun::star::frame::XDocumentTemplates;
7535 published struct FeatureStateEvent: ::com::sun::star::lang::EventObject {
7536 ::com::sun::star::util::URL FeatureURL;
7537 string FeatureDescriptor;
7538 boolean IsEnabled;
7539 boolean Requery;
7540 any State;
7543 module task {
7544 published interface XStatusIndicator;
7545 published interface XStatusIndicatorFactory {
7546 interface ::com::sun::star::uno::XInterface;
7547 ::com::sun::star::task::XStatusIndicator createStatusIndicator();
7550 module frame {
7551 published interface XFrame2 {
7552 interface ::com::sun::star::frame::XDispatchProvider;
7553 interface ::com::sun::star::frame::XDispatchInformationProvider;
7554 interface ::com::sun::star::frame::XDispatchProviderInterception;
7555 interface ::com::sun::star::frame::XFramesSupplier;
7556 interface ::com::sun::star::task::XStatusIndicatorFactory;
7557 [attribute, readonly] ::com::sun::star::container::XNameContainer UserDefinedAttributes;
7558 [attribute] string Title;
7559 [attribute] ::com::sun::star::frame::XDispatchRecorderSupplier DispatchRecorderSupplier;
7560 [attribute] ::com::sun::star::uno::XInterface LayoutManager;
7562 published service Frame: ::com::sun::star::frame::XFrame2;
7563 published enum FrameAction {
7564 COMPONENT_ATTACHED = 0,
7565 COMPONENT_DETACHING = 1,
7566 COMPONENT_REATTACHED = 2,
7567 FRAME_ACTIVATED = 3,
7568 FRAME_DEACTIVATING = 4,
7569 CONTEXT_CHANGED = 5,
7570 FRAME_UI_ACTIVATED = 6,
7571 FRAME_UI_DEACTIVATING = 7
7573 published struct FrameActionEvent: ::com::sun::star::lang::EventObject {
7574 ::com::sun::star::frame::XFrame Frame;
7575 ::com::sun::star::frame::FrameAction Action;
7577 published service FrameControl {
7578 service ::com::sun::star::awt::UnoControl;
7579 [property] string ComponentUrl;
7580 [property, readonly] string Frame;
7582 published interface XLoadEventListener;
7583 published interface XFrameLoader {
7584 interface ::com::sun::star::uno::XInterface;
7585 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);
7586 void cancel();
7588 published service FrameLoader {
7589 interface ::com::sun::star::frame::XFrameLoader;
7590 [optional] interface ::com::sun::star::lang::XInitialization;
7591 [optional] interface ::com::sun::star::container::XNamed;
7593 published service FrameLoaderFactory: ::com::sun::star::frame::XLoaderFactory;
7594 published constants FrameSearchFlag {
7595 const long ALL = 23;
7596 /** @deprecated */ const long AUTO = 0;
7597 const long CHILDREN = 4;
7598 const long CREATE = 8;
7599 const long GLOBAL = 55;
7600 const long PARENT = 1;
7601 const long SELF = 2;
7602 const long SIBLINGS = 16;
7603 const long TASKS = 32;
7605 published interface XFrames {
7606 interface ::com::sun::star::container::XIndexAccess;
7607 void append([in] ::com::sun::star::frame::XFrame xFrame);
7608 sequence< ::com::sun::star::frame::XFrame > queryFrames([in] long nSearchFlags);
7609 void remove([in] ::com::sun::star::frame::XFrame xFrame);
7611 published service FramesContainer {
7612 interface ::com::sun::star::frame::XFrames;
7614 published exception IllegalArgumentIOException: ::com::sun::star::io::IOException {
7616 published interface XFrameActionListener {
7617 interface ::com::sun::star::lang::XEventListener;
7618 void frameAction([in] ::com::sun::star::frame::FrameActionEvent Action);
7621 module ui {
7622 published struct ConfigurationEvent: ::com::sun::star::container::ContainerEvent {
7623 string ResourceURL;
7624 any aInfo;
7627 module util {
7628 published interface XStringMapping {
7629 interface ::com::sun::star::uno::XInterface;
7630 boolean mapStrings([inout] sequence< string > Parameter);
7633 module frame {
7634 published service MediaTypeDetectionHelper: ::com::sun::star::util::XStringMapping;
7635 published interface XSynchronousFrameLoader {
7636 interface ::com::sun::star::uno::XInterface;
7637 boolean load([in] sequence< ::com::sun::star::beans::PropertyValue > Descriptor, [in] ::com::sun::star::frame::XFrame Frame);
7638 void cancel();
7640 published interface XStatusListener {
7641 interface ::com::sun::star::lang::XEventListener;
7642 void statusChanged([in] ::com::sun::star::frame::FeatureStateEvent State);
7644 published interface XUIControllerRegistration {
7645 interface ::com::sun::star::uno::XInterface;
7646 boolean hasController([in] string aCommandURL, [in] string aModelName);
7647 void registerController([in] string aCommandURL, [in] string aModelName, [in] string aControllerImplementationName);
7648 void deregisterController([in] string aCommandURL, [in] string aModelName);
7650 published service ProtocolHandler {
7651 interface ::com::sun::star::frame::XDispatchProvider;
7652 [optional] interface ::com::sun::star::lang::XInitialization;
7654 /** @deprecated */ published service Settings {
7655 interface ::com::sun::star::container::XNameAccess;
7658 module util {
7659 published interface XUpdatable {
7660 interface ::com::sun::star::uno::XInterface;
7661 void update();
7664 module frame {
7665 published service SynchronousFrameLoader {
7666 interface ::com::sun::star::frame::XSynchronousFrameLoader;
7667 [optional] interface ::com::sun::star::lang::XInitialization;
7668 [optional] interface ::com::sun::star::container::XNamed;
7670 /** @deprecated */ published interface XTask {
7671 interface ::com::sun::star::frame::XFrame;
7672 /** @deprecated */ boolean close();
7673 /** @deprecated */ void tileWindows();
7674 /** @deprecated */ void arrangeWindowsVertical();
7675 /** @deprecated */ void arrangeWindowsHorizontal();
7677 /** @deprecated */ published service Task {
7678 /** @deprecated */ interface ::com::sun::star::frame::XFrame;
7679 /** @deprecated */ interface ::com::sun::star::frame::XTask;
7681 published service TemplateAccess {
7682 interface ::com::sun::star::frame::XDocumentTemplates;
7683 interface ::com::sun::star::lang::XLocalizable;
7685 published exception TerminationVetoException: ::com::sun::star::uno::Exception {
7687 published constants WindowArrange {
7688 const short CASCADE = 4;
7689 const short HORIZONTAL = 3;
7690 const short MAXIMIZE = 5;
7691 const short MINIMIZE = 6;
7692 const short TILE = 1;
7693 const short VERTICAL = 2;
7695 /** @deprecated */ published interface XBrowseHistoryRegistry {
7696 interface ::com::sun::star::uno::XInterface;
7697 /** @deprecated */ void updateViewData([in] any Value);
7698 /** @deprecated */ void createNewEntry([in] string URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments, [in] string Title);
7700 /** @deprecated */ published interface XComponentRegistry {
7701 interface ::com::sun::star::uno::XInterface;
7702 /** @deprecated */ ::com::sun::star::uno::XInterface createObject([in] string URL, [in] ::com::sun::star::uno::Uik Uik);
7704 /** @deprecated */ published interface XConfigManager {
7705 interface ::com::sun::star::uno::XInterface;
7706 /** @deprecated */ void addPropertyChangeListener([in] string KeyName, [in] ::com::sun::star::beans::XPropertyChangeListener Listener);
7707 /** @deprecated */ void removePropertyChangeListener([in] string KeyName, [in] ::com::sun::star::beans::XPropertyChangeListener Listener);
7708 string substituteVariables([in] string Text);
7709 /** @deprecated */ void flush();
7711 published interface XDispatchProviderInterceptor {
7712 interface ::com::sun::star::frame::XDispatchProvider;
7713 ::com::sun::star::frame::XDispatchProvider getSlaveDispatchProvider();
7714 void setSlaveDispatchProvider([in] ::com::sun::star::frame::XDispatchProvider NewDispatchProvider);
7715 ::com::sun::star::frame::XDispatchProvider getMasterDispatchProvider();
7716 void setMasterDispatchProvider([in] ::com::sun::star::frame::XDispatchProvider NewSupplier);
7718 published interface XDispatchResultListener {
7719 interface ::com::sun::star::lang::XEventListener;
7720 void dispatchFinished([in] ::com::sun::star::frame::DispatchResultEvent Result);
7722 /** @deprecated */ published interface XExtendedFilterDetection {
7723 interface ::com::sun::star::uno::XInterface;
7724 /** @deprecated */ string detect([in] string URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Argumentlist);
7726 /** @deprecated */ published interface XFilterDetect {
7727 interface ::com::sun::star::uno::XInterface;
7728 string getContentType([in] string URL);
7729 boolean useExternBrowser([in] string URL);
7731 /** @deprecated */ published interface XFrameLoaderQuery {
7732 interface ::com::sun::star::uno::XInterface;
7733 /** @deprecated */ sequence< string > getAvailableFilterNames();
7734 /** @deprecated */ sequence< ::com::sun::star::beans::PropertyValue > getLoaderProperties([in] string sFilterName);
7735 /** @deprecated */ string searchFilter([in] string sURL, [in] sequence< ::com::sun::star::beans::PropertyValue > seqArguments);
7737 /** @deprecated */ published interface XFrameSetModel {
7738 interface ::com::sun::star::uno::XInterface;
7739 string getSource();
7740 void setSource([in] string Source);
7742 published interface XInterceptorInfo {
7743 interface ::com::sun::star::uno::XInterface;
7744 sequence< string > getInterceptedURLs();
7746 published interface XLoadEventListener {
7747 interface ::com::sun::star::lang::XEventListener;
7748 void loadFinished([in] ::com::sun::star::frame::XFrameLoader Loader);
7749 void loadCancelled([in] ::com::sun::star::frame::XFrameLoader Loader);
7751 published interface XLoadable {
7752 interface ::com::sun::star::uno::XInterface;
7753 void initNew() raises (::com::sun::star::frame::DoubleInitializationException, ::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
7754 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);
7756 published interface XRecordableDispatch {
7757 interface ::com::sun::star::uno::XInterface;
7758 void dispatchAndRecord([in] ::com::sun::star::util::URL URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments, [in] ::com::sun::star::frame::XDispatchRecorder Recorder);
7760 published interface XStorable2 {
7761 interface ::com::sun::star::frame::XStorable;
7762 void storeSelf([in] sequence< ::com::sun::star::beans::PropertyValue > lArguments) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::io::IOException);
7764 published interface XSynchronousDispatch {
7765 interface ::com::sun::star::uno::XInterface;
7766 any dispatchWithReturnValue([in] ::com::sun::star::util::URL URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments);
7768 /** @deprecated */ published interface XTasksSupplier {
7769 interface ::com::sun::star::uno::XInterface;
7770 /** @deprecated */ ::com::sun::star::container::XEnumerationAccess getTasks();
7771 /** @deprecated */ ::com::sun::star::frame::XTask getActiveTask();
7773 published interface XTerminateListener {
7774 interface ::com::sun::star::lang::XEventListener;
7775 void queryTermination([in] ::com::sun::star::lang::EventObject Event) raises (::com::sun::star::frame::TerminationVetoException);
7776 void notifyTermination([in] ::com::sun::star::lang::EventObject Event);
7778 /** @deprecated */ published interface XUrlList {
7779 interface ::com::sun::star::uno::XInterface;
7780 [attribute] sequence< string > List;
7782 published singleton theDesktop: ::com::sun::star::frame::XDesktop2;
7784 module graphic {
7785 published service GraphicDescriptor {
7786 interface ::com::sun::star::beans::XPropertySet;
7787 [property] byte GraphicType;
7788 [property] string MimeType;
7789 [property, optional] ::com::sun::star::awt::Size SizePixel;
7790 [property, optional] ::com::sun::star::awt::Size Size100thMM;
7791 [property, optional] byte BitsPerPixel;
7792 [property, optional] boolean Transparent;
7793 [property, optional] boolean Alpha;
7794 [property, optional] boolean Animated;
7796 published interface XGraphic {
7797 interface ::com::sun::star::uno::XInterface;
7798 byte getType();
7800 published service Graphic {
7801 service ::com::sun::star::graphic::GraphicDescriptor;
7802 interface ::com::sun::star::graphic::XGraphic;
7804 published interface XGraphicProvider {
7805 interface ::com::sun::star::uno::XInterface;
7806 ::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);
7807 ::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);
7808 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);
7810 published service GraphicProvider: ::com::sun::star::graphic::XGraphicProvider;
7811 published constants GraphicType {
7812 const byte EMPTY = 0;
7813 const byte PIXEL = 1;
7814 const byte VECTOR = 2;
7816 published service MediaProperties {
7817 [property, optional] string URL;
7818 [property, optional] ::com::sun::star::io::XInputStream InputStream;
7819 [property, optional] ::com::sun::star::io::XStream OutputStream;
7820 [property, optional] string MimeType;
7821 [property, optional] ::com::sun::star::beans::PropertyValues FilterData;
7824 module i18n {
7825 published constants AmPmValue {
7826 const short AM = 0;
7827 const short PM = 1;
7829 published struct Boundary {
7830 long startPos;
7831 long endPos;
7834 module linguistic2 {
7835 published interface XHyphenator;
7837 module i18n {
7838 published struct LineBreakHyphenationOptions {
7839 ::com::sun::star::linguistic2::XHyphenator rHyphenator;
7840 ::com::sun::star::beans::PropertyValues aHyphenationOptions;
7841 long hyphenIndex;
7844 module linguistic2 {
7845 published interface XHyphenatedWord;
7847 module i18n {
7848 published struct LineBreakResults {
7849 short breakType;
7850 long breakIndex;
7851 ::com::sun::star::linguistic2::XHyphenatedWord rHyphenatedWord;
7853 published struct LineBreakUserOptions {
7854 string forbiddenBeginCharacters;
7855 string forbiddenEndCharacters;
7856 boolean applyForbiddenRules;
7857 boolean allowPunctuationOutsideMargin;
7858 boolean allowHyphenateEnglish;
7860 published interface XBreakIterator {
7861 interface ::com::sun::star::uno::XInterface;
7862 long nextCharacters([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nCharacterIteratorMode, [in] long nCount, [out] long nDone);
7863 long previousCharacters([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nCharacterIteratorMode, [in] long nCount, [out] long nDone);
7864 ::com::sun::star::i18n::Boundary nextWord([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nWordType);
7865 ::com::sun::star::i18n::Boundary previousWord([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nWordType);
7866 ::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);
7867 /** @deprecated */ short getWordType([in] string aText, [in] long nPos, [in] ::com::sun::star::lang::Locale aLocale);
7868 boolean isBeginWord([in] string aText, [in] long nPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nWordType);
7869 boolean isEndWord([in] string aText, [in] long nPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nWordType);
7870 long beginOfSentence([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale);
7871 long endOfSentence([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale);
7872 ::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);
7873 long beginOfScript([in] string aText, [in] long nStartPos, [in] short nScriptType);
7874 long endOfScript([in] string aText, [in] long nStartPos, [in] short nScriptType);
7875 long nextScript([in] string aText, [in] long nStartPos, [in] short nScriptType);
7876 long previousScript([in] string aText, [in] long nStartPos, [in] short nScriptType);
7877 short getScriptType([in] string aText, [in] long nPos);
7878 long beginOfCharBlock([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nCharType);
7879 long endOfCharBlock([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nCharType);
7880 long nextCharBlock([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nCharType);
7881 long previousCharBlock([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nCharType);
7883 published service BreakIterator: ::com::sun::star::i18n::XBreakIterator;
7884 published constants BreakType {
7885 const short HANGINGPUNCTUATION = 3;
7886 const short HYPHENATION = 2;
7887 const short WORDBOUNDARY = 1;
7889 published constants CTLScriptType {
7890 const short CTL_ARABIC = 2;
7891 const short CTL_HEBREW = 1;
7892 const short CTL_INDIC = 4;
7893 const short CTL_THAI = 3;
7894 const short CTL_UNKNOWN = 0;
7896 published struct CalendarItem {
7897 string ID;
7898 string AbbrevName;
7899 string FullName;
7901 published struct Calendar {
7902 sequence< ::com::sun::star::i18n::CalendarItem > Days;
7903 sequence< ::com::sun::star::i18n::CalendarItem > Months;
7904 sequence< ::com::sun::star::i18n::CalendarItem > Eras;
7905 string StartOfWeek;
7906 short MinimumNumberOfDaysForFirstWeek;
7907 boolean Default;
7908 string Name;
7910 published struct CalendarItem2: ::com::sun::star::i18n::CalendarItem {
7911 string NarrowName;
7913 published struct Calendar2 {
7914 sequence< ::com::sun::star::i18n::CalendarItem2 > Days;
7915 sequence< ::com::sun::star::i18n::CalendarItem2 > Months;
7916 sequence< ::com::sun::star::i18n::CalendarItem2 > GenitiveMonths;
7917 sequence< ::com::sun::star::i18n::CalendarItem2 > PartitiveMonths;
7918 sequence< ::com::sun::star::i18n::CalendarItem2 > Eras;
7919 string StartOfWeek;
7920 short MinimumNumberOfDaysForFirstWeek;
7921 boolean Default;
7922 string Name;
7924 published constants CalendarDisplayCode {
7925 const long LONG_DAY = 2;
7926 const long LONG_DAY_NAME = 4;
7927 const long LONG_ERA = 12;
7928 const long LONG_GENITIVE_MONTH_NAME = 18;
7929 const long LONG_MONTH = 6;
7930 const long LONG_MONTH_NAME = 8;
7931 const long LONG_PARTITIVE_MONTH_NAME = 21;
7932 const long LONG_QUARTER = 16;
7933 const long LONG_YEAR = 10;
7934 const long LONG_YEAR_AND_ERA = 14;
7935 const long NARROW_DAY_NAME = 23;
7936 const long NARROW_GENITIVE_MONTH_NAME = 19;
7937 const long NARROW_MONTH_NAME = 24;
7938 const long NARROW_PARTITIVE_MONTH_NAME = 22;
7939 const long SHORT_DAY = 1;
7940 const long SHORT_DAY_NAME = 3;
7941 const long SHORT_ERA = 11;
7942 const long SHORT_GENITIVE_MONTH_NAME = 17;
7943 const long SHORT_MONTH = 5;
7944 const long SHORT_MONTH_NAME = 7;
7945 const long SHORT_PARTITIVE_MONTH_NAME = 20;
7946 const long SHORT_QUARTER = 15;
7947 const long SHORT_YEAR = 9;
7948 const long SHORT_YEAR_AND_ERA = 13;
7950 published constants CalendarDisplayIndex {
7951 const short AM_PM = 0;
7952 const short DAY = 1;
7953 const short ERA = 4;
7954 const short GENITIVE_MONTH = 5;
7955 const short MONTH = 2;
7956 const short PARTITIVE_MONTH = 6;
7957 const short YEAR = 3;
7959 published constants CalendarFieldIndex {
7960 const short AM_PM = 0;
7961 const short DAY_OF_MONTH = 1;
7962 const short DAY_OF_WEEK = 2;
7963 const short DAY_OF_YEAR = 3;
7964 const short DST_OFFSET = 4;
7965 const short DST_OFFSET_SECOND_MILLIS = 16;
7966 const short ERA = 13;
7967 const short FIELD_COUNT = 15;
7968 const short FIELD_COUNT2 = 17;
7969 const short HOUR = 5;
7970 const short MILLISECOND = 8;
7971 const short MINUTE = 6;
7972 const short MONTH = 12;
7973 const short SECOND = 7;
7974 const short WEEK_OF_MONTH = 9;
7975 const short WEEK_OF_YEAR = 10;
7976 const short YEAR = 11;
7977 const short ZONE_OFFSET = 14;
7978 const short ZONE_OFFSET_SECOND_MILLIS = 15;
7980 published interface XCollator {
7981 interface ::com::sun::star::uno::XInterface;
7982 long compareSubstring([in] string aStr1, [in] long nOff1, [in] long nLen1, [in] string aStr2, [in] long nOff2, [in] long nLen2);
7983 long compareString([in] string aStr1, [in] string aStr2);
7984 long loadDefaultCollator([in] ::com::sun::star::lang::Locale aLocale, [in] long nCollatorOptions);
7985 long loadCollatorAlgorithm([in] string aAlgorithmName, [in] ::com::sun::star::lang::Locale aLocale, [in] long nCollatorOptions);
7986 sequence< string > listCollatorAlgorithms([in] ::com::sun::star::lang::Locale aLocale);
7987 void loadCollatorAlgorithmWithEndUserOption([in] string aAlgorithmName, [in] ::com::sun::star::lang::Locale aLocale, [in] sequence< long > aCollatorOptions);
7988 sequence< long > listCollatorOptions([in] string aAlgorithmName);
7990 published service ChapterCollator: ::com::sun::star::i18n::XCollator;
7991 published constants CharType {
7992 const short ANY_CHAR = 0;
7993 const short COMBINING_SPACING_MARK = 8;
7994 const short CONNECTOR_PUNCTUATION = 22;
7995 const short CONTROL = 15;
7996 const short CURRENCY_SYMBOL = 25;
7997 const short DASH_PUNCTUATION = 19;
7998 const short DECIMAL_DIGIT_NUMBER = 9;
7999 const short ENCLOSING_MARK = 7;
8000 const short END_PUNCTUATION = 21;
8001 const short FINAL_PUNCTUATION = 29;
8002 const short FORMAT = 16;
8003 const short GENERAL_TYPES_COUNT = 30;
8004 const short INITIAL_PUNCTUATION = 28;
8005 const short LETTER_NUMBER = 10;
8006 const short LINE_SEPARATOR = 13;
8007 const short LOWERCASE_LETTER = 2;
8008 const short MATH_SYMBOL = 24;
8009 const short MODIFIER_LETTER = 4;
8010 const short MODIFIER_SYMBOL = 26;
8011 const short NON_SPACING_MARK = 6;
8012 const short OTHER_LETTER = 5;
8013 const short OTHER_NUMBER = 11;
8014 const short OTHER_PUNCTUATION = 23;
8015 const short OTHER_SYMBOL = 27;
8016 const short PARAGRAPH_SEPARATOR = 14;
8017 const short PRIVATE_USE = 17;
8018 const short SPACE_SEPARATOR = 12;
8019 const short START_PUNCTUATION = 20;
8020 const short SURROGATE = 18;
8021 const short TITLECASE_LETTER = 3;
8022 const short UPPERCASE_LETTER = 1;
8024 published struct ParseResult {
8025 long LeadingWhiteSpace;
8026 long EndPos;
8027 long CharLen;
8028 double Value;
8029 long TokenType;
8030 long StartFlags;
8031 long ContFlags;
8032 string DequotedNameOrString;
8034 published interface XCharacterClassification {
8035 interface ::com::sun::star::uno::XInterface;
8036 string toUpper([in] string aText, [in] long nPos, [in] long nCount, [in] ::com::sun::star::lang::Locale aLocale);
8037 string toLower([in] string aText, [in] long nPos, [in] long nCount, [in] ::com::sun::star::lang::Locale aLocale);
8038 string toTitle([in] string aText, [in] long nPos, [in] long nCount, [in] ::com::sun::star::lang::Locale aLocale);
8039 short getType([in] string aText, [in] long nPos);
8040 short getCharacterDirection([in] string aText, [in] long nPos);
8041 short getScript([in] string aText, [in] long nPos);
8042 long getCharacterType([in] string aText, [in] long nPos, [in] ::com::sun::star::lang::Locale aLocale);
8043 long getStringType([in] string aText, [in] long nPos, [in] long nCount, [in] ::com::sun::star::lang::Locale aLocale);
8044 ::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);
8045 ::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);
8047 published service CharacterClassification: ::com::sun::star::i18n::XCharacterClassification;
8048 published constants CharacterIteratorMode {
8049 const short SKIPCELL = 1;
8050 const short SKIPCHARACTER = 0;
8051 const short SKIPCONTROLCHARACTER = 2;
8053 published service Collator: ::com::sun::star::i18n::XCollator;
8054 published constants CollatorOptions {
8055 const short CollatorOptions_IGNORE_CASE = 1;
8056 const short CollatorOptions_IGNORE_CASE_ACCENT = 8;
8057 const short CollatorOptions_IGNORE_KANA = 2;
8058 const short CollatorOptions_IGNORE_WIDTH = 4;
8060 published struct Currency {
8061 string ID;
8062 string Symbol;
8063 string BankSymbol;
8064 string Name;
8065 boolean Default;
8066 boolean UsedInCompatibleFormatCodes;
8067 short DecimalPlaces;
8069 published struct Currency2: ::com::sun::star::i18n::Currency {
8070 boolean LegacyOnly;
8072 published enum DirectionProperty {
8073 LEFT_TO_RIGHT = 0,
8074 RIGHT_TO_LEFT = 1,
8075 EUROPEAN_NUMBER = 2,
8076 EUROPEAN_NUMBER_SEPARATOR = 3,
8077 EUROPEAN_NUMBER_TERMINATOR = 4,
8078 ARABIC_NUMBER = 5,
8079 COMMON_NUMBER_SEPARATOR = 6,
8080 BLOCK_SEPARATOR = 7,
8081 SEGMENT_SEPARATOR = 8,
8082 WHITE_SPACE_NEUTRAL = 9,
8083 OTHER_NEUTRAL = 10,
8084 LEFT_TO_RIGHT_EMBEDDING = 11,
8085 LEFT_TO_RIGHT_OVERRIDE = 12,
8086 RIGHT_TO_LEFT_ARABIC = 13,
8087 RIGHT_TO_LEFT_EMBEDDING = 14,
8088 RIGHT_TO_LEFT_OVERRIDE = 15,
8089 POP_DIRECTIONAL_FORMAT = 16,
8090 DIR_NON_SPACING_MARK = 17,
8091 BOUNDARY_NEUTRAL = 18
8093 published struct ForbiddenCharacters {
8094 string beginLine;
8095 string endLine;
8097 published struct FormatElement {
8098 string formatCode;
8099 string formatName;
8100 string formatKey;
8101 string formatType;
8102 string formatUsage;
8103 short formatIndex;
8104 boolean isDefault;
8106 published struct Implementation {
8107 string unoID;
8108 boolean isDefault;
8110 published interface XIndexEntrySupplier {
8111 interface ::com::sun::star::uno::XInterface;
8112 string getIndexCharacter([in] string aIndexEntry, [in] ::com::sun::star::lang::Locale aLocale, [in] string aSortAlgorithm);
8113 string getIndexFollowPageWord([in] boolean bMorePages, [in] ::com::sun::star::lang::Locale aLocale);
8115 published interface XExtendedIndexEntrySupplier {
8116 interface ::com::sun::star::i18n::XIndexEntrySupplier;
8117 sequence< ::com::sun::star::lang::Locale > getLocaleList();
8118 sequence< string > getAlgorithmList([in] ::com::sun::star::lang::Locale aLocale);
8119 boolean usePhoneticEntry([in] ::com::sun::star::lang::Locale aLocale);
8120 string getPhoneticCandidate([in] string aIndexEntry, [in] ::com::sun::star::lang::Locale aLocale);
8121 boolean loadAlgorithm([in] ::com::sun::star::lang::Locale aLocale, [in] string aIndexAlgorithm, [in] long nCollatorOptions);
8122 string getIndexKey([in] string aIndexEntry, [in] string aPhoneticEntry, [in] ::com::sun::star::lang::Locale aLocale);
8123 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);
8125 published service IndexEntrySupplier: ::com::sun::star::i18n::XExtendedIndexEntrySupplier;
8126 published constants InputSequenceCheckMode {
8127 const short BASIC = 1;
8128 const short PASSTHROUGH = 0;
8129 const short STRICT = 2;
8131 published interface XInputSequenceChecker {
8132 interface ::com::sun::star::uno::XInterface;
8133 boolean checkInputSequence([in] string aText, [in] long nPos, [in] char cInputChar, [in] short nInputCheckMode);
8135 published interface XExtendedInputSequenceChecker {
8136 interface ::com::sun::star::i18n::XInputSequenceChecker;
8137 long correctInputSequence([inout] string aText, [in] long nPos, [in] char cInputChar, [in] short nInputCheckMode);
8139 published service InputSequenceChecker: ::com::sun::star::i18n::XExtendedInputSequenceChecker;
8140 published constants KCharacterType {
8141 const long ALPHA = 14;
8142 const long BASE_FORM = 64;
8143 const long CONTROL = 16;
8144 const long DIGIT = 1;
8145 const long LETTER = 128;
8146 const long LOWER = 4;
8147 const long PRINTABLE = 32;
8148 const long TITLE_CASE = 8;
8149 const long UPPER = 2;
8151 published constants KNumberFormatType {
8152 const short LONG = 3;
8153 const short MEDIUM = 2;
8154 const short SHORT = 1;
8156 published constants KNumberFormatUsage {
8157 const short CURRENCY = 8;
8158 const short DATE = 1;
8159 const short DATE_TIME = 3;
8160 const short FIXED_NUMBER = 4;
8161 const short FRACTION_NUMBER = 5;
8162 const short PERCENT_NUMBER = 6;
8163 const short SCIENTIFIC_NUMBER = 7;
8164 const short TIME = 2;
8166 published constants KParseTokens {
8167 const long ANY_ALNUM = 61447;
8168 const long ANY_ALPHA = 45059;
8169 const long ANY_DIGIT = 16388;
8170 const long ANY_LETTER = 241667;
8171 const long ANY_LETTER_OR_NUMBER = 1044487;
8172 const long ANY_NUMBER = 802820;
8173 const long ASC_ALNUM = 7;
8174 const long ASC_ALPHA = 3;
8175 const long ASC_ANY_BUT_CONTROL = 1024;
8176 const long ASC_COLON = 64;
8177 const long ASC_CONTROL = 512;
8178 const long ASC_DIGIT = 4;
8179 const long ASC_DOLLAR = 16;
8180 const long ASC_DOT = 32;
8181 const long ASC_LOALPHA = 2;
8182 const long ASC_OTHER = 2048;
8183 const long ASC_UNDERSCORE = 8;
8184 const long ASC_UPALPHA = 1;
8185 const long IGNORE_LEADING_WS = 1073741824;
8186 const long TWO_DOUBLE_QUOTES_BREAK_STRING = 268435456;
8187 const long UNI_ALNUM = 61440;
8188 const long UNI_ALPHA = 45056;
8189 const long UNI_DIGIT = 16384;
8190 const long UNI_LETTER = 241664;
8191 const long UNI_LETTER_NUMBER = 262144;
8192 const long UNI_LOALPHA = 8192;
8193 const long UNI_MODIFIER_LETTER = 65536;
8194 const long UNI_NUMBER = 802816;
8195 const long UNI_OTHER = 536870912;
8196 const long UNI_OTHER_LETTER = 131072;
8197 const long UNI_OTHER_NUMBER = 524288;
8198 const long UNI_TITLE_ALPHA = 32768;
8199 const long UNI_UPALPHA = 4096;
8201 published constants KParseType {
8202 const long ANY_NUMBER = 96;
8203 const long ASC_NUMBER = 32;
8204 const long BOOLEAN = 2;
8205 const long DOUBLE_QUOTE_STRING = 16;
8206 const long IDENTNAME = 4;
8207 const long MISSING_QUOTE = 1073741824;
8208 const long ONE_SINGLE_CHAR = 1;
8209 const long SINGLE_QUOTE_NAME = 8;
8210 const long UNI_NUMBER = 64;
8212 published struct LanguageCountryInfo {
8213 string Language;
8214 string LanguageDefaultName;
8215 string Country;
8216 string CountryDefaultName;
8217 string Variant;
8219 published interface XCalendar {
8220 interface ::com::sun::star::uno::XInterface;
8221 void loadDefaultCalendar([in] ::com::sun::star::lang::Locale rLocale);
8222 void loadCalendar([in] string uniqueID, [in] ::com::sun::star::lang::Locale rLocale);
8223 ::com::sun::star::i18n::Calendar getLoadedCalendar();
8224 sequence< string > getAllCalendars([in] ::com::sun::star::lang::Locale rLocale);
8225 string getUniqueID();
8226 void setDateTime([in] double nTimeInDays);
8227 double getDateTime();
8228 void setValue([in] short nCalendarFieldIndex, [in] short nValue);
8229 short getValue([in] short nCalendarFieldIndex);
8230 boolean isValid();
8231 void addValue([in] short nCalendarFieldIndex, [in] long nAmount);
8232 short getFirstDayOfWeek();
8233 void setFirstDayOfWeek([in] short nDay);
8234 void setMinimumNumberOfDaysForFirstWeek([in] short nDays);
8235 short getMinimumNumberOfDaysForFirstWeek();
8236 short getNumberOfMonthsInYear();
8237 short getNumberOfDaysInWeek();
8238 sequence< ::com::sun::star::i18n::CalendarItem > getMonths();
8239 sequence< ::com::sun::star::i18n::CalendarItem > getDays();
8240 string getDisplayName([in] short nCalendarDisplayIndex, [in] short nIdx, [in] short nNameType);
8242 published interface XExtendedCalendar {
8243 interface ::com::sun::star::i18n::XCalendar;
8244 string getDisplayString([in] long nCalendarDisplayCode, [in] short nNativeNumberMode);
8246 published interface XCalendar3 {
8247 interface ::com::sun::star::i18n::XExtendedCalendar;
8248 ::com::sun::star::i18n::Calendar2 getLoadedCalendar2();
8249 sequence< ::com::sun::star::i18n::CalendarItem2 > getDays2();
8250 sequence< ::com::sun::star::i18n::CalendarItem2 > getMonths2();
8251 sequence< ::com::sun::star::i18n::CalendarItem2 > getGenitiveMonths2();
8252 sequence< ::com::sun::star::i18n::CalendarItem2 > getPartitiveMonths2();
8254 published service LocaleCalendar: ::com::sun::star::i18n::XCalendar3;
8255 published struct LocaleDataItem {
8256 string unoID;
8257 string dateSeparator;
8258 string thousandSeparator;
8259 string decimalSeparator;
8260 string timeSeparator;
8261 string time100SecSeparator;
8262 string listSeparator;
8263 string quotationStart;
8264 string quotationEnd;
8265 string doubleQuotationStart;
8266 string doubleQuotationEnd;
8267 string timeAM;
8268 string timePM;
8269 string measurementSystem;
8270 string LongDateDayOfWeekSeparator;
8271 string LongDateDaySeparator;
8272 string LongDateMonthSeparator;
8273 string LongDateYearSeparator;
8275 published interface XLocaleData {
8276 interface ::com::sun::star::uno::XInterface;
8277 ::com::sun::star::i18n::LanguageCountryInfo getLanguageCountryInfo([in] ::com::sun::star::lang::Locale aLocale);
8278 ::com::sun::star::i18n::LocaleDataItem getLocaleItem([in] ::com::sun::star::lang::Locale aLocale);
8279 sequence< ::com::sun::star::i18n::Calendar > getAllCalendars([in] ::com::sun::star::lang::Locale aLocale);
8280 sequence< ::com::sun::star::i18n::Currency > getAllCurrencies([in] ::com::sun::star::lang::Locale aLocale);
8281 sequence< ::com::sun::star::i18n::FormatElement > getAllFormats([in] ::com::sun::star::lang::Locale aLocale);
8282 sequence< ::com::sun::star::i18n::Implementation > getCollatorImplementations([in] ::com::sun::star::lang::Locale aLocale);
8283 sequence< string > getSearchOptions([in] ::com::sun::star::lang::Locale aLocale);
8284 sequence< string > getCollationOptions([in] ::com::sun::star::lang::Locale aLocale);
8285 sequence< string > getTransliterations([in] ::com::sun::star::lang::Locale aLocale);
8286 ::com::sun::star::i18n::ForbiddenCharacters getForbiddenCharacters([in] ::com::sun::star::lang::Locale aLocale);
8287 sequence< string > getReservedWord([in] ::com::sun::star::lang::Locale aLocale);
8288 sequence< ::com::sun::star::lang::Locale > getAllInstalledLocaleNames();
8290 published interface XLocaleData2 {
8291 interface ::com::sun::star::i18n::XLocaleData;
8292 sequence< ::com::sun::star::i18n::Currency2 > getAllCurrencies2([in] ::com::sun::star::lang::Locale aLocale);
8294 published interface XLocaleData3 {
8295 interface ::com::sun::star::i18n::XLocaleData2;
8296 sequence< ::com::sun::star::i18n::Calendar2 > getAllCalendars2([in] ::com::sun::star::lang::Locale aLocale);
8298 published interface XLocaleData4 {
8299 interface ::com::sun::star::i18n::XLocaleData3;
8300 sequence< string > getDateAcceptancePatterns([in] ::com::sun::star::lang::Locale aLocale);
8302 published service LocaleData: ::com::sun::star::i18n::XLocaleData4;
8303 /** @deprecated */ published constants LocaleItem {
8304 const short COUNT = 17;
8305 const short DATE_SEPARATOR = 0;
8306 const short DECIMAL_SEPARATOR = 2;
8307 const short DOUBLE_QUOTATION_END = 9;
8308 const short DOUBLE_QUOTATION_START = 8;
8309 const short LIST_SEPARATOR = 5;
8310 const short LONG_DATE_DAY_OF_WEEK_SEPARATOR = 13;
8311 const short LONG_DATE_DAY_SEPARATOR = 14;
8312 const short LONG_DATE_MONTH_SEPARATOR = 15;
8313 const short LONG_DATE_YEAR_SEPARATOR = 16;
8314 const short MEASUREMENT_SYSTEM = 10;
8315 const short SINGLE_QUOTATION_END = 7;
8316 const short SINGLE_QUOTATION_START = 6;
8317 const short THOUSAND_SEPARATOR = 1;
8318 const short TIME_100SEC_SEPARATOR = 4;
8319 const short TIME_AM = 11;
8320 const short TIME_PM = 12;
8321 const short TIME_SEPARATOR = 3;
8323 published constants Months {
8324 const short APRIL = 3;
8325 const short AUGUST = 7;
8326 const short DECEMBER = 11;
8327 const short FEBURARY = 1;
8328 const short JANUARY = 0;
8329 const short JULY = 6;
8330 const short JUNE = 5;
8331 const short MARCH = 2;
8332 const short MAY = 4;
8333 const short NOVEMBER = 10;
8334 const short OCTOBER = 9;
8335 const short SEPTEMBER = 8;
8337 published exception MultipleCharsOutputException: ::com::sun::star::uno::Exception {
8339 published constants NativeNumberMode {
8340 const short NATNUM0 = 0;
8341 const short NATNUM1 = 1;
8342 const short NATNUM10 = 10;
8343 const short NATNUM11 = 11;
8344 const short NATNUM2 = 2;
8345 const short NATNUM3 = 3;
8346 const short NATNUM4 = 4;
8347 const short NATNUM5 = 5;
8348 const short NATNUM6 = 6;
8349 const short NATNUM7 = 7;
8350 const short NATNUM8 = 8;
8351 const short NATNUM9 = 9;
8353 published struct NativeNumberXmlAttributes {
8354 ::com::sun::star::lang::Locale Locale;
8355 string Format;
8356 string Style;
8358 published interface XNativeNumberSupplier {
8359 interface ::com::sun::star::uno::XInterface;
8360 string getNativeNumberString([in] string aNumberString, [in] ::com::sun::star::lang::Locale aLocale, [in] short nNativeNumberMode);
8361 boolean isValidNatNum([in] ::com::sun::star::lang::Locale aLocale, [in] short nNativeNumberMode);
8362 ::com::sun::star::i18n::NativeNumberXmlAttributes convertToXmlAttributes([in] ::com::sun::star::lang::Locale aLocale, [in] short nNativeNumberMode);
8363 short convertFromXmlAttributes([in] ::com::sun::star::i18n::NativeNumberXmlAttributes aAttr);
8365 published service NativeNumberSupplier: ::com::sun::star::i18n::XNativeNumberSupplier;
8366 published struct NumberFormatCode {
8367 short Type;
8368 short Usage;
8369 string Code;
8370 string DefaultName;
8371 string NameID;
8372 short Index;
8373 boolean Default;
8375 published constants NumberFormatIndex {
8376 const short BOOLEAN = 48;
8377 const short CURRENCY_1000DEC2 = 13;
8378 const short CURRENCY_1000DEC2_CCC = 16;
8379 const short CURRENCY_1000DEC2_DASHED = 17;
8380 const short CURRENCY_1000DEC2_RED = 15;
8381 const short CURRENCY_1000INT = 12;
8382 const short CURRENCY_1000INT_RED = 14;
8383 const short CURRENCY_END = 17;
8384 const short CURRENCY_START = 12;
8385 const short DATETIME_END = 47;
8386 const short DATETIME_START = 46;
8387 const short DATETIME_SYSTEM_SHORT_HHMM = 46;
8388 const short DATETIME_SYS_DDMMYYYY_HHMMSS = 47;
8389 const short DATE_DEF_NNDDMMMYY = 28;
8390 const short DATE_DIN_DMMMMYYYY = 26;
8391 const short DATE_DIN_DMMMYYYY = 24;
8392 const short DATE_DIN_MMDD = 31;
8393 const short DATE_DIN_YYMMDD = 32;
8394 const short DATE_DIN_YYYYMMDD = 33;
8395 const short DATE_END = 38;
8396 const short DATE_MMMM = 36;
8397 const short DATE_QQJJ = 37;
8398 const short DATE_START = 18;
8399 const short DATE_SYSTEM_LONG = 19;
8400 const short DATE_SYSTEM_SHORT = 18;
8401 const short DATE_SYS_DDMMM = 35;
8402 const short DATE_SYS_DDMMYY = 20;
8403 const short DATE_SYS_DDMMYYYY = 21;
8404 const short DATE_SYS_DMMMMYYYY = 25;
8405 const short DATE_SYS_DMMMYY = 22;
8406 const short DATE_SYS_DMMMYYYY = 23;
8407 const short DATE_SYS_MMYY = 34;
8408 const short DATE_SYS_NNDMMMMYYYY = 29;
8409 const short DATE_SYS_NNDMMMYY = 27;
8410 const short DATE_SYS_NNNNDMMMMYYYY = 30;
8411 const short DATE_WW = 38;
8412 const short FRACTION_1 = 10;
8413 const short FRACTION_2 = 11;
8414 const short FRACTION_END = 11;
8415 const short FRACTION_START = 10;
8416 const short INDEX_TABLE_ENTRIES = 50;
8417 const short NUMBER_1000DEC2 = 4;
8418 const short NUMBER_1000INT = 3;
8419 const short NUMBER_DEC2 = 2;
8420 const short NUMBER_END = 5;
8421 const short NUMBER_INT = 1;
8422 const short NUMBER_STANDARD = 0;
8423 const short NUMBER_START = 0;
8424 const short NUMBER_SYSTEM = 5;
8425 const short PERCENT_DEC2 = 9;
8426 const short PERCENT_END = 9;
8427 const short PERCENT_INT = 8;
8428 const short PERCENT_START = 8;
8429 const short SCIENTIFIC_000E00 = 7;
8430 const short SCIENTIFIC_000E000 = 6;
8431 const short SCIENTIFIC_END = 7;
8432 const short SCIENTIFIC_START = 6;
8433 const short TEXT = 49;
8434 const short TIME_END = 45;
8435 const short TIME_HHMM = 39;
8436 const short TIME_HHMMAMPM = 41;
8437 const short TIME_HHMMSS = 40;
8438 const short TIME_HHMMSSAMPM = 42;
8439 const short TIME_HH_MMSS = 43;
8440 const short TIME_HH_MMSS00 = 45;
8441 const short TIME_MMSS00 = 44;
8442 const short TIME_START = 39;
8444 published interface XNumberFormatCode {
8445 interface ::com::sun::star::uno::XInterface;
8446 ::com::sun::star::i18n::NumberFormatCode getDefault([in] short nFormatType, [in] short nFormatUsage, [in] ::com::sun::star::lang::Locale rLocale);
8447 ::com::sun::star::i18n::NumberFormatCode getFormatCode([in] short nFormatIndex, [in] ::com::sun::star::lang::Locale rLocale);
8448 sequence< ::com::sun::star::i18n::NumberFormatCode > getAllFormatCode([in] short nFormatUsage, [in] ::com::sun::star::lang::Locale rLocale);
8449 sequence< ::com::sun::star::i18n::NumberFormatCode > getAllFormatCodes([in] ::com::sun::star::lang::Locale rLocale);
8451 published service NumberFormatMapper: ::com::sun::star::i18n::XNumberFormatCode;
8452 published constants ScriptDirection {
8453 const short LEFT_TO_RIGHT = 1;
8454 const short NEUTRAL = 0;
8455 const short RIGHT_TO_LEFT = 2;
8457 published constants ScriptType {
8458 const short ASIAN = 2;
8459 const short COMPLEX = 3;
8460 const short LATIN = 1;
8461 const short WEAK = 4;
8463 published struct TextConversionResult {
8464 ::com::sun::star::i18n::Boundary Boundary;
8465 sequence< string > Candidates;
8467 published interface XTextConversion {
8468 interface ::com::sun::star::uno::XInterface;
8469 ::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);
8470 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);
8471 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);
8473 published interface XExtendedTextConversion {
8474 interface ::com::sun::star::i18n::XTextConversion;
8475 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);
8477 published service TextConversion: ::com::sun::star::i18n::XExtendedTextConversion;
8478 published constants TextConversionOption {
8479 const long CHARACTER_BY_CHARACTER = 1;
8480 const long IGNORE_POST_POSITIONAL_WORD = 2;
8481 const long NONE = 0;
8482 const long USE_CHARACTER_VARIANTS = 2;
8484 published constants TextConversionType {
8485 const short TO_HANGUL = 1;
8486 const short TO_HANJA = 2;
8487 const short TO_SCHINESE = 3;
8488 const short TO_TCHINESE = 4;
8490 published enum TransliterationModules {
8491 UPPERCASE_LOWERCASE = 1,
8492 LOWERCASE_UPPERCASE = 2,
8493 HALFWIDTH_FULLWIDTH = 3,
8494 FULLWIDTH_HALFWIDTH = 4,
8495 KATAKANA_HIRAGANA = 5,
8496 HIRAGANA_KATAKANA = 6,
8497 NumToTextLower_zh_CN = 7,
8498 NumToTextUpper_zh_CN = 8,
8499 NumToTextLower_zh_TW = 9,
8500 NumToTextUpper_zh_TW = 10,
8501 NumToTextFormalHangul_ko = 11,
8502 NumToTextFormalLower_ko = 12,
8503 NumToTextFormalUpper_ko = 13,
8504 NON_IGNORE_MASK = 255,
8505 IGNORE_MASK = -256,
8506 IGNORE_CASE = 256,
8507 IGNORE_KANA = 512,
8508 IGNORE_WIDTH = 1024,
8509 ignoreTraditionalKanji_ja_JP = 4096,
8510 ignoreTraditionalKana_ja_JP = 8192,
8511 ignoreMinusSign_ja_JP = 16384,
8512 ignoreIterationMark_ja_JP = 32768,
8513 ignoreSeparator_ja_JP = 65536,
8514 ignoreZiZu_ja_JP = 131072,
8515 ignoreBaFa_ja_JP = 262144,
8516 ignoreTiJi_ja_JP = 524288,
8517 ignoreHyuByu_ja_JP = 1048576,
8518 ignoreSeZe_ja_JP = 2097152,
8519 ignoreIandEfollowedByYa_ja_JP = 4194304,
8520 ignoreKiKuFollowedBySa_ja_JP = 8388608,
8521 ignoreSize_ja_JP = 16777216,
8522 ignoreProlongedSoundMark_ja_JP = 33554432,
8523 ignoreMiddleDot_ja_JP = 67108864,
8524 ignoreSpace_ja_JP = 134217728,
8525 smallToLarge_ja_JP = 268435456,
8526 largeToSmall_ja_JP = 536870912,
8527 END_OF_MODULE = 0
8529 published enum TransliterationModulesNew {
8530 UPPERCASE_LOWERCASE = 1,
8531 LOWERCASE_UPPERCASE = 2,
8532 HALFWIDTH_FULLWIDTH = 3,
8533 FULLWIDTH_HALFWIDTH = 4,
8534 KATAKANA_HIRAGANA = 5,
8535 HIRAGANA_KATAKANA = 6,
8536 IGNORE_CASE = 7,
8537 IGNORE_KANA = 8,
8538 IGNORE_WIDTH = 9,
8539 ignoreTraditionalKanji_ja_JP = 10,
8540 ignoreTraditionalKana_ja_JP = 11,
8541 ignoreMinusSign_ja_JP = 12,
8542 ignoreIterationMark_ja_JP = 13,
8543 ignoreSeparator_ja_JP = 14,
8544 ignoreZiZu_ja_JP = 15,
8545 ignoreBaFa_ja_JP = 16,
8546 ignoreTiJi_ja_JP = 17,
8547 ignoreHyuByu_ja_JP = 18,
8548 ignoreSeZe_ja_JP = 19,
8549 ignoreIandEfollowedByYa_ja_JP = 20,
8550 ignoreKiKuFollowedBySa_ja_JP = 21,
8551 ignoreSize_ja_JP = 22,
8552 ignoreProlongedSoundMark_ja_JP = 23,
8553 ignoreMiddleDot_ja_JP = 24,
8554 ignoreSpace_ja_JP = 25,
8555 smallToLarge_ja_JP = 26,
8556 largeToSmall_ja_JP = 27,
8557 NumToTextLower_zh_CN = 28,
8558 NumToTextUpper_zh_CN = 29,
8559 NumToTextLower_zh_TW = 30,
8560 NumToTextUpper_zh_TW = 31,
8561 NumToTextFormalHangul_ko = 32,
8562 NumToTextFormalLower_ko = 33,
8563 NumToTextFormalUpper_ko = 34,
8564 NumToTextInformalHangul_ko = 35,
8565 NumToTextInformalLower_ko = 36,
8566 NumToTextInformalUpper_ko = 37,
8567 NumToCharLower_zh_CN = 38,
8568 NumToCharUpper_zh_CN = 39,
8569 NumToCharLower_zh_TW = 40,
8570 NumToCharUpper_zh_TW = 41,
8571 NumToCharHangul_ko = 42,
8572 NumToCharLower_ko = 43,
8573 NumToCharUpper_ko = 44,
8574 NumToCharFullwidth = 45,
8575 NumToCharKanjiShort_ja_JP = 46,
8576 TextToNumLower_zh_CN = 47,
8577 TextToNumUpper_zh_CN = 48,
8578 TextToNumLower_zh_TW = 49,
8579 TextToNumUpper_zh_TW = 50,
8580 TextToNumFormalHangul_ko = 51,
8581 TextToNumFormalLower_ko = 52,
8582 TextToNumFormalUpper_ko = 53,
8583 TextToNumInformalHangul_ko = 54,
8584 TextToNumInformalLower_ko = 55,
8585 TextToNumInformalUpper_ko = 56,
8586 CharToNumLower_zh_CN = 59,
8587 CharToNumUpper_zh_CN = 60,
8588 CharToNumLower_zh_TW = 61,
8589 CharToNumUpper_zh_TW = 62,
8590 CharToNumHangul_ko = 63,
8591 CharToNumLower_ko = 64,
8592 CharToNumUpper_ko = 65,
8593 END_OF_MODULE = 0
8595 published interface XTransliteration {
8596 interface ::com::sun::star::uno::XInterface;
8597 string getName();
8598 short getType();
8599 void loadModule([in] ::com::sun::star::i18n::TransliterationModules eModType, [in] ::com::sun::star::lang::Locale aLocale);
8600 void loadModuleNew([in] sequence< ::com::sun::star::i18n::TransliterationModulesNew > aModType, [in] ::com::sun::star::lang::Locale aLocale);
8601 void loadModuleByImplName([in] string aImplName, [in] ::com::sun::star::lang::Locale aLocale);
8602 void loadModulesByImplNames([in] sequence< string > aImplNameList, [in] ::com::sun::star::lang::Locale aLocale);
8603 sequence< string > getAvailableModules([in] ::com::sun::star::lang::Locale aLocale, [in] short nType);
8604 string transliterate([in] string aInStr, [in] long nStartPos, [in] long nCount, [out] sequence< long > rOffset);
8605 /** @deprecated */ string folding([in] string aInStr, [in] long nStartPos, [in] long nCount, [out] sequence< long > rOffset);
8606 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);
8607 sequence< string > transliterateRange([in] string aStr1, [in] string aStr2);
8608 long compareSubstring([in] string aStr1, [in] long nOff1, [in] long nLen1, [in] string aStr2, [in] long nOff2, [in] long nLen2);
8609 long compareString([in] string aStr1, [in] string aStr2);
8611 published interface XExtendedTransliteration {
8612 interface ::com::sun::star::i18n::XTransliteration;
8613 string transliterateString2String([in] string aStr, [in] long nStartPos, [in] long nCount);
8614 string transliterateChar2String([in] char cChar);
8615 char transliterateChar2Char([in] char cChar) raises (::com::sun::star::i18n::MultipleCharsOutputException);
8617 published service Transliteration: ::com::sun::star::i18n::XExtendedTransliteration;
8618 published constants TransliterationType {
8619 const short CASCADE = 8;
8620 const short IGNORE = 4;
8621 const short NONE = 0;
8622 const short NUMERIC = 2;
8623 const short ONE_TO_ONE = 1;
8624 const short ONE_TO_ONE_NUMERIC = 3;
8626 published enum UnicodeScript {
8627 kBasicLatin = 0,
8628 kLatin1Supplement = 1,
8629 kLatinExtendedA = 2,
8630 kLatinExtendedB = 3,
8631 kIPAExtension = 4,
8632 kSpacingModifier = 5,
8633 kCombiningDiacritical = 6,
8634 kGreek = 7,
8635 kCyrillic = 8,
8636 kArmenian = 9,
8637 kHebrew = 10,
8638 kArabic = 11,
8639 kSyriac = 12,
8640 kThaana = 13,
8641 kDevanagari = 14,
8642 kBengali = 15,
8643 kGurmukhi = 16,
8644 kGujarati = 17,
8645 kOriya = 18,
8646 kTamil = 19,
8647 kTelugu = 20,
8648 kKannada = 21,
8649 kMalayalam = 22,
8650 kSinhala = 23,
8651 kThai = 24,
8652 kLao = 25,
8653 kTibetan = 26,
8654 kMyanmar = 27,
8655 kGeorgian = 28,
8656 kHangulJamo = 29,
8657 kEthiopic = 30,
8658 kCherokee = 31,
8659 kUnifiedCanadianAboriginalSyllabics = 32,
8660 kOgham = 33,
8661 kRunic = 34,
8662 kKhmer = 35,
8663 kMongolian = 36,
8664 kLatinExtendedAdditional = 37,
8665 kGreekExtended = 38,
8666 kGeneralPunctuation = 39,
8667 kSuperSubScript = 40,
8668 kCurrencySymbolScript = 41,
8669 kSymbolCombiningMark = 42,
8670 kLetterlikeSymbol = 43,
8671 kNumberForm = 44,
8672 kArrow = 45,
8673 kMathOperator = 46,
8674 kMiscTechnical = 47,
8675 kControlPicture = 48,
8676 kOpticalCharacter = 49,
8677 kEnclosedAlphanumeric = 50,
8678 kBoxDrawing = 51,
8679 kBlockElement = 52,
8680 kGeometricShape = 53,
8681 kMiscSymbol = 54,
8682 kDingbat = 55,
8683 kBraillePatterns = 56,
8684 kCJKRadicalsSupplement = 57,
8685 kKangxiRadicals = 58,
8686 kIdeographicDescriptionCharacters = 59,
8687 kCJKSymbolPunctuation = 60,
8688 kHiragana = 61,
8689 kKatakana = 62,
8690 kBopomofo = 63,
8691 kHangulCompatibilityJamo = 64,
8692 kKanbun = 65,
8693 kBopomofoExtended = 66,
8694 kEnclosedCJKLetterMonth = 67,
8695 kCJKCompatibility = 68,
8696 k_CJKUnifiedIdeographsExtensionA = 69,
8697 kCJKUnifiedIdeograph = 70,
8698 kYiSyllables = 71,
8699 kYiRadicals = 72,
8700 kHangulSyllable = 73,
8701 kHighSurrogate = 74,
8702 kHighPrivateUseSurrogate = 75,
8703 kLowSurrogate = 76,
8704 kPrivateUse = 77,
8705 kCJKCompatibilityIdeograph = 78,
8706 kAlphabeticPresentation = 79,
8707 kArabicPresentationA = 80,
8708 kCombiningHalfMark = 81,
8709 kCJKCompatibilityForm = 82,
8710 kSmallFormVariant = 83,
8711 kArabicPresentationB = 84,
8712 kNoScript = 85,
8713 kHalfwidthFullwidthForm = 86,
8714 kScriptCount = 87
8716 published constants UnicodeType {
8717 const short COMBINING_SPACING_MARK = 8;
8718 const short CONNECTOR_PUNCTUATION = 22;
8719 const short CONTROL = 15;
8720 const short CURRENCY_SYMBOL = 25;
8721 const short DASH_PUNCTUATION = 19;
8722 const short DECIMAL_DIGIT_NUMBER = 9;
8723 const short ENCLOSING_MARK = 7;
8724 const short END_PUNCTUATION = 29;
8725 const short FINAL_PUNCTUATION = 21;
8726 const short FORMAT = 16;
8727 const short GENERAL_TYPES_COUNT = 30;
8728 const short INITIAL_PUNCTUATION = 20;
8729 const short LETTER_NUMBER = 10;
8730 const short LINE_SEPARATOR = 13;
8731 const short LOWERCASE_LETTER = 2;
8732 const short MATH_SYMBOL = 24;
8733 const short MODIFIER_LETTER = 4;
8734 const short MODIFIER_SYMBOL = 26;
8735 const short NON_SPACING_MARK = 6;
8736 const short OTHER_LETTER = 5;
8737 const short OTHER_NUMBER = 11;
8738 const short OTHER_PUNCTUATION = 23;
8739 const short OTHER_SYMBOL = 27;
8740 const short PARAGRAPH_SEPARATOR = 14;
8741 const short PRIVATE_USE = 17;
8742 const short SPACE_SEPARATOR = 12;
8743 const short START_PUNCTUATION = 28;
8744 const short SURROGATE = 18;
8745 const short TITLECASE_LETTER = 3;
8746 const short UNASSIGNED = 0;
8747 const short UPPERCASE_LETTER = 1;
8749 published constants Weekdays {
8750 const short FRIDAY = 5;
8751 const short MONDAY = 1;
8752 const short SATURDAY = 6;
8753 const short SUNDAY = 0;
8754 const short THURSDAY = 4;
8755 const short TUESDAY = 2;
8756 const short WEDNESDAY = 3;
8758 published constants WordType {
8759 const short ANYWORD_IGNOREWHITESPACES = 1;
8760 const short ANY_WORD = 0;
8761 const short DICTIONARY_WORD = 2;
8762 const short WORD_COUNT = 3;
8764 published interface XForbiddenCharacters {
8765 interface ::com::sun::star::uno::XInterface;
8766 ::com::sun::star::i18n::ForbiddenCharacters getForbiddenCharacters([in] ::com::sun::star::lang::Locale aLocale) raises (::com::sun::star::container::NoSuchElementException);
8767 boolean hasForbiddenCharacters([in] ::com::sun::star::lang::Locale aLocale);
8768 void setForbiddenCharacters([in] ::com::sun::star::lang::Locale aLocale, [in] ::com::sun::star::i18n::ForbiddenCharacters aForbiddenCharacters);
8769 void removeForbiddenCharacters([in] ::com::sun::star::lang::Locale aLocale);
8771 published interface XScriptTypeDetector {
8772 interface ::com::sun::star::uno::XInterface;
8773 long beginOfScriptDirection([in] string aText, [in] long nPos, [in] short nScriptDirection);
8774 long endOfScriptDirection([in] string aText, [in] long nPos, [in] short nScriptDirection);
8775 short getScriptDirection([in] string aText, [in] long nPos, [in] short nDefaultScriptDirection);
8776 long beginOfCTLScriptType([in] string aText, [in] long nPos);
8777 long endOfCTLScriptType([in] string aText, [in] long nPos);
8778 short getCTLScriptType([in] string aText, [in] long nPos);
8780 published constants reservedWords {
8781 const short ABOVE_WORD = 6;
8782 const short BELOW_WORD = 7;
8783 const short COUNT = 12;
8784 const short FALSE_WORD = 1;
8785 const short QUARTER1_ABBREVIATION = 8;
8786 const short QUARTER1_WORD = 2;
8787 const short QUARTER2_ABBREVIATION = 9;
8788 const short QUARTER2_WORD = 3;
8789 const short QUARTER3_ABBREVIATION = 10;
8790 const short QUARTER3_WORD = 4;
8791 const short QUARTER4_ABBREVIATION = 11;
8792 const short QUARTER4_WORD = 5;
8793 const short TRUE_WORD = 0;
8796 module image {
8797 published service ImageMap {
8798 interface ::com::sun::star::container::XNamed;
8799 interface ::com::sun::star::container::XIndexContainer;
8801 published service ImageMapObject {
8802 interface ::com::sun::star::beans::XPropertySet;
8803 interface ::com::sun::star::document::XEventsSupplier;
8804 [property] string URL;
8805 [property] string Description;
8806 [property] string Target;
8807 [property] string Name;
8808 [property] boolean IsActive;
8810 published service ImageMapCircleObject {
8811 service ::com::sun::star::image::ImageMapObject;
8812 [property] ::com::sun::star::awt::Point Center;
8813 [property] long Radius;
8815 published service ImageMapPolygonObject {
8816 service ::com::sun::star::image::ImageMapObject;
8817 [property] ::com::sun::star::drawing::PointSequence Polygon;
8819 published service ImageMapRectangleObject {
8820 service ::com::sun::star::image::ImageMapObject;
8821 [property] ::com::sun::star::awt::Rectangle Boundary;
8824 module ldap {
8825 published exception LdapConnectionException: ::com::sun::star::uno::Exception {
8827 published exception LdapGenericException: ::com::sun::star::uno::Exception {
8828 long ErrorCode;
8831 module linguistic2 {
8832 published enum ConversionDirection {
8833 FROM_LEFT = 0,
8834 FROM_RIGHT = 1
8836 published interface XConversionDictionary {
8837 interface ::com::sun::star::uno::XInterface;
8838 string getName();
8839 ::com::sun::star::lang::Locale getLocale();
8840 short getConversionType();
8841 void setActive([in] boolean bActivate);
8842 boolean isActive();
8843 void clear();
8844 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);
8845 void addEntry([in] string aLeftText, [in] string aRightText) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::ElementExistException);
8846 void removeEntry([in] string aLeftText, [in] string aRightText) raises (::com::sun::star::container::NoSuchElementException);
8847 short getMaxCharCount([in] ::com::sun::star::linguistic2::ConversionDirection eDirection);
8848 sequence< string > getConversionEntries([in] ::com::sun::star::linguistic2::ConversionDirection eDirection);
8850 published interface XConversionPropertyType {
8851 interface ::com::sun::star::uno::XInterface;
8852 void setPropertyType([in] string aLeftText, [in] string aRightText, [in] short nPropertyType) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::IllegalArgumentException);
8853 short getPropertyType([in] string aLeftText, [in] string aRightText) raises (::com::sun::star::container::NoSuchElementException);
8855 published service ConversionDictionary {
8856 interface ::com::sun::star::linguistic2::XConversionDictionary;
8857 [optional] interface ::com::sun::star::util::XFlushable;
8858 [optional] interface ::com::sun::star::linguistic2::XConversionPropertyType;
8860 published interface XConversionDictionaryList {
8861 interface ::com::sun::star::uno::XInterface;
8862 ::com::sun::star::container::XNameContainer getDictionaryContainer();
8863 ::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);
8864 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);
8865 short queryMaxCharCount([in] ::com::sun::star::lang::Locale aLocale, [in] short nConversionDictionaryType, [in] ::com::sun::star::linguistic2::ConversionDirection eDirection);
8867 published service ConversionDictionaryList: ::com::sun::star::linguistic2::XConversionDictionaryList;
8868 published enum DictionaryType {
8869 POSITIVE = 0,
8870 NEGATIVE = 1,
8871 /** @deprecated */ MIXED = 2
8873 published interface XDictionaryEntry;
8874 published interface XDictionaryEventListener;
8875 published interface XDictionary {
8876 interface ::com::sun::star::container::XNamed;
8877 ::com::sun::star::linguistic2::DictionaryType getDictionaryType();
8878 void setActive([in] boolean bActivate);
8879 boolean isActive();
8880 long getCount();
8881 ::com::sun::star::lang::Locale getLocale();
8882 void setLocale([in] ::com::sun::star::lang::Locale aLocale);
8883 ::com::sun::star::linguistic2::XDictionaryEntry getEntry([in] string aWord);
8884 boolean addEntry([in] ::com::sun::star::linguistic2::XDictionaryEntry xDicEntry);
8885 boolean add([in] string aWord, [in] boolean bIsNegative, [in] string aRplcText);
8886 boolean remove([in] string aWord);
8887 boolean isFull();
8888 /** @deprecated */ sequence< ::com::sun::star::linguistic2::XDictionaryEntry > getEntries();
8889 void clear();
8890 boolean addDictionaryEventListener([in] ::com::sun::star::linguistic2::XDictionaryEventListener xListener);
8891 boolean removeDictionaryEventListener([in] ::com::sun::star::linguistic2::XDictionaryEventListener xListener);
8893 published interface XDictionaryEntry;
8894 published struct DictionaryEvent: ::com::sun::star::lang::EventObject {
8895 short nEvent;
8896 ::com::sun::star::linguistic2::XDictionaryEntry xDictionaryEntry;
8898 published constants DictionaryEventFlags {
8899 const short ACTIVATE_DIC = 32;
8900 const short ADD_ENTRY = 1;
8901 const short CHG_LANGUAGE = 8;
8902 const short CHG_NAME = 4;
8903 const short DEACTIVATE_DIC = 64;
8904 const short DEL_ENTRY = 2;
8905 const short ENTRIES_CLEARED = 16;
8907 published interface XDictionaryListEventListener;
8908 published interface XDictionaryList {
8909 interface ::com::sun::star::uno::XInterface;
8910 short getCount();
8911 sequence< ::com::sun::star::linguistic2::XDictionary > getDictionaries();
8912 ::com::sun::star::linguistic2::XDictionary getDictionaryByName([in] string aDictionaryName);
8913 boolean addDictionary([in] ::com::sun::star::linguistic2::XDictionary xDictionary);
8914 boolean removeDictionary([in] ::com::sun::star::linguistic2::XDictionary xDictionary);
8915 boolean addDictionaryListEventListener([in] ::com::sun::star::linguistic2::XDictionaryListEventListener xListener, [in] boolean bReceiveVerbose);
8916 boolean removeDictionaryListEventListener([in] ::com::sun::star::linguistic2::XDictionaryListEventListener xListener);
8917 short beginCollectEvents();
8918 short endCollectEvents();
8919 short flushEvents();
8920 ::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);
8922 published interface XDictionaryEntry;
8923 published interface XSearchableDictionaryList {
8924 interface ::com::sun::star::linguistic2::XDictionaryList;
8925 ::com::sun::star::linguistic2::XDictionaryEntry queryDictionaryEntry([in] string aWord, [in] ::com::sun::star::lang::Locale aLocale, [in] boolean bSearchPosDics, [in] boolean bSpellEntry);
8927 published service DictionaryList: ::com::sun::star::linguistic2::XSearchableDictionaryList;
8928 published struct DictionaryListEvent: ::com::sun::star::lang::EventObject {
8929 short nCondensedEvent;
8930 sequence< ::com::sun::star::linguistic2::DictionaryEvent > aDictionaryEvents;
8932 published constants DictionaryListEventFlags {
8933 const short ACTIVATE_NEG_DIC = 64;
8934 const short ACTIVATE_POS_DIC = 16;
8935 const short ADD_NEG_ENTRY = 4;
8936 const short ADD_POS_ENTRY = 1;
8937 const short DEACTIVATE_NEG_DIC = 128;
8938 const short DEACTIVATE_POS_DIC = 32;
8939 const short DEL_NEG_ENTRY = 8;
8940 const short DEL_POS_ENTRY = 2;
8942 published service HangulHanjaConversionDictionary {
8943 service ::com::sun::star::linguistic2::ConversionDictionary;
8945 published interface XSupportedLocales {
8946 interface ::com::sun::star::uno::XInterface;
8947 sequence< ::com::sun::star::lang::Locale > getLocales();
8948 boolean hasLocale([in] ::com::sun::star::lang::Locale aLocale);
8950 published interface XHyphenatedWord;
8951 published interface XPossibleHyphens;
8952 published interface XHyphenator {
8953 interface ::com::sun::star::linguistic2::XSupportedLocales;
8954 ::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);
8955 ::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);
8956 ::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);
8958 published interface XLinguServiceEventListener;
8959 published interface XLinguServiceEventBroadcaster {
8960 interface ::com::sun::star::uno::XInterface;
8961 boolean addLinguServiceEventListener([in] ::com::sun::star::linguistic2::XLinguServiceEventListener xLstnr);
8962 boolean removeLinguServiceEventListener([in] ::com::sun::star::linguistic2::XLinguServiceEventListener xLstnr);
8964 published service Hyphenator {
8965 interface ::com::sun::star::linguistic2::XHyphenator;
8966 interface ::com::sun::star::linguistic2::XLinguServiceEventBroadcaster;
8967 interface ::com::sun::star::lang::XInitialization;
8968 interface ::com::sun::star::lang::XComponent;
8969 interface ::com::sun::star::lang::XServiceDisplayName;
8971 published interface XLinguProperties {
8972 interface ::com::sun::star::beans::XPropertySet;
8973 [attribute] boolean IsUseDictionaryList;
8974 [attribute] boolean IsIgnoreControlCharacters;
8975 [attribute] boolean IsSpellUpperCase;
8976 [attribute] boolean IsSpellWithDigits;
8977 /** @deprecated */ [attribute] boolean IsSpellCapitalization;
8978 [attribute] short HyphMinLeading;
8979 [attribute] short HyphMinTrailing;
8980 [attribute] short HyphMinWordLength;
8981 [attribute] ::com::sun::star::lang::Locale DefaultLocale;
8982 [attribute] boolean IsHyphAuto;
8983 [attribute] boolean IsHyphSpecial;
8984 [attribute] boolean IsSpellAuto;
8985 [attribute] boolean IsSpellSpecial;
8986 [attribute] boolean IsWrapReverse;
8987 [attribute] ::com::sun::star::lang::Locale DefaultLocale_CJK;
8988 [attribute] ::com::sun::star::lang::Locale DefaultLocale_CTL;
8990 published service LinguProperties: ::com::sun::star::linguistic2::XLinguProperties;
8991 published struct LinguServiceEvent: ::com::sun::star::lang::EventObject {
8992 short nEvent;
8994 published constants LinguServiceEventFlags {
8995 const short HYPHENATE_AGAIN = 4;
8996 const short PROOFREAD_AGAIN = 8;
8997 const short SPELL_CORRECT_WORDS_AGAIN = 1;
8998 const short SPELL_WRONG_WORDS_AGAIN = 2;
9000 published interface XAvailableLocales {
9001 interface ::com::sun::star::uno::XInterface;
9002 sequence< ::com::sun::star::lang::Locale > getAvailableLocales([in] string aServiceName);
9004 published interface XSpellChecker;
9005 published interface XThesaurus;
9006 published interface XLinguServiceManager {
9007 interface ::com::sun::star::uno::XInterface;
9008 ::com::sun::star::linguistic2::XSpellChecker getSpellChecker();
9009 ::com::sun::star::linguistic2::XHyphenator getHyphenator();
9010 ::com::sun::star::linguistic2::XThesaurus getThesaurus();
9011 boolean addLinguServiceManagerListener([in] ::com::sun::star::lang::XEventListener xListener);
9012 boolean removeLinguServiceManagerListener([in] ::com::sun::star::lang::XEventListener xListener);
9013 sequence< string > getAvailableServices([in] string aServiceName, [in] ::com::sun::star::lang::Locale aLocale);
9014 void setConfiguredServices([in] string aServiceName, [in] ::com::sun::star::lang::Locale aLocale, [in] sequence< string > aServiceImplNames);
9015 sequence< string > getConfiguredServices([in] string aServiceName, [in] ::com::sun::star::lang::Locale aLocale);
9017 published interface XLinguServiceManager2 {
9018 interface ::com::sun::star::linguistic2::XLinguServiceManager;
9019 interface ::com::sun::star::linguistic2::XAvailableLocales;
9020 interface ::com::sun::star::lang::XComponent;
9022 published service LinguServiceManager: ::com::sun::star::linguistic2::XLinguServiceManager2;
9023 published interface XSpellAlternatives;
9024 published interface XSpellChecker {
9025 interface ::com::sun::star::linguistic2::XSupportedLocales;
9026 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);
9027 ::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);
9029 published service SpellChecker {
9030 interface ::com::sun::star::linguistic2::XSpellChecker;
9031 interface ::com::sun::star::linguistic2::XLinguServiceEventBroadcaster;
9032 interface ::com::sun::star::lang::XInitialization;
9033 interface ::com::sun::star::lang::XComponent;
9034 interface ::com::sun::star::lang::XServiceDisplayName;
9036 published constants SpellFailure {
9037 const short CAPTION_ERROR = 3;
9038 const short IS_NEGATIVE_WORD = 2;
9039 const short SPELLING_ERROR = 4;
9041 published interface XMeaning;
9042 published interface XThesaurus {
9043 interface ::com::sun::star::linguistic2::XSupportedLocales;
9044 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);
9046 published service Thesaurus {
9047 interface ::com::sun::star::linguistic2::XThesaurus;
9048 interface ::com::sun::star::lang::XInitialization;
9049 interface ::com::sun::star::lang::XComponent;
9050 interface ::com::sun::star::lang::XServiceDisplayName;
9052 published interface XDictionaryEntry;
9053 published interface XDictionaryEventListener;
9054 /** @deprecated */ published interface XDictionary1 {
9055 interface ::com::sun::star::container::XNamed;
9056 ::com::sun::star::linguistic2::DictionaryType getDictionaryType();
9057 void setActive([in] boolean bActivate);
9058 boolean isActive();
9059 short getCount();
9060 short getLanguage();
9061 void setLanguage([in] short nLang);
9062 ::com::sun::star::linguistic2::XDictionaryEntry getEntry([in] string aWord);
9063 boolean addEntry([in] ::com::sun::star::linguistic2::XDictionaryEntry xDicEntry);
9064 boolean add([in] string aWord, [in] boolean bIsNegative, [in] string aRplcText);
9065 boolean remove([in] string aWord);
9066 boolean isFull();
9067 sequence< ::com::sun::star::linguistic2::XDictionaryEntry > getEntries();
9068 void clear();
9069 boolean addDictionaryEventListener([in] ::com::sun::star::linguistic2::XDictionaryEventListener xListener);
9070 boolean removeDictionaryEventListener([in] ::com::sun::star::linguistic2::XDictionaryEventListener xListener);
9072 published interface XDictionaryEntry {
9073 interface ::com::sun::star::uno::XInterface;
9074 string getDictionaryWord();
9075 boolean isNegative();
9076 string getReplacementText();
9078 published interface XDictionaryEventListener {
9079 interface ::com::sun::star::lang::XEventListener;
9080 void processDictionaryEvent([in] ::com::sun::star::linguistic2::DictionaryEvent aDicEvent);
9082 published interface XDictionaryListEventListener {
9083 interface ::com::sun::star::lang::XEventListener;
9084 void processDictionaryListEvent([in] ::com::sun::star::linguistic2::DictionaryListEvent aDicListEvent);
9086 published interface XHyphenatedWord {
9087 interface ::com::sun::star::uno::XInterface;
9088 string getWord();
9089 ::com::sun::star::lang::Locale getLocale();
9090 short getHyphenationPos();
9091 string getHyphenatedWord();
9092 short getHyphenPos();
9093 boolean isAlternativeSpelling();
9095 published interface XLinguServiceEventListener {
9096 interface ::com::sun::star::lang::XEventListener;
9097 void processLinguServiceEvent([in] ::com::sun::star::linguistic2::LinguServiceEvent aLngSvcEvent);
9099 published interface XMeaning {
9100 interface ::com::sun::star::uno::XInterface;
9101 string getMeaning();
9102 sequence< string > querySynonyms();
9104 published interface XPossibleHyphens {
9105 interface ::com::sun::star::uno::XInterface;
9106 string getWord();
9107 ::com::sun::star::lang::Locale getLocale();
9108 string getPossibleHyphens();
9109 sequence< short > getHyphenationPositions();
9111 published interface XSpellAlternatives {
9112 interface ::com::sun::star::uno::XInterface;
9113 string getWord();
9114 ::com::sun::star::lang::Locale getLocale();
9115 short getFailureType();
9116 short getAlternativesCount();
9117 sequence< string > getAlternatives();
9119 /** @deprecated */ published interface XSupportedLanguages {
9120 interface ::com::sun::star::uno::XInterface;
9121 sequence< short > getLanguages();
9122 boolean hasLanguage([in] short nLanguage);
9124 /** @deprecated */ published interface XSpellChecker1 {
9125 interface ::com::sun::star::linguistic2::XSupportedLanguages;
9126 boolean isValid([in] string aWord, [in] short nLanguage, [in] ::com::sun::star::beans::PropertyValues aProperties) raises (::com::sun::star::lang::IllegalArgumentException);
9127 ::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);
9130 module mozilla {
9131 published struct MenuMultipleChange {
9132 short ID;
9133 short GroupID;
9134 short PreItemID;
9135 string ItemText;
9136 boolean IsVisible;
9137 boolean IsActive;
9138 boolean IsCheckable;
9139 boolean IsChecked;
9140 sequence< byte > Image;
9142 published interface XMenuProxyListener;
9143 published interface XMenuProxy {
9144 interface ::com::sun::star::lang::XComponent;
9145 void executeMenuItem([in] short ID);
9146 void addMenuProxyListener([in] ::com::sun::star::mozilla::XMenuProxyListener xListener);
9147 void removeMenuProxyListener([in] ::com::sun::star::mozilla::XMenuProxyListener xListener);
9149 published service MenuProxy {
9150 interface ::com::sun::star::mozilla::XMenuProxy;
9152 published struct MenuSingleChange {
9153 short ID;
9154 short ChangeID;
9155 any Change;
9157 published interface XMenuProxyListener {
9158 interface ::com::sun::star::uno::XInterface;
9159 void menuChangedMultiple([in] sequence< ::com::sun::star::mozilla::MenuMultipleChange > MenuMultipleChanges);
9160 void menuChangedSingle([in] sequence< ::com::sun::star::mozilla::MenuSingleChange > MenuSingleChanges);
9161 void menuItemDeleted([in] short ID);
9163 published service MenuProxyListener {
9164 interface ::com::sun::star::mozilla::XMenuProxyListener;
9166 published enum MozillaProductType {
9167 Default = 0,
9168 Mozilla = 1,
9169 Firefox = 2,
9170 Thunderbird = 3
9172 published interface XProfileDiscover {
9173 interface ::com::sun::star::uno::XInterface;
9174 long getProfileCount([in] ::com::sun::star::mozilla::MozillaProductType product);
9175 long getProfileList([in] ::com::sun::star::mozilla::MozillaProductType product, [out] sequence< string > list);
9176 string getDefaultProfile([in] ::com::sun::star::mozilla::MozillaProductType product);
9177 string getProfilePath([in] ::com::sun::star::mozilla::MozillaProductType product, [in] string profileName);
9178 boolean isProfileLocked([in] ::com::sun::star::mozilla::MozillaProductType product, [in] string profileName);
9179 boolean getProfileExists([in] ::com::sun::star::mozilla::MozillaProductType product, [in] string profileName);
9181 published interface XProfileManager {
9182 interface ::com::sun::star::uno::XInterface;
9183 long bootupProfile([in] ::com::sun::star::mozilla::MozillaProductType product, [in] string profileName);
9184 long shutdownProfile();
9185 ::com::sun::star::mozilla::MozillaProductType getCurrentProduct();
9186 string getCurrentProfile();
9187 boolean isCurrentProfileLocked();
9188 string setCurrentProfile([in] ::com::sun::star::mozilla::MozillaProductType product, [in] string profileName);
9190 published interface XCodeProxy;
9191 published interface XProxyRunner {
9192 interface ::com::sun::star::uno::XInterface;
9193 long Run([in] ::com::sun::star::mozilla::XCodeProxy aCode);
9195 published interface XMozillaBootstrap {
9196 interface ::com::sun::star::mozilla::XProfileDiscover;
9197 interface ::com::sun::star::mozilla::XProfileManager;
9198 interface ::com::sun::star::mozilla::XProxyRunner;
9200 published service MozillaBootstrap: ::com::sun::star::mozilla::XMozillaBootstrap;
9201 published interface XCloseSessionListener {
9202 interface ::com::sun::star::uno::XInterface;
9203 void sessionClosed([in] any sessionData);
9205 published interface XCodeProxy {
9206 interface ::com::sun::star::uno::XInterface;
9207 long run();
9208 ::com::sun::star::mozilla::MozillaProductType getProductType();
9209 string getProfileName();
9211 published interface XPluginInstance {
9212 interface ::com::sun::star::uno::XInterface;
9213 void start();
9214 void stop();
9215 void destroy();
9216 void createWindow([in] any PlatformParentData, [in] boolean embedded);
9217 void newStream([in] string MIMEDesc, [in] string theURL, [in] string filter, [in] ::com::sun::star::io::XInputStream stream, [in] any sessionData);
9218 void newURL([in] string MIMEDesc, [in] string theURL, [in] string filter, [in] any sessionData);
9219 void getHttpServerURL([out] string aHost, [out] unsigned short aPort, [out] string aPrefix);
9221 published interface XPluginInstanceNotifySink {
9222 interface ::com::sun::star::uno::XInterface;
9223 void notifyURL([in] string theURL);
9225 published interface XPluginInstancePeer {
9226 interface ::com::sun::star::uno::XInterface;
9227 boolean setWindowSize([in] long width, [in] long height);
9228 void showStatusMessage([in] string message);
9229 void enableScripting([in] ::com::sun::star::uno::XInterface document, [in] ::com::sun::star::lang::XMultiServiceFactory servicemanager);
9230 void newStream([in] string MIMEDesc, [in] string target, [in] ::com::sun::star::io::XActiveDataSource data);
9231 void getURL([in] string aURL, [in] string target, [in] string alternativeHost, [in] string referrer, [in] ::com::sun::star::mozilla::XPluginInstanceNotifySink sink);
9232 void postURL([in] string aURL, [in] ::com::sun::star::io::XInputStream postData, [in] string target, [in] string alternativeHost, [in] string referrer, [in] ::com::sun::star::io::XInputStream postHeaders, [in] ::com::sun::star::mozilla::XPluginInstanceNotifySink sink);
9234 published interface XPluginInstanceSyncPeer {
9235 interface ::com::sun::star::uno::XInterface;
9236 void openNewBrowserWindow([out] ::com::sun::star::mozilla::XPluginInstance aInstance, [out] any aLinkage, [out] boolean embedded);
9238 published interface XPluginWindowPeer {
9239 interface ::com::sun::star::uno::XInterface;
9240 void setChildWindow([in] any SystemWindowData);
9242 /** @deprecated */ published interface XRemoteServiceManagerProvider {
9243 interface ::com::sun::star::uno::XInterface;
9244 ::com::sun::star::lang::XMultiServiceFactory getServiceManager([in] any sessionData);
9247 module packages {
9248 published service Package {
9249 interface ::com::sun::star::lang::XInitialization;
9250 interface ::com::sun::star::container::XHierarchicalNameAccess;
9251 interface ::com::sun::star::lang::XSingleServiceFactory;
9252 interface ::com::sun::star::util::XChangesBatch;
9254 published service PackageFolder {
9255 interface ::com::sun::star::container::XNamed;
9256 interface ::com::sun::star::container::XChild;
9257 interface ::com::sun::star::container::XNameContainer;
9258 interface ::com::sun::star::container::XEnumerationAccess;
9259 interface ::com::sun::star::beans::XPropertySet;
9261 published service PackageFolderEnumeration {
9262 interface ::com::sun::star::container::XEnumeration;
9264 published service PackageStream {
9265 interface ::com::sun::star::container::XNamed;
9266 interface ::com::sun::star::container::XChild;
9267 interface ::com::sun::star::io::XActiveDataSink;
9268 interface ::com::sun::star::beans::XPropertySet;
9270 module zip {
9271 published exception ZipException: ::com::sun::star::uno::Exception {
9274 module manifest {
9275 published interface XManifestReader {
9276 interface ::com::sun::star::uno::XInterface;
9277 sequence< sequence< ::com::sun::star::beans::PropertyValue > > readManifestSequence([in] ::com::sun::star::io::XInputStream rStream);
9279 published service ManifestReader: ::com::sun::star::packages::manifest::XManifestReader;
9280 published interface XManifestWriter {
9281 interface ::com::sun::star::uno::XInterface;
9282 void writeManifestSequence([in] ::com::sun::star::io::XOutputStream rStream, [in] sequence< sequence< ::com::sun::star::beans::PropertyValue > > rSequence);
9284 published service ManifestWriter: ::com::sun::star::packages::manifest::XManifestWriter;
9286 module zip {
9287 published constants ZipConstants {
9288 const short BEST_COMPRESSION = 9;
9289 const short BEST_SPEED = 1;
9290 const short CENATT = 36;
9291 const short CENATX = 38;
9292 const short CENCOM = 32;
9293 const short CENCRC = 16;
9294 const short CENDAT = 14;
9295 const short CENDSK = 34;
9296 const short CENEXT = 30;
9297 const short CENFLG = 8;
9298 const short CENHDR = 46;
9299 const short CENHOW = 10;
9300 const short CENLEN = 24;
9301 const short CENNAM = 28;
9302 const short CENOFF = 42;
9303 const long CENSIG = 33639248;
9304 const short CENSIZ = 20;
9305 const short CENTIM = 12;
9306 const short CENVEM = 4;
9307 const short CENVER = 6;
9308 const short DEFAULT_COMPRESSION = -1;
9309 const short DEFAULT_STRATEGY = 0;
9310 const short DEFLATED = 8;
9311 const short DEF_MEM_LEVEL = 8;
9312 const short ENDCOM = 20;
9313 const short ENDHDR = 22;
9314 const short ENDOFF = 16;
9315 const long ENDSIG = 101010256;
9316 const short ENDSIZ = 12;
9317 const short ENDSUB = 8;
9318 const short ENDTOT = 10;
9319 const short EXTCRC = 4;
9320 const short EXTHDR = 16;
9321 const short EXTLEN = 12;
9322 const long EXTSIG = 134695760;
9323 const short EXTSIZ = 8;
9324 const short FILTERED = 1;
9325 const short HUFFMAN_ONLY = 2;
9326 const short LOCCRC = 14;
9327 const short LOCEXT = 28;
9328 const short LOCFLG = 6;
9329 const short LOCHDR = 30;
9330 const short LOCHOW = 8;
9331 const short LOCLEN = 22;
9332 const short LOCNAM = 26;
9333 const long LOCSIG = 67324752;
9334 const short LOCSIZ = 18;
9335 const short LOCTIM = 10;
9336 const short LOCVER = 4;
9337 const short NO_COMPRESSION = 0;
9338 const long SPANSIG = 134695760;
9339 const short STORED = 0;
9341 published struct ZipEntry {
9342 short nVersion;
9343 short nFlag;
9344 short nMethod;
9345 long nTime;
9346 long nCrc;
9347 long nCompressedSize;
9348 long nSize;
9349 long nOffset;
9350 short nDiskNumber;
9351 string sName;
9352 sequence< byte > extra;
9353 string sComment;
9357 module task {
9358 published enum InteractionClassification {
9359 ERROR = 0,
9360 WARNING = 1,
9361 INFO = 2,
9362 QUERY = 3
9364 published exception ClassifiedInteractionRequest: ::com::sun::star::uno::Exception {
9365 ::com::sun::star::task::InteractionClassification Classification;
9368 module ucb {
9369 published enum IOErrorCode {
9370 ABORT = 0,
9371 ACCESS_DENIED = 1,
9372 ALREADY_EXISTING = 2,
9373 BAD_CRC = 3,
9374 CANT_CREATE = 4,
9375 CANT_READ = 5,
9376 CANT_SEEK = 6,
9377 CANT_TELL = 7,
9378 CANT_WRITE = 8,
9379 CURRENT_DIRECTORY = 9,
9380 DEVICE_NOT_READY = 10,
9381 DIFFERENT_DEVICES = 11,
9382 GENERAL = 12,
9383 INVALID_ACCESS = 13,
9384 INVALID_CHARACTER = 14,
9385 INVALID_DEVICE = 15,
9386 INVALID_LENGTH = 16,
9387 INVALID_PARAMETER = 17,
9388 IS_WILDCARD = 18,
9389 LOCKING_VIOLATION = 19,
9390 MISPLACED_CHARACTER = 20,
9391 NAME_TOO_LONG = 21,
9392 NOT_EXISTING = 22,
9393 NOT_EXISTING_PATH = 23,
9394 NOT_SUPPORTED = 24,
9395 NO_DIRECTORY = 25,
9396 NO_FILE = 26,
9397 OUT_OF_DISK_SPACE = 27,
9398 OUT_OF_FILE_HANDLES = 28,
9399 OUT_OF_MEMORY = 29,
9400 PENDING = 30,
9401 RECURSIVE = 31,
9402 UNKNOWN = 32,
9403 WRITE_PROTECTED = 33,
9404 WRONG_FORMAT = 34,
9405 WRONG_VERSION = 35
9407 published exception InteractiveIOException: ::com::sun::star::task::ClassifiedInteractionRequest {
9408 ::com::sun::star::ucb::IOErrorCode Code;
9411 module packages {
9412 module zip {
9413 published exception ZipIOException: ::com::sun::star::io::IOException {
9417 module plugin {
9418 published struct PluginDescription {
9419 string PluginName;
9420 string Mimetype;
9421 string Extension;
9422 string Description;
9424 published exception PluginException: ::com::sun::star::uno::Exception {
9425 short ErrorCode;
9427 published interface XPlugin;
9428 published interface XPluginContext;
9429 published interface XPluginManager {
9430 interface ::com::sun::star::uno::XInterface;
9431 ::com::sun::star::plugin::XPluginContext createPluginContext();
9432 sequence< ::com::sun::star::plugin::PluginDescription > getPluginDescriptions();
9433 ::com::sun::star::plugin::XPlugin createPlugin([in] ::com::sun::star::plugin::XPluginContext acontext, [in] short mode, [in] sequence< string > argn, [in] sequence< string > argv, [in] ::com::sun::star::plugin::PluginDescription plugintype) raises (::com::sun::star::plugin::PluginException);
9434 ::com::sun::star::plugin::XPlugin createPluginFromURL([in] ::com::sun::star::plugin::XPluginContext acontext, [in] short mode, [in] sequence< string > argn, [in] sequence< string > argv, [in] ::com::sun::star::awt::XToolkit toolkit, [in] ::com::sun::star::awt::XWindowPeer parent, [in] string url);
9436 published service PluginManager: ::com::sun::star::plugin::XPluginManager;
9437 published constants PluginMode {
9438 const short EMBED = 1;
9439 const short FULL = 2;
9441 published enum PluginVariable {
9442 VxDisplay = 0,
9443 VxtAppContext = 1
9445 published interface XPlugin {
9446 interface ::com::sun::star::uno::XInterface;
9447 boolean provideNewStream([in] string mimetype, [in] ::com::sun::star::io::XActiveDataSource aSource, [in] string url, [in] long length, [in] long lastmodified, [in] boolean isfile) raises (::com::sun::star::plugin::PluginException);
9449 published interface XPluginContext {
9450 interface ::com::sun::star::uno::XInterface;
9451 string getValue([in] ::com::sun::star::plugin::XPlugin xPlugin, [in] ::com::sun::star::plugin::PluginVariable aVariable) raises (::com::sun::star::plugin::PluginException);
9452 void getURLNotify([in] ::com::sun::star::plugin::XPlugin plugin, [in] string url, [in] string target, [in] ::com::sun::star::lang::XEventListener listener) raises (::com::sun::star::plugin::PluginException);
9453 void getURL([in] ::com::sun::star::plugin::XPlugin plugin, [in] string url, [in] string target) raises (::com::sun::star::plugin::PluginException);
9454 void postURLNotify([in] ::com::sun::star::plugin::XPlugin plugin, [in] string url, [in] string target, [in] sequence< byte > buf, [in] boolean file, [in] ::com::sun::star::lang::XEventListener listener) raises (::com::sun::star::plugin::PluginException);
9455 void postURL([in] ::com::sun::star::plugin::XPlugin plugin, [in] string url, [in] string target, [in] sequence< byte > buf, [in] boolean file) raises (::com::sun::star::plugin::PluginException);
9456 void newStream([in] ::com::sun::star::plugin::XPlugin plugin, [in] string mimetype, [in] string target, [in] ::com::sun::star::io::XActiveDataSource aSource) raises (::com::sun::star::plugin::PluginException);
9457 void displayStatusText([in] ::com::sun::star::plugin::XPlugin plugin, [in] string message) raises (::com::sun::star::plugin::PluginException);
9458 string getUserAgent([in] ::com::sun::star::plugin::XPlugin plugin) raises (::com::sun::star::plugin::PluginException);
9461 module presentation {
9462 published enum AnimationEffect {
9463 NONE = 0,
9464 FADE_FROM_LEFT = 1,
9465 FADE_FROM_TOP = 2,
9466 FADE_FROM_RIGHT = 3,
9467 FADE_FROM_BOTTOM = 4,
9468 FADE_TO_CENTER = 5,
9469 FADE_FROM_CENTER = 6,
9470 MOVE_FROM_LEFT = 7,
9471 MOVE_FROM_TOP = 8,
9472 MOVE_FROM_RIGHT = 9,
9473 MOVE_FROM_BOTTOM = 10,
9474 VERTICAL_STRIPES = 11,
9475 HORIZONTAL_STRIPES = 12,
9476 CLOCKWISE = 13,
9477 COUNTERCLOCKWISE = 14,
9478 FADE_FROM_UPPERLEFT = 15,
9479 FADE_FROM_UPPERRIGHT = 16,
9480 FADE_FROM_LOWERLEFT = 17,
9481 FADE_FROM_LOWERRIGHT = 18,
9482 CLOSE_VERTICAL = 19,
9483 CLOSE_HORIZONTAL = 20,
9484 OPEN_VERTICAL = 21,
9485 OPEN_HORIZONTAL = 22,
9486 PATH = 23,
9487 MOVE_TO_LEFT = 24,
9488 MOVE_TO_TOP = 25,
9489 MOVE_TO_RIGHT = 26,
9490 MOVE_TO_BOTTOM = 27,
9491 SPIRALIN_LEFT = 28,
9492 SPIRALIN_RIGHT = 29,
9493 SPIRALOUT_LEFT = 30,
9494 SPIRALOUT_RIGHT = 31,
9495 DISSOLVE = 32,
9496 WAVYLINE_FROM_LEFT = 33,
9497 WAVYLINE_FROM_TOP = 34,
9498 WAVYLINE_FROM_RIGHT = 35,
9499 WAVYLINE_FROM_BOTTOM = 36,
9500 RANDOM = 37,
9501 VERTICAL_LINES = 38,
9502 HORIZONTAL_LINES = 39,
9503 LASER_FROM_LEFT = 40,
9504 LASER_FROM_TOP = 41,
9505 LASER_FROM_RIGHT = 42,
9506 LASER_FROM_BOTTOM = 43,
9507 LASER_FROM_UPPERLEFT = 44,
9508 LASER_FROM_UPPERRIGHT = 45,
9509 LASER_FROM_LOWERLEFT = 46,
9510 LASER_FROM_LOWERRIGHT = 47,
9511 APPEAR = 48,
9512 HIDE = 49,
9513 MOVE_FROM_UPPERLEFT = 50,
9514 MOVE_FROM_UPPERRIGHT = 51,
9515 MOVE_FROM_LOWERRIGHT = 52,
9516 MOVE_FROM_LOWERLEFT = 53,
9517 MOVE_TO_UPPERLEFT = 54,
9518 MOVE_TO_UPPERRIGHT = 55,
9519 MOVE_TO_LOWERRIGHT = 56,
9520 MOVE_TO_LOWERLEFT = 57,
9521 MOVE_SHORT_FROM_LEFT = 58,
9522 MOVE_SHORT_FROM_UPPERLEFT = 59,
9523 MOVE_SHORT_FROM_TOP = 60,
9524 MOVE_SHORT_FROM_UPPERRIGHT = 61,
9525 MOVE_SHORT_FROM_RIGHT = 62,
9526 MOVE_SHORT_FROM_LOWERRIGHT = 63,
9527 MOVE_SHORT_FROM_BOTTOM = 64,
9528 MOVE_SHORT_FROM_LOWERLEFT = 65,
9529 MOVE_SHORT_TO_LEFT = 66,
9530 MOVE_SHORT_TO_UPPERLEFT = 67,
9531 MOVE_SHORT_TO_TOP = 68,
9532 MOVE_SHORT_TO_UPPERRIGHT = 69,
9533 MOVE_SHORT_TO_RIGHT = 70,
9534 MOVE_SHORT_TO_LOWERRIGHT = 71,
9535 MOVE_SHORT_TO_BOTTOM = 72,
9536 MOVE_SHORT_TO_LOWERLEFT = 73,
9537 VERTICAL_CHECKERBOARD = 74,
9538 HORIZONTAL_CHECKERBOARD = 75,
9539 HORIZONTAL_ROTATE = 76,
9540 VERTICAL_ROTATE = 77,
9541 HORIZONTAL_STRETCH = 78,
9542 VERTICAL_STRETCH = 79,
9543 STRETCH_FROM_LEFT = 80,
9544 STRETCH_FROM_UPPERLEFT = 81,
9545 STRETCH_FROM_TOP = 82,
9546 STRETCH_FROM_UPPERRIGHT = 83,
9547 STRETCH_FROM_RIGHT = 84,
9548 STRETCH_FROM_LOWERRIGHT = 85,
9549 STRETCH_FROM_BOTTOM = 86,
9550 STRETCH_FROM_LOWERLEFT = 87,
9551 ZOOM_IN = 88,
9552 ZOOM_IN_SMALL = 89,
9553 ZOOM_IN_SPIRAL = 90,
9554 ZOOM_OUT = 91,
9555 ZOOM_OUT_SMALL = 92,
9556 ZOOM_OUT_SPIRAL = 93,
9557 ZOOM_IN_FROM_LEFT = 94,
9558 ZOOM_IN_FROM_UPPERLEFT = 95,
9559 ZOOM_IN_FROM_TOP = 96,
9560 ZOOM_IN_FROM_UPPERRIGHT = 97,
9561 ZOOM_IN_FROM_RIGHT = 98,
9562 ZOOM_IN_FROM_LOWERRIGHT = 99,
9563 ZOOM_IN_FROM_BOTTOM = 100,
9564 ZOOM_IN_FROM_LOWERLEFT = 101,
9565 ZOOM_IN_FROM_CENTER = 102,
9566 ZOOM_OUT_FROM_LEFT = 103,
9567 ZOOM_OUT_FROM_UPPERLEFT = 104,
9568 ZOOM_OUT_FROM_TOP = 105,
9569 ZOOM_OUT_FROM_UPPERRIGHT = 106,
9570 ZOOM_OUT_FROM_RIGHT = 107,
9571 ZOOM_OUT_FROM_LOWERRIGHT = 108,
9572 ZOOM_OUT_FROM_BOTTOM = 109,
9573 ZOOM_OUT_FROM_LOWERLEFT = 110,
9574 ZOOM_OUT_FROM_CENTER = 111
9576 published enum AnimationSpeed {
9577 SLOW = 0,
9578 MEDIUM = 1,
9579 FAST = 2
9581 published enum ClickAction {
9582 NONE = 0,
9583 PREVPAGE = 1,
9584 NEXTPAGE = 2,
9585 FIRSTPAGE = 3,
9586 LASTPAGE = 4,
9587 BOOKMARK = 5,
9588 DOCUMENT = 6,
9589 INVISIBLE = 7,
9590 SOUND = 8,
9591 VERB = 9,
9592 VANISH = 10,
9593 PROGRAM = 11,
9594 MACRO = 12,
9595 STOPPRESENTATION = 13
9597 published service Shape {
9598 [property] string Bookmark;
9599 [property] ::com::sun::star::util::Color DimColor;
9600 [property] boolean DimHide;
9601 [property] boolean DimPrevious;
9602 [property] ::com::sun::star::presentation::AnimationEffect Effect;
9603 [property] boolean IsEmptyPresentationObject;
9604 [property, readonly] boolean IsPresentationObject;
9605 [property] ::com::sun::star::presentation::ClickAction OnClick;
9606 [property] boolean PlayFull;
9607 [property] long PresentationOrder;
9608 [property] string Sound;
9609 [property] boolean SoundOn;
9610 [property] ::com::sun::star::presentation::AnimationSpeed Speed;
9611 [property] ::com::sun::star::presentation::AnimationEffect TextEffect;
9612 [property] long Verb;
9614 published service ChartShape {
9615 service ::com::sun::star::presentation::Shape;
9616 service ::com::sun::star::drawing::OLE2Shape;
9618 published service CustomPresentation {
9619 interface ::com::sun::star::container::XIndexContainer;
9620 interface ::com::sun::star::container::XNamed;
9622 published service CustomPresentationAccess {
9623 interface ::com::sun::star::container::XNameContainer;
9624 interface ::com::sun::star::lang::XSingleServiceFactory;
9626 published service DocumentSettings {
9627 service ::com::sun::star::document::Settings;
9628 [optional] service ::com::sun::star::document::HeaderFooterSettings;
9629 interface ::com::sun::star::beans::XPropertySet;
9630 [property, optional] boolean IsPrintDrawing;
9631 [property, optional] boolean IsPrintNotes;
9632 [property, optional] boolean IsPrintHandout;
9633 [property, optional] boolean IsPrintOutline;
9634 [property, optional] boolean IsPrintHiddenPages;
9635 [property, optional] boolean IsPrintFitPage;
9636 [property, optional] boolean IsPrintTilePage;
9637 [property, optional] long PageNumberFormat;
9638 [property, optional] boolean ParagraphSummation;
9640 published enum FadeEffect {
9641 NONE = 0,
9642 FADE_FROM_LEFT = 1,
9643 FADE_FROM_TOP = 2,
9644 FADE_FROM_RIGHT = 3,
9645 FADE_FROM_BOTTOM = 4,
9646 FADE_TO_CENTER = 5,
9647 FADE_FROM_CENTER = 6,
9648 MOVE_FROM_LEFT = 7,
9649 MOVE_FROM_TOP = 8,
9650 MOVE_FROM_RIGHT = 9,
9651 MOVE_FROM_BOTTOM = 10,
9652 ROLL_FROM_LEFT = 11,
9653 ROLL_FROM_TOP = 12,
9654 ROLL_FROM_RIGHT = 13,
9655 ROLL_FROM_BOTTOM = 14,
9656 VERTICAL_STRIPES = 15,
9657 HORIZONTAL_STRIPES = 16,
9658 CLOCKWISE = 17,
9659 COUNTERCLOCKWISE = 18,
9660 FADE_FROM_UPPERLEFT = 19,
9661 FADE_FROM_UPPERRIGHT = 20,
9662 FADE_FROM_LOWERLEFT = 21,
9663 FADE_FROM_LOWERRIGHT = 22,
9664 CLOSE_VERTICAL = 23,
9665 CLOSE_HORIZONTAL = 24,
9666 OPEN_VERTICAL = 25,
9667 OPEN_HORIZONTAL = 26,
9668 SPIRALIN_LEFT = 27,
9669 SPIRALIN_RIGHT = 28,
9670 SPIRALOUT_LEFT = 29,
9671 SPIRALOUT_RIGHT = 30,
9672 DISSOLVE = 31,
9673 WAVYLINE_FROM_LEFT = 32,
9674 WAVYLINE_FROM_TOP = 33,
9675 WAVYLINE_FROM_RIGHT = 34,
9676 WAVYLINE_FROM_BOTTOM = 35,
9677 RANDOM = 36,
9678 STRETCH_FROM_LEFT = 37,
9679 STRETCH_FROM_TOP = 38,
9680 STRETCH_FROM_RIGHT = 39,
9681 STRETCH_FROM_BOTTOM = 40,
9682 VERTICAL_LINES = 41,
9683 HORIZONTAL_LINES = 42,
9684 MOVE_FROM_UPPERLEFT = 43,
9685 MOVE_FROM_UPPERRIGHT = 44,
9686 MOVE_FROM_LOWERRIGHT = 45,
9687 MOVE_FROM_LOWERLEFT = 46,
9688 UNCOVER_TO_LEFT = 47,
9689 UNCOVER_TO_UPPERLEFT = 48,
9690 UNCOVER_TO_TOP = 49,
9691 UNCOVER_TO_UPPERRIGHT = 50,
9692 UNCOVER_TO_RIGHT = 51,
9693 UNCOVER_TO_LOWERRIGHT = 52,
9694 UNCOVER_TO_BOTTOM = 53,
9695 UNCOVER_TO_LOWERLEFT = 54,
9696 VERTICAL_CHECKERBOARD = 55,
9697 HORIZONTAL_CHECKERBOARD = 56
9699 published service DrawPage {
9700 service ::com::sun::star::drawing::DrawPage;
9701 service ::com::sun::star::document::LinkTarget;
9702 [property] long Change;
9703 [property] long Duration;
9704 [property, optional] double HighResDuration;
9705 [property] ::com::sun::star::presentation::FadeEffect Effect;
9706 [property] short Layout;
9707 [property] ::com::sun::star::presentation::AnimationSpeed Speed;
9708 [property, optional] boolean IsHeaderVisible;
9709 [property, optional] string HeaderText;
9710 [property, optional] boolean IsFooterVisible;
9711 [property, optional] string FooterText;
9712 [property, optional] boolean IsPageNumberVisible;
9713 [property, optional] boolean IsDateTimeVisible;
9714 [property, optional] boolean IsDateTimeFixed;
9715 [property, optional] string DateTimeText;
9716 [property, optional] long DateTimeFormat;
9718 published service GraphicObjectShape {
9719 service ::com::sun::star::presentation::Shape;
9720 service ::com::sun::star::drawing::GraphicObjectShape;
9722 published service HandoutShape {
9723 service ::com::sun::star::presentation::Shape;
9724 service ::com::sun::star::drawing::PageShape;
9726 published service HandoutView {
9727 service ::com::sun::star::drawing::DrawingDocumentDrawView;
9729 published service NotesShape {
9730 service ::com::sun::star::presentation::Shape;
9731 service ::com::sun::star::drawing::TextShape;
9733 published service NotesView {
9734 service ::com::sun::star::drawing::DrawingDocumentDrawView;
9736 published service OLE2Shape {
9737 service ::com::sun::star::presentation::Shape;
9738 service ::com::sun::star::drawing::OLE2Shape;
9740 published service OutlineView {
9741 service ::com::sun::star::frame::Controller;
9742 interface ::com::sun::star::awt::XWindow;
9743 interface ::com::sun::star::beans::XPropertySet;
9744 [property, readonly] ::com::sun::star::awt::Rectangle VisibleArea;
9746 published service OutlinerShape {
9747 service ::com::sun::star::presentation::Shape;
9748 service ::com::sun::star::drawing::TextShape;
9750 published service PageShape {
9751 service ::com::sun::star::presentation::Shape;
9752 service ::com::sun::star::drawing::PageShape;
9754 published interface XPresentation {
9755 interface ::com::sun::star::uno::XInterface;
9756 void start();
9757 void end();
9758 void rehearseTimings();
9760 published service Presentation {
9761 interface ::com::sun::star::presentation::XPresentation;
9762 interface ::com::sun::star::beans::XPropertySet;
9763 [property] boolean AllowAnimations;
9764 [property] string CustomShow;
9765 [property] string FirstPage;
9766 [property] boolean IsAlwaysOnTop;
9767 [property] boolean IsAutomatic;
9768 [property] boolean IsEndless;
9769 [property] boolean IsFullScreen;
9770 [property] boolean IsLivePresentation;
9771 [property] boolean IsMouseVisible;
9772 [property] long Pause;
9773 [property] boolean StartWithNavigator;
9774 [property] boolean UsePen;
9776 published interface XCustomPresentationSupplier {
9777 interface ::com::sun::star::uno::XInterface;
9778 ::com::sun::star::container::XNameContainer getCustomPresentations();
9780 published interface XPresentationSupplier {
9781 interface ::com::sun::star::uno::XInterface;
9782 ::com::sun::star::presentation::XPresentation getPresentation();
9784 published enum PresentationRange {
9785 PRESENTATIONRANGE_ALL = 0,
9786 PRESENTATIONRANGE_FROM_PAGE = 1,
9787 PRESENTATIONRANGE_INDIVIDUAL = 2
9789 published service PresentationView {
9790 service ::com::sun::star::frame::Controller;
9791 interface ::com::sun::star::awt::XWindow;
9792 interface ::com::sun::star::drawing::XDrawView;
9793 interface ::com::sun::star::beans::XPropertySet;
9794 [property] ::com::sun::star::drawing::XDrawPage CurrentPage;
9795 [property, readonly] ::com::sun::star::awt::Rectangle VisibleArea;
9797 published service PreviewView {
9798 service ::com::sun::star::frame::Controller;
9799 interface ::com::sun::star::awt::XWindow;
9800 interface ::com::sun::star::drawing::XDrawView;
9801 interface ::com::sun::star::beans::XPropertySet;
9802 [property] ::com::sun::star::drawing::XDrawPage CurrentPage;
9803 [property, readonly] ::com::sun::star::awt::Rectangle VisibleArea;
9805 published service SlidesView {
9806 service ::com::sun::star::frame::Controller;
9807 interface ::com::sun::star::awt::XWindow;
9808 interface ::com::sun::star::beans::XPropertySet;
9809 [property, readonly] ::com::sun::star::awt::Rectangle VisibleArea;
9811 published service SubtitleShape {
9812 service ::com::sun::star::presentation::Shape;
9813 service ::com::sun::star::drawing::TextShape;
9815 published service TitleTextShape {
9816 service ::com::sun::star::presentation::Shape;
9817 service ::com::sun::star::drawing::TextShape;
9819 published interface XHandoutMasterSupplier {
9820 interface ::com::sun::star::uno::XInterface;
9821 ::com::sun::star::drawing::XDrawPage getHandoutMasterPage();
9823 published interface XPresentationPage {
9824 interface ::com::sun::star::drawing::XDrawPage;
9825 ::com::sun::star::drawing::XDrawPage getNotesPage();
9828 module text {
9829 published enum TextContentAnchorType {
9830 AT_PARAGRAPH = 0,
9831 AS_CHARACTER = 1,
9832 AT_PAGE = 2,
9833 AT_FRAME = 3,
9834 AT_CHARACTER = 4
9836 published enum WrapTextMode {
9837 NONE = 0,
9838 THROUGHT = 1,
9839 PARALLEL = 2,
9840 DYNAMIC = 3,
9841 LEFT = 4,
9842 RIGHT = 5
9844 published interface XTextContent {
9845 interface ::com::sun::star::lang::XComponent;
9846 void attach([in] ::com::sun::star::text::XTextRange xTextRange) raises (::com::sun::star::lang::IllegalArgumentException);
9847 ::com::sun::star::text::XTextRange getAnchor();
9849 published service TextContent {
9850 interface ::com::sun::star::text::XTextContent;
9851 [property, optional] ::com::sun::star::text::TextContentAnchorType AnchorType;
9852 [property, optional, readonly] sequence< ::com::sun::star::text::TextContentAnchorType > AnchorTypes;
9853 [property, optional] ::com::sun::star::text::WrapTextMode TextWrap;
9855 published interface XTextField {
9856 interface ::com::sun::star::text::XTextContent;
9857 string getPresentation([in] boolean bShowCommand);
9859 published service TextField {
9860 service ::com::sun::star::text::TextContent;
9861 interface ::com::sun::star::text::XTextField;
9862 [optional] interface ::com::sun::star::beans::XPropertySet;
9863 [property, optional, readonly] boolean IsFieldUsed;
9864 [property, optional, readonly] boolean IsFieldDisplayed;
9867 module table {
9868 published struct CellAddress {
9869 short Sheet;
9870 long Column;
9871 long Row;
9874 module sheet {
9875 published struct FunctionArgument {
9876 string Name;
9877 string Description;
9878 boolean IsOptional;
9881 module resource {
9882 published exception MissingResourceException: ::com::sun::star::uno::RuntimeException {
9884 published interface XResourceBundle;
9885 published interface XResourceBundleLoader {
9886 interface ::com::sun::star::uno::XInterface;
9887 ::com::sun::star::resource::XResourceBundle loadBundle_Default([in] string aBaseName) raises (::com::sun::star::resource::MissingResourceException);
9888 ::com::sun::star::resource::XResourceBundle loadBundle([in] string abaseName, [in] ::com::sun::star::lang::Locale aLocale) raises (::com::sun::star::resource::MissingResourceException);
9890 published interface XLocale {
9891 interface ::com::sun::star::uno::XInterface;
9892 ::com::sun::star::lang::Locale create([in] string aLanguage, [in] string aCountry, [in] string aVariant);
9893 ::com::sun::star::lang::Locale getDefault();
9894 void setDefault([in] ::com::sun::star::lang::Locale newLocale);
9895 sequence< ::com::sun::star::lang::Locale > getAvailableLocales();
9896 sequence< string > getISOCountries();
9897 sequence< string > getISOLanguages();
9898 sequence< string > getLanguagesForCountry([in] string country);
9899 string getISO3Language([in] ::com::sun::star::lang::Locale locale) raises (::com::sun::star::resource::MissingResourceException);
9900 string getISO3Country([in] ::com::sun::star::lang::Locale locale) raises (::com::sun::star::resource::MissingResourceException);
9901 string getDisplayLanguage_Default([in] ::com::sun::star::lang::Locale locale);
9902 string getDisplayLanguage([in] ::com::sun::star::lang::Locale locale, [in] ::com::sun::star::lang::Locale inLocale);
9903 string getDisplayCountry_Default([in] ::com::sun::star::lang::Locale locale);
9904 string getDisplayCountry([in] ::com::sun::star::lang::Locale locale, [in] ::com::sun::star::lang::Locale inLocale);
9905 string getDisplayVariant_Default([in] ::com::sun::star::lang::Locale locale);
9906 string getDisplayVariant([in] ::com::sun::star::lang::Locale locale, [in] ::com::sun::star::lang::Locale inLocale);
9907 string getDisplayName_Default([in] ::com::sun::star::lang::Locale locale);
9908 string getDisplayName([in] ::com::sun::star::lang::Locale locale, [in] ::com::sun::star::lang::Locale inLocale);
9909 boolean equals([in] ::com::sun::star::lang::Locale l1, [in] ::com::sun::star::lang::Locale l2);
9911 /** @deprecated */ published interface XResourceBundle {
9912 interface ::com::sun::star::container::XNameAccess;
9913 [attribute] ::com::sun::star::resource::XResourceBundle Parent;
9914 ::com::sun::star::lang::Locale getLocale();
9915 any getDirectElement([in] string key);
9918 module scanner {
9919 published enum ScanError {
9920 ScanErrorNone = 0,
9921 ScannerNotAvailable = 1,
9922 ScanFailed = 2,
9923 ScanInProgress = 3,
9924 ScanCanceled = 4,
9925 InvalidContext = 5
9927 published struct ScannerContext {
9928 string ScannerName;
9929 long InternalData;
9931 published exception ScannerException: ::com::sun::star::uno::Exception {
9932 ::com::sun::star::scanner::ScanError Error;
9934 published interface XScannerManager {
9935 interface ::com::sun::star::uno::XInterface;
9936 sequence< ::com::sun::star::scanner::ScannerContext > getAvailableScanners();
9937 boolean configureScanner([inout] ::com::sun::star::scanner::ScannerContext scannerContext) raises (::com::sun::star::scanner::ScannerException);
9938 void startScan([in] ::com::sun::star::scanner::ScannerContext scannerContext, [in] ::com::sun::star::lang::XEventListener listener) raises (::com::sun::star::scanner::ScannerException);
9939 ::com::sun::star::scanner::ScanError getError([in] ::com::sun::star::scanner::ScannerContext scannerContext) raises (::com::sun::star::scanner::ScannerException);
9940 ::com::sun::star::awt::XBitmap getBitmap([in] ::com::sun::star::scanner::ScannerContext scannerContext) raises (::com::sun::star::scanner::ScannerException);
9942 published interface XScannerManager2 {
9943 interface ::com::sun::star::scanner::XScannerManager;
9944 boolean configureScannerAndScan([inout] ::com::sun::star::scanner::ScannerContext scannerContext, [in] ::com::sun::star::lang::XEventListener listener) raises (::com::sun::star::scanner::ScannerException);
9946 published service ScannerManager: ::com::sun::star::scanner::XScannerManager2;
9948 module script {
9949 published interface XLibraryContainer {
9950 interface ::com::sun::star::container::XNameAccess;
9951 ::com::sun::star::container::XNameContainer createLibrary([in] string Name) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::ElementExistException);
9952 ::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);
9953 void removeLibrary([in] string Name) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::WrappedTargetException);
9954 boolean isLibraryLoaded([in] string Name) raises (::com::sun::star::container::NoSuchElementException);
9955 void loadLibrary([in] string Name) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::WrappedTargetException);
9957 published interface XLibraryContainer2 {
9958 interface ::com::sun::star::script::XLibraryContainer;
9959 boolean isLibraryLink([in] string Name) raises (::com::sun::star::container::NoSuchElementException);
9960 string getLibraryLinkURL([in] string Name) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException);
9961 boolean isLibraryReadOnly([in] string Name) raises (::com::sun::star::container::NoSuchElementException);
9962 void setLibraryReadOnly([in] string Name, [in] boolean bReadOnly) raises (::com::sun::star::container::NoSuchElementException);
9963 void renameLibrary([in] string Name, [in] string NewName) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::container::ElementExistException);
9965 published constants ModuleType {
9966 const long CLASS = 2;
9967 const long DOCUMENT = 4;
9968 const long FORM = 3;
9969 const long NORMAL = 1;
9970 const long UNKNOWN = 0;
9972 published interface XLibraryContainer3 {
9973 interface ::com::sun::star::script::XLibraryContainer2;
9974 string getOriginalLibraryLinkURL([in] string Name) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException);
9976 published interface XLibraryContainerPassword {
9977 interface ::com::sun::star::uno::XInterface;
9978 boolean isLibraryPasswordProtected([in] string Name) raises (::com::sun::star::container::NoSuchElementException);
9979 boolean isLibraryPasswordVerified([in] string Name) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException);
9980 boolean verifyLibraryPassword([in] string Name, [in] string Password) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException);
9981 void changeLibraryPassword([in] string Name, [in] string OldPassword, [in] string NewPassword) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException);
9984 module sdbc {
9985 published interface XMultipleResults {
9986 interface ::com::sun::star::uno::XInterface;
9987 ::com::sun::star::sdbc::XResultSet getResultSet() raises (::com::sun::star::sdbc::SQLException);
9988 long getUpdateCount() raises (::com::sun::star::sdbc::SQLException);
9989 boolean getMoreResults() raises (::com::sun::star::sdbc::SQLException);
9991 published interface XPreparedBatchExecution {
9992 interface ::com::sun::star::uno::XInterface;
9993 void addBatch() raises (::com::sun::star::sdbc::SQLException);
9994 void clearBatch() raises (::com::sun::star::sdbc::SQLException);
9995 sequence< long > executeBatch() raises (::com::sun::star::sdbc::SQLException);
9997 published interface XConnection;
9998 published interface XPreparedStatement {
9999 interface ::com::sun::star::uno::XInterface;
10000 ::com::sun::star::sdbc::XResultSet executeQuery() raises (::com::sun::star::sdbc::SQLException);
10001 long executeUpdate() raises (::com::sun::star::sdbc::SQLException);
10002 boolean execute() raises (::com::sun::star::sdbc::SQLException);
10003 ::com::sun::star::sdbc::XConnection getConnection() raises (::com::sun::star::sdbc::SQLException);
10005 published service PreparedStatement {
10006 interface ::com::sun::star::sdbc::XCloseable;
10007 interface ::com::sun::star::beans::XPropertySet;
10008 interface ::com::sun::star::sdbc::XPreparedStatement;
10009 interface ::com::sun::star::sdbc::XResultSetMetaDataSupplier;
10010 interface ::com::sun::star::sdbc::XParameters;
10011 interface ::com::sun::star::sdbc::XWarningsSupplier;
10012 interface ::com::sun::star::sdbc::XMultipleResults;
10013 [optional] interface ::com::sun::star::lang::XComponent;
10014 [optional] interface ::com::sun::star::util::XCancellable;
10015 [optional] interface ::com::sun::star::sdbc::XPreparedBatchExecution;
10016 [property] long QueryTimeOut;
10017 [property] long MaxFieldSize;
10018 [property] long MaxRows;
10019 [property] string CursorName;
10020 [property] long ResultSetConcurrency;
10021 [property] long ResultSetType;
10022 [property] long FetchDirection;
10023 [property] long FetchSize;
10026 module sdb {
10027 published service PreparedStatement {
10028 service ::com::sun::star::sdbc::PreparedStatement;
10029 interface ::com::sun::star::sdbcx::XColumnsSupplier;
10032 module sdbc {
10033 published interface XOutParameters {
10034 interface ::com::sun::star::uno::XInterface;
10035 void registerOutParameter([in] long parameterIndex, [in] long sqlType, [in] string typeName) raises (::com::sun::star::sdbc::SQLException);
10036 void registerNumericOutParameter([in] long parameterIndex, [in] long sqlType, [in] long scale) raises (::com::sun::star::sdbc::SQLException);
10038 published service CallableStatement {
10039 service ::com::sun::star::sdbc::PreparedStatement;
10040 interface ::com::sun::star::sdbc::XRow;
10041 interface ::com::sun::star::sdbc::XOutParameters;
10044 module sdb {
10045 published service CallableStatement {
10046 service ::com::sun::star::sdbc::CallableStatement;
10047 service ::com::sun::star::sdb::PreparedStatement;
10049 published service ColumnSettings {
10050 interface ::com::sun::star::beans::XPropertySet;
10051 [property] long FormatKey;
10052 [property] long Align;
10053 [property] long Width;
10054 [property] long Position;
10055 [property] boolean Hidden;
10056 [property, optional] ::com::sun::star::beans::XPropertySet ControlModel;
10057 [property, optional] string HelpText;
10058 [property, optional] string ControlDefault;
10061 module sdbcx {
10062 published interface XDataDescriptorFactory {
10063 interface ::com::sun::star::uno::XInterface;
10064 ::com::sun::star::beans::XPropertySet createDataDescriptor();
10066 published service Column {
10067 interface ::com::sun::star::beans::XPropertySet;
10068 [optional] interface ::com::sun::star::sdbcx::XDataDescriptorFactory;
10069 [property, readonly] string Name;
10070 [property, readonly] long Type;
10071 [property, readonly] string TypeName;
10072 [property, readonly] long Precision;
10073 [property, readonly] long Scale;
10074 [property, readonly] long IsNullable;
10075 [property, readonly] boolean IsAutoIncrement;
10076 [property, readonly] boolean IsCurrency;
10077 [property, optional, readonly] boolean IsRowVersion;
10078 [property, optional, readonly] string Description;
10079 [property, optional, readonly] string DefaultValue;
10082 module sdb {
10083 published service Column {
10084 service ::com::sun::star::sdbcx::Column;
10085 service ::com::sun::star::sdb::ColumnSettings;
10088 module sdbcx {
10089 published interface XRename {
10090 interface ::com::sun::star::uno::XInterface;
10091 void rename([in] string newName) raises (::com::sun::star::sdbc::SQLException, ::com::sun::star::container::ElementExistException);
10094 module sdb {
10095 published constants CommandType {
10096 const long COMMAND = 2;
10097 const long QUERY = 1;
10098 const long TABLE = 0;
10100 published interface XCommandPreparation {
10101 interface ::com::sun::star::uno::XInterface;
10102 ::com::sun::star::sdbc::XPreparedStatement prepareCommand([in] string command, [in] long commandType) raises (::com::sun::star::sdbc::SQLException);
10104 published interface XQueriesSupplier {
10105 interface ::com::sun::star::uno::XInterface;
10106 ::com::sun::star::container::XNameAccess getQueries();
10108 published interface XSQLQueryComposer;
10109 published interface XSQLQueryComposerFactory {
10110 interface ::com::sun::star::uno::XInterface;
10111 ::com::sun::star::sdb::XSQLQueryComposer createQueryComposer();
10114 module sdbc {
10115 published interface XDatabaseMetaData;
10116 published interface XStatement;
10117 published interface XConnection {
10118 interface ::com::sun::star::sdbc::XCloseable;
10119 ::com::sun::star::sdbc::XStatement createStatement() raises (::com::sun::star::sdbc::SQLException);
10120 ::com::sun::star::sdbc::XPreparedStatement prepareStatement([in] string sql) raises (::com::sun::star::sdbc::SQLException);
10121 ::com::sun::star::sdbc::XPreparedStatement prepareCall([in] string sql) raises (::com::sun::star::sdbc::SQLException);
10122 string nativeSQL([in] string sql) raises (::com::sun::star::sdbc::SQLException);
10123 void setAutoCommit([in] boolean autoCommit) raises (::com::sun::star::sdbc::SQLException);
10124 boolean getAutoCommit() raises (::com::sun::star::sdbc::SQLException);
10125 void commit() raises (::com::sun::star::sdbc::SQLException);
10126 void rollback() raises (::com::sun::star::sdbc::SQLException);
10127 boolean isClosed() raises (::com::sun::star::sdbc::SQLException);
10128 ::com::sun::star::sdbc::XDatabaseMetaData getMetaData() raises (::com::sun::star::sdbc::SQLException);
10129 void setReadOnly([in] boolean readOnly) raises (::com::sun::star::sdbc::SQLException);
10130 boolean isReadOnly() raises (::com::sun::star::sdbc::SQLException);
10131 void setCatalog([in] string catalog) raises (::com::sun::star::sdbc::SQLException);
10132 string getCatalog() raises (::com::sun::star::sdbc::SQLException);
10133 void setTransactionIsolation([in] long level) raises (::com::sun::star::sdbc::SQLException);
10134 long getTransactionIsolation() raises (::com::sun::star::sdbc::SQLException);
10135 ::com::sun::star::container::XNameAccess getTypeMap() raises (::com::sun::star::sdbc::SQLException);
10136 void setTypeMap([in] ::com::sun::star::container::XNameAccess typeMap) raises (::com::sun::star::sdbc::SQLException);
10138 published service Connection {
10139 interface ::com::sun::star::lang::XComponent;
10140 interface ::com::sun::star::sdbc::XConnection;
10141 interface ::com::sun::star::sdbc::XWarningsSupplier;
10144 module sdbcx {
10145 published interface XGroupsSupplier {
10146 interface ::com::sun::star::uno::XInterface;
10147 ::com::sun::star::container::XNameAccess getGroups();
10149 published interface XTablesSupplier {
10150 interface ::com::sun::star::uno::XInterface;
10151 ::com::sun::star::container::XNameAccess getTables();
10153 published interface XUsersSupplier {
10154 interface ::com::sun::star::uno::XInterface;
10155 ::com::sun::star::container::XNameAccess getUsers();
10157 published interface XViewsSupplier {
10158 interface ::com::sun::star::uno::XInterface;
10159 ::com::sun::star::container::XNameAccess getViews();
10161 published service DatabaseDefinition {
10162 interface ::com::sun::star::sdbcx::XTablesSupplier;
10163 [optional] interface ::com::sun::star::sdbcx::XViewsSupplier;
10164 [optional] interface ::com::sun::star::sdbcx::XUsersSupplier;
10165 [optional] interface ::com::sun::star::sdbcx::XGroupsSupplier;
10168 module sdb {
10169 published service Connection {
10170 service ::com::sun::star::sdbc::Connection;
10171 service ::com::sun::star::sdbcx::DatabaseDefinition;
10172 interface ::com::sun::star::container::XChild;
10173 interface ::com::sun::star::sdb::XCommandPreparation;
10174 interface ::com::sun::star::sdb::XQueriesSupplier;
10175 interface ::com::sun::star::sdb::XSQLQueryComposerFactory;
10176 [optional] interface ::com::sun::star::lang::XMultiServiceFactory;
10178 published service ContentLoader {
10179 service ::com::sun::star::frame::FrameLoader;
10181 published service DataAccessDescriptor {
10182 [property, optional] string DataSourceName;
10183 [property, optional] string DatabaseLocation;
10184 [property, optional] string ConnectionResource;
10185 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > ConnectionInfo;
10186 [property, optional] ::com::sun::star::sdbc::XConnection ActiveConnection;
10187 [property, optional] string Command;
10188 [property, optional] long CommandType;
10189 [property, optional] string Filter;
10190 [property, optional] string Order;
10191 [property, optional] string HavingClause;
10192 [property, optional] string GroupBy;
10193 [property, optional] boolean EscapeProcessing;
10194 [property, optional] ::com::sun::star::sdbc::XResultSet ResultSet;
10195 [property, optional] sequence< any > Selection;
10196 [property, optional] boolean BookmarkSelection;
10197 [property, optional] string ColumnName;
10198 [property, optional] ::com::sun::star::beans::XPropertySet Column;
10200 published service ResultColumn {
10201 service ::com::sun::star::sdbcx::Column;
10202 service ::com::sun::star::sdb::ColumnSettings;
10203 [property, readonly] boolean IsSearchable;
10204 [property, readonly] boolean IsSigned;
10205 [property, readonly] boolean IsCaseSensitive;
10206 [property, readonly] long DisplaySize;
10207 [property, readonly] string Label;
10208 [property, readonly] boolean IsReadOnly;
10209 [property, readonly] boolean IsWritable;
10210 [property, readonly] boolean IsDefinitelyWritable;
10211 [property, readonly] string ServiceName;
10212 [property, readonly] string TableName;
10213 [property, readonly] string SchemaName;
10214 [property, readonly] string CatalogName;
10217 module sdbc {
10218 published interface XArray;
10219 published interface XBlob;
10220 published interface XClob;
10221 published interface XRef;
10223 module sdb {
10224 published interface XColumn {
10225 interface ::com::sun::star::uno::XInterface;
10226 boolean wasNull() raises (::com::sun::star::sdbc::SQLException);
10227 string getString() raises (::com::sun::star::sdbc::SQLException);
10228 boolean getBoolean() raises (::com::sun::star::sdbc::SQLException);
10229 byte getByte() raises (::com::sun::star::sdbc::SQLException);
10230 short getShort() raises (::com::sun::star::sdbc::SQLException);
10231 long getInt() raises (::com::sun::star::sdbc::SQLException);
10232 hyper getLong() raises (::com::sun::star::sdbc::SQLException);
10233 float getFloat() raises (::com::sun::star::sdbc::SQLException);
10234 double getDouble() raises (::com::sun::star::sdbc::SQLException);
10235 sequence< byte > getBytes() raises (::com::sun::star::sdbc::SQLException);
10236 ::com::sun::star::util::Date getDate() raises (::com::sun::star::sdbc::SQLException);
10237 ::com::sun::star::util::Time getTime() raises (::com::sun::star::sdbc::SQLException);
10238 ::com::sun::star::util::DateTime getTimestamp() raises (::com::sun::star::sdbc::SQLException);
10239 ::com::sun::star::io::XInputStream getBinaryStream() raises (::com::sun::star::sdbc::SQLException);
10240 ::com::sun::star::io::XInputStream getCharacterStream() raises (::com::sun::star::sdbc::SQLException);
10241 any getObject([in] ::com::sun::star::container::XNameAccess typeMap) raises (::com::sun::star::sdbc::SQLException);
10242 ::com::sun::star::sdbc::XRef getRef() raises (::com::sun::star::sdbc::SQLException);
10243 ::com::sun::star::sdbc::XBlob getBlob() raises (::com::sun::star::sdbc::SQLException);
10244 ::com::sun::star::sdbc::XClob getClob() raises (::com::sun::star::sdbc::SQLException);
10245 ::com::sun::star::sdbc::XArray getArray() raises (::com::sun::star::sdbc::SQLException);
10247 published interface XColumnUpdate {
10248 interface ::com::sun::star::uno::XInterface;
10249 void updateNull() raises (::com::sun::star::sdbc::SQLException);
10250 void updateBoolean([in] boolean x) raises (::com::sun::star::sdbc::SQLException);
10251 void updateByte([in] byte x) raises (::com::sun::star::sdbc::SQLException);
10252 void updateShort([in] short x) raises (::com::sun::star::sdbc::SQLException);
10253 void updateInt([in] long x) raises (::com::sun::star::sdbc::SQLException);
10254 void updateLong([in] hyper x) raises (::com::sun::star::sdbc::SQLException);
10255 void updateFloat([in] float x) raises (::com::sun::star::sdbc::SQLException);
10256 void updateDouble([in] double x) raises (::com::sun::star::sdbc::SQLException);
10257 void updateString([in] string x) raises (::com::sun::star::sdbc::SQLException);
10258 void updateBytes([in] sequence< byte > x) raises (::com::sun::star::sdbc::SQLException);
10259 void updateDate([in] ::com::sun::star::util::Date x) raises (::com::sun::star::sdbc::SQLException);
10260 void updateTime([in] ::com::sun::star::util::Time x) raises (::com::sun::star::sdbc::SQLException);
10261 void updateTimestamp([in] ::com::sun::star::util::DateTime x) raises (::com::sun::star::sdbc::SQLException);
10262 void updateBinaryStream([in] ::com::sun::star::io::XInputStream x, [in] long length) raises (::com::sun::star::sdbc::SQLException);
10263 void updateCharacterStream([in] ::com::sun::star::io::XInputStream x, [in] long length) raises (::com::sun::star::sdbc::SQLException);
10264 void updateObject([in] any x) raises (::com::sun::star::sdbc::SQLException);
10265 void updateNumericObject([in] any x, [in] long scale) raises (::com::sun::star::sdbc::SQLException);
10267 published service DataColumn {
10268 service ::com::sun::star::sdb::ResultColumn;
10269 interface ::com::sun::star::sdb::XColumn;
10270 interface ::com::sun::star::sdb::XColumnUpdate;
10271 [property, optional] any Value;
10272 [property, optional, readonly] any OriginalValue;
10274 published service DataSettings {
10275 [property] string Filter;
10276 [property] boolean ApplyFilter;
10277 [property] string Order;
10278 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
10279 [property] long RowHeight;
10280 [property] ::com::sun::star::util::Color TextColor;
10281 [property, optional] string HavingClause;
10282 [property, optional] string GroupBy;
10284 published interface XBookmarksSupplier {
10285 interface ::com::sun::star::uno::XInterface;
10286 ::com::sun::star::container::XNameAccess getBookmarks();
10288 published interface XCompletedConnection {
10289 interface ::com::sun::star::uno::XInterface;
10290 ::com::sun::star::sdbc::XConnection connectWithCompletion([in] ::com::sun::star::task::XInteractionHandler handler) raises (::com::sun::star::sdbc::SQLException);
10292 published interface XQueryDefinitionsSupplier {
10293 interface ::com::sun::star::uno::XInterface;
10294 ::com::sun::star::container::XNameAccess getQueryDefinitions();
10297 module sdbc {
10298 published interface XDataSource {
10299 interface ::com::sun::star::uno::XInterface;
10300 ::com::sun::star::sdbc::XConnection getConnection([in] string user, [in] string password) raises (::com::sun::star::sdbc::SQLException);
10301 void setLoginTimeout([in] long seconds) raises (::com::sun::star::sdbc::SQLException);
10302 long getLoginTimeout() raises (::com::sun::star::sdbc::SQLException);
10304 published interface XIsolatedConnection {
10305 interface ::com::sun::star::uno::XInterface;
10306 ::com::sun::star::sdbc::XConnection getIsolatedConnectionWithCompletion([in] ::com::sun::star::task::XInteractionHandler handler) raises (::com::sun::star::sdbc::SQLException);
10307 ::com::sun::star::sdbc::XConnection getIsolatedConnection([in] string user, [in] string password) raises (::com::sun::star::sdbc::SQLException);
10310 module sdb {
10311 published service DataSource {
10312 interface ::com::sun::star::beans::XPropertySet;
10313 interface ::com::sun::star::sdb::XCompletedConnection;
10314 interface ::com::sun::star::sdbc::XIsolatedConnection;
10315 interface ::com::sun::star::util::XFlushable;
10316 interface ::com::sun::star::sdb::XQueryDefinitionsSupplier;
10317 interface ::com::sun::star::sdbc::XDataSource;
10318 [optional] interface ::com::sun::star::sdb::XBookmarksSupplier;
10319 [property, readonly] string Name;
10320 [property] string URL;
10321 [property] sequence< ::com::sun::star::beans::PropertyValue > Info;
10322 [property, optional, readonly] ::com::sun::star::beans::XPropertySet Settings;
10323 [property] string User;
10324 [property] string Password;
10325 [property] boolean IsPasswordRequired;
10326 [property] boolean SuppressVersionColumns;
10327 [property, readonly] boolean IsReadOnly;
10328 [property, readonly] ::com::sun::star::util::XNumberFormatsSupplier NumberFormatsSupplier;
10329 [property] sequence< string > TableFilter;
10330 [property] sequence< string > TableTypeFilter;
10332 published service DataSourceBrowser {
10333 [optional] service ::com::sun::star::form::FormController;
10334 interface ::com::sun::star::frame::XController;
10335 interface ::com::sun::star::lang::XInitialization;
10336 interface ::com::sun::star::frame::XDispatchProvider;
10337 [optional] interface ::com::sun::star::ui::XContextMenuInterception;
10339 published interface XDatabaseAccessListener;
10340 /** @deprecated */ published interface XDatabaseAccess {
10341 interface ::com::sun::star::sdbc::XDataSource;
10342 boolean hasConnections();
10343 ::com::sun::star::sdbc::XConnection getIsolatedConnection([in] string user, [in] string password) raises (::com::sun::star::sdbc::SQLException);
10344 boolean suspendConnections() raises (::com::sun::star::sdbc::SQLException);
10345 void addDatabaseAccessListener([in] ::com::sun::star::sdb::XDatabaseAccessListener listener);
10346 void removeDatabaseAccessListener([in] ::com::sun::star::sdb::XDatabaseAccessListener listener);
10348 /** @deprecated */ published service DatabaseAccess {
10349 interface ::com::sun::star::beans::XPropertySet;
10350 interface ::com::sun::star::sdb::XDatabaseAccess;
10351 [optional] interface ::com::sun::star::sdb::XCompletedConnection;
10352 [property, readonly] string URL;
10353 [property] string Title;
10354 [property] string ConnectURL;
10355 [property] sequence< ::com::sun::star::beans::PropertyValue > ConnectInfo;
10356 [property, readonly] boolean IsReadOnly;
10357 [property] ::com::sun::star::util::XNumberFormatsSupplier NumberFormatsSupplier;
10358 [property, optional] boolean IsPasswordRequired;
10359 [property, optional] sequence< string > TableFilter;
10360 [property, optional] sequence< string > TableTypeFilter;
10362 /** @deprecated */ published service DatabaseAccessConnection {
10363 service ::com::sun::star::sdbc::Connection;
10364 service ::com::sun::star::sdbcx::DatabaseDefinition;
10365 interface ::com::sun::star::container::XChild;
10366 interface ::com::sun::star::sdb::XSQLQueryComposerFactory;
10367 interface ::com::sun::star::sdb::XQueriesSupplier;
10370 module util {
10371 published struct AliasProgrammaticPair {
10372 string Alias;
10373 string ProgrammaticName;
10375 published interface XLocalizedAliases {
10376 interface ::com::sun::star::uno::XInterface;
10377 void bindAlias([in] string programmaticName, [in] ::com::sun::star::lang::Locale locale, [in] string alias) raises (::com::sun::star::container::ElementExistException);
10378 void unbindAlias([in] ::com::sun::star::lang::Locale locale, [in] string alias) raises (::com::sun::star::container::NoSuchElementException);
10379 string lookupAlias([in] ::com::sun::star::lang::Locale locale, [in] string Alias) raises (::com::sun::star::container::NoSuchElementException);
10380 string lookupProgrammatic([in] ::com::sun::star::lang::Locale locale, [in] string programmatic) raises (::com::sun::star::container::NoSuchElementException);
10381 void unbindAliases([in] string programmaticName) raises (::com::sun::star::container::NoSuchElementException);
10382 void rebindAliases([in] string currentProgrammatic, [in] string newProgrammatic) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::container::ElementExistException);
10383 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);
10384 sequence< ::com::sun::star::util::AliasProgrammaticPair > listAliases([in] ::com::sun::star::lang::Locale locale);
10387 module sdb {
10388 /** @deprecated */ published service DatabaseAccessContext {
10389 interface ::com::sun::star::container::XEnumerationAccess;
10390 interface ::com::sun::star::container::XNameAccess;
10391 interface ::com::sun::star::util::XLocalizedAliases;
10392 interface ::com::sun::star::lang::XLocalizable;
10395 module ucb {
10396 published enum RememberAuthentication {
10397 NO = 0,
10398 SESSION = 1,
10399 PERSISTENT = 2
10402 module sdb {
10403 /** @deprecated */ published service DatabaseAccessDataSource {
10404 interface ::com::sun::star::beans::XPropertySet;
10405 interface ::com::sun::star::sdbc::XDataSource;
10406 [optional] interface ::com::sun::star::sdb::XCompletedConnection;
10407 [property] string URL;
10408 [property, optional] ::com::sun::star::ucb::RememberAuthentication PasswordMode;
10410 published interface XDatabaseRegistrationsListener;
10411 published interface XDatabaseRegistrations {
10412 interface ::com::sun::star::uno::XInterface;
10413 boolean hasRegisteredDatabase([in] string Name) raises (::com::sun::star::lang::IllegalArgumentException);
10414 sequence< string > getRegistrationNames();
10415 string getDatabaseLocation([in] string Name) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException);
10416 void registerDatabaseLocation([in] string Name, [in] string Location) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::ElementExistException);
10417 void revokeDatabaseLocation([in] string Name) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::IllegalAccessException);
10418 void changeDatabaseLocation([in] string Name, [in] string NewLocation) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::IllegalAccessException);
10419 boolean isDatabaseRegistrationReadOnly([in] string Name) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException);
10420 void addDatabaseRegistrationsListener([in] ::com::sun::star::sdb::XDatabaseRegistrationsListener Listener);
10421 void removeDatabaseRegistrationsListener([in] ::com::sun::star::sdb::XDatabaseRegistrationsListener Listener);
10423 published interface XDatabaseContext {
10424 interface ::com::sun::star::container::XEnumerationAccess;
10425 interface ::com::sun::star::container::XNameAccess;
10426 interface ::com::sun::star::uno::XNamingService;
10427 interface ::com::sun::star::container::XContainer;
10428 interface ::com::sun::star::lang::XSingleServiceFactory;
10429 interface ::com::sun::star::sdb::XDatabaseRegistrations;
10431 published service DatabaseContext: ::com::sun::star::sdb::XDatabaseContext;
10432 /** @deprecated */ published service DatabaseDocument {
10433 interface ::com::sun::star::beans::XPropertySet;
10434 interface ::com::sun::star::sdbcx::XDataDescriptorFactory;
10435 interface ::com::sun::star::sdbcx::XRename;
10436 [property, readonly] string Name;
10437 [property, readonly] string URL;
10440 module sdbc {
10441 published interface XDriverManager {
10442 interface ::com::sun::star::uno::XInterface;
10443 ::com::sun::star::sdbc::XConnection getConnection([in] string url) raises (::com::sun::star::sdbc::SQLException);
10444 ::com::sun::star::sdbc::XConnection getConnectionWithInfo([in] string url, [in] sequence< ::com::sun::star::beans::PropertyValue > info) raises (::com::sun::star::sdbc::SQLException);
10445 void setLoginTimeout([in] long seconds);
10446 long getLoginTimeout();
10449 module sdb {
10450 /** @deprecated */ published interface XDatabaseEnvironment {
10451 interface ::com::sun::star::sdbc::XDriverManager;
10452 ::com::sun::star::sdb::XDatabaseAccess getDatabaseAccess([in] string URL) raises (::com::sun::star::sdbc::SQLException);
10453 ::com::sun::star::sdb::XDatabaseAccess createDatabaseAccess([in] string URL, [in] string title) raises (::com::sun::star::sdbc::SQLException);
10455 /** @deprecated */ published service DatabaseEnvironment {
10456 interface ::com::sun::star::sdb::XDatabaseEnvironment;
10457 interface ::com::sun::star::beans::XPropertySet;
10458 [property, readonly] ::com::sun::star::util::XNumberFormatsSupplier NumberFormatsSupplier;
10460 published struct DatabaseRegistrationEvent: ::com::sun::star::lang::EventObject {
10461 string Name;
10462 string OldLocation;
10463 string NewLocation;
10465 published service DatasourceAdministrationDialog {
10466 interface ::com::sun::star::beans::XPropertySet;
10467 interface ::com::sun::star::ui::dialogs::XExecutableDialog;
10468 interface ::com::sun::star::lang::XInitialization;
10469 [property] string Title;
10470 [property] ::com::sun::star::awt::XWindow ParentWindow;
10472 published service DefinitionContainer {
10473 interface ::com::sun::star::container::XNameAccess;
10474 interface ::com::sun::star::container::XNameContainer;
10475 interface ::com::sun::star::container::XIndexAccess;
10476 interface ::com::sun::star::container::XEnumerationAccess;
10477 [optional] interface ::com::sun::star::util::XRefreshable;
10478 [optional] interface ::com::sun::star::lang::XSingleServiceFactory;
10481 module ucb {
10482 published interface XCommandInfoChangeListener;
10483 published interface XCommandInfoChangeNotifier {
10484 interface ::com::sun::star::uno::XInterface;
10485 void addCommandInfoChangeListener([in] ::com::sun::star::ucb::XCommandInfoChangeListener Listener);
10486 void removeCommandInfoChangeListener([in] ::com::sun::star::ucb::XCommandInfoChangeListener Listener);
10488 published struct Command {
10489 string Name;
10490 long Handle;
10491 any Argument;
10493 published interface XCommandProcessor {
10494 interface ::com::sun::star::uno::XInterface;
10495 long createCommandIdentifier();
10496 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);
10497 void abort([in] long CommandId);
10499 published interface XCommandProcessor2 {
10500 interface ::com::sun::star::ucb::XCommandProcessor;
10501 void releaseCommandIdentifier([in] long CommandId);
10503 published interface XContentEventListener;
10504 published interface XContentIdentifier;
10505 published interface XContent {
10506 interface ::com::sun::star::uno::XInterface;
10507 ::com::sun::star::ucb::XContentIdentifier getIdentifier();
10508 string getContentType();
10509 void addContentEventListener([in] ::com::sun::star::ucb::XContentEventListener Listener);
10510 void removeContentEventListener([in] ::com::sun::star::ucb::XContentEventListener Listener);
10512 published struct ContentInfo {
10513 string Type;
10514 long Attributes;
10515 sequence< ::com::sun::star::beans::Property > Properties;
10517 /** @deprecated */ published interface XContentCreator {
10518 interface ::com::sun::star::uno::XInterface;
10519 sequence< ::com::sun::star::ucb::ContentInfo > queryCreatableContentsInfo();
10520 ::com::sun::star::ucb::XContent createNewContent([in] ::com::sun::star::ucb::ContentInfo Info);
10522 published service Content {
10523 interface ::com::sun::star::ucb::XContent;
10524 interface ::com::sun::star::lang::XComponent;
10525 interface ::com::sun::star::ucb::XCommandProcessor;
10526 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
10527 /** @deprecated */ interface ::com::sun::star::beans::XPropertyContainer;
10528 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
10529 [optional] interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
10530 [optional] interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
10531 /** @deprecated */ [optional] interface ::com::sun::star::ucb::XContentCreator;
10532 [optional] interface ::com::sun::star::container::XChild;
10535 module sdb {
10536 /** @deprecated */ published service Document {
10537 interface ::com::sun::star::beans::XPropertySet;
10538 [property, readonly] string Name;
10539 [property] string DocumentLocation;
10541 published service ErrorMessageDialog: ::com::sun::star::ui::dialogs::XExecutableDialog {
10542 create([in] string initialTitle, [in] ::com::sun::star::awt::XWindow parentWindow, [in] any sqlException);
10544 /** @deprecated */ published service InteractionHandler: ::com::sun::star::task::XInteractionHandler;
10545 published exception ParametersRequest: ::com::sun::star::task::ClassifiedInteractionRequest {
10546 ::com::sun::star::container::XIndexAccess Parameters;
10547 ::com::sun::star::sdbc::XConnection Connection;
10549 published interface XQueryDefinition {
10550 interface ::com::sun::star::beans::XPropertySet;
10551 interface ::com::sun::star::ucb::XContent;
10552 interface ::com::sun::star::lang::XComponent;
10554 published service Query {
10555 service ::com::sun::star::sdb::DataSettings;
10556 interface ::com::sun::star::sdb::XQueryDefinition;
10557 interface ::com::sun::star::sdbcx::XDataDescriptorFactory;
10558 interface ::com::sun::star::sdbcx::XRename;
10559 interface ::com::sun::star::sdbcx::XColumnsSupplier;
10561 published service QueryDefinition: ::com::sun::star::sdb::XQueryDefinition;
10563 module sdbcx {
10564 published service Descriptor {
10565 interface ::com::sun::star::beans::XPropertySet;
10566 [property] string Name;
10569 module sdb {
10570 published service QueryDescriptor {
10571 service ::com::sun::star::sdbcx::Descriptor;
10572 service ::com::sun::star::sdb::DataSettings;
10573 interface ::com::sun::star::sdbcx::XDataDescriptorFactory;
10574 interface ::com::sun::star::sdbcx::XColumnsSupplier;
10575 [property] string Command;
10576 [property] boolean EscapeProcessing;
10577 [property] string UpdateTableName;
10578 [property] string UpdateCatalogName;
10579 [property] string UpdateSchemaName;
10581 published service QueryDesign {
10582 interface ::com::sun::star::frame::XController;
10583 interface ::com::sun::star::lang::XInitialization;
10584 [property, readonly] string ActiveCommand;
10585 [property, optional, readonly] boolean EscapeProcessing;
10587 published service RelationDesign {
10588 interface ::com::sun::star::frame::XController;
10589 interface ::com::sun::star::lang::XInitialization;
10591 published constants RowChangeAction {
10592 const long DELETE = 3;
10593 const long INSERT = 1;
10594 const long UPDATE = 2;
10596 published exception RowSetVetoException: ::com::sun::star::sdbc::SQLException {
10599 module sdbc {
10600 published exception SQLWarning: ::com::sun::star::sdbc::SQLException {
10603 module sdb {
10604 published exception SQLContext: ::com::sun::star::sdbc::SQLWarning {
10605 string Details;
10607 published struct SQLErrorEvent: ::com::sun::star::lang::EventObject {
10608 any Reason;
10610 published interface XSQLQueryComposer {
10611 interface ::com::sun::star::uno::XInterface;
10612 string getQuery();
10613 void setQuery([in] string command) raises (::com::sun::star::sdbc::SQLException);
10614 string getComposedQuery();
10615 string getFilter();
10616 sequence< sequence< ::com::sun::star::beans::PropertyValue > > getStructuredFilter();
10617 string getOrder();
10618 void appendFilterByColumn([in] ::com::sun::star::beans::XPropertySet column) raises (::com::sun::star::sdbc::SQLException);
10619 void appendOrderByColumn([in] ::com::sun::star::beans::XPropertySet column, [in] boolean ascending) raises (::com::sun::star::sdbc::SQLException);
10620 void setFilter([in] string filter) raises (::com::sun::star::sdbc::SQLException);
10621 void setOrder([in] string order) raises (::com::sun::star::sdbc::SQLException);
10623 published service SQLQueryComposer {
10624 interface ::com::sun::star::sdb::XSQLQueryComposer;
10625 interface ::com::sun::star::sdbcx::XTablesSupplier;
10626 interface ::com::sun::star::sdbcx::XColumnsSupplier;
10629 module sdbcx {
10630 published interface XAlterTable {
10631 interface ::com::sun::star::uno::XInterface;
10632 void alterColumnByName([in] string colName, [in] ::com::sun::star::beans::XPropertySet descriptor) raises (::com::sun::star::sdbc::SQLException, ::com::sun::star::container::NoSuchElementException);
10633 void alterColumnByIndex([in] long index, [in] ::com::sun::star::beans::XPropertySet descriptor) raises (::com::sun::star::sdbc::SQLException, ::com::sun::star::lang::IndexOutOfBoundsException);
10635 published interface XIndexesSupplier {
10636 interface ::com::sun::star::uno::XInterface;
10637 ::com::sun::star::container::XNameAccess getIndexes();
10639 published interface XKeysSupplier {
10640 interface ::com::sun::star::uno::XInterface;
10641 ::com::sun::star::container::XIndexAccess getKeys();
10643 published service Table {
10644 interface ::com::sun::star::sdbcx::XColumnsSupplier;
10645 interface ::com::sun::star::beans::XPropertySet;
10646 [optional] interface ::com::sun::star::sdbcx::XDataDescriptorFactory;
10647 [optional] interface ::com::sun::star::sdbcx::XIndexesSupplier;
10648 [optional] interface ::com::sun::star::sdbcx::XKeysSupplier;
10649 [optional] interface ::com::sun::star::sdbcx::XRename;
10650 [optional] interface ::com::sun::star::sdbcx::XAlterTable;
10651 [property, readonly] string Name;
10652 [property, readonly] string CatalogName;
10653 [property, readonly] string SchemaName;
10654 [property, readonly] string Description;
10655 [property, optional, readonly] string Type;
10658 module sdb {
10659 published service Table {
10660 service ::com::sun::star::sdbcx::Table;
10661 service ::com::sun::star::sdb::DataSettings;
10662 [property, readonly] long Privileges;
10665 module sdbcx {
10666 published service TableDescriptor {
10667 service ::com::sun::star::sdbcx::Descriptor;
10668 interface ::com::sun::star::sdbcx::XColumnsSupplier;
10669 [optional] interface ::com::sun::star::sdbcx::XKeysSupplier;
10670 [property] string CatalogName;
10671 [property] string SchemaName;
10672 [property] string Description;
10675 module sdb {
10676 published service TableDescriptor {
10677 service ::com::sun::star::sdbcx::TableDescriptor;
10678 service ::com::sun::star::sdb::DataSettings;
10680 published service TableDesign {
10681 interface ::com::sun::star::frame::XController;
10682 interface ::com::sun::star::lang::XInitialization;
10684 published interface XAlterQuery {
10685 interface ::com::sun::star::uno::XInterface;
10686 void alterCommand([in] string command, [in] boolean useEscapeProcessing) raises (::com::sun::star::sdbc::SQLException);
10688 /** @deprecated */ published interface XDatabaseAccessListener {
10689 interface ::com::sun::star::lang::XEventListener;
10690 void connectionChanged([in] ::com::sun::star::lang::EventObject event);
10691 boolean approveConnectionClosing([in] ::com::sun::star::lang::EventObject event);
10692 void connectionClosing([in] ::com::sun::star::lang::EventObject event);
10694 published interface XDatabaseRegistrationsListener {
10695 interface ::com::sun::star::lang::XEventListener;
10696 void registeredDatabaseLocation([in] ::com::sun::star::sdb::DatabaseRegistrationEvent Event);
10697 void revokedDatabaseLocation([in] ::com::sun::star::sdb::DatabaseRegistrationEvent Event);
10698 void changedDatabaseLocation([in] ::com::sun::star::sdb::DatabaseRegistrationEvent Event);
10700 published interface XInteractionSupplyParameters {
10701 interface ::com::sun::star::task::XInteractionContinuation;
10702 void setParameters([in] sequence< ::com::sun::star::beans::PropertyValue > Values);
10704 published interface XRowSetApproveListener {
10705 interface ::com::sun::star::lang::XEventListener;
10706 boolean approveCursorMove([in] ::com::sun::star::lang::EventObject event);
10707 boolean approveRowChange([in] ::com::sun::star::sdb::RowChangeEvent event);
10708 boolean approveRowSetChange([in] ::com::sun::star::lang::EventObject event);
10710 published interface XRowSetSupplier {
10711 interface ::com::sun::star::uno::XInterface;
10712 ::com::sun::star::sdbc::XRowSet getRowSet();
10713 void setRowSet([in] ::com::sun::star::sdbc::XRowSet xDataSource);
10715 published interface XSQLErrorListener {
10716 interface ::com::sun::star::lang::XEventListener;
10717 void errorOccured([in] ::com::sun::star::sdb::SQLErrorEvent aEvent);
10720 module sdbc {
10721 published exception BatchUpdateException: ::com::sun::star::sdbc::SQLException {
10722 sequence< long > UpdateCounts;
10724 published constants BestRowScope {
10725 const long SESSION = 2;
10726 const long TEMPORARY = 0;
10727 const long TRANSACTION = 1;
10729 published constants BestRowType {
10730 const long NOT_PSEUDO = 1;
10731 const long PSEUDO = 2;
10732 const long UNKNOWN = 0;
10734 /** @deprecated */ published constants ChangeAction {
10735 const long DELETE = 3;
10736 const long INSERT = 1;
10737 const long UNDO = 4;
10738 const long UPDATE = 2;
10740 /** @deprecated */ published struct ChangeEvent: ::com::sun::star::lang::EventObject {
10741 long Action;
10742 long Rows;
10744 published constants ColumnSearch {
10745 const long BASIC = 2;
10746 const long CHAR = 1;
10747 const long FULL = 3;
10748 const long NONE = 0;
10750 published constants ColumnType {
10751 const long NOT_PSEUDO = 1;
10752 const long PSEUDO = 2;
10753 const long UNKNOWN = 0;
10755 published constants ColumnValue {
10756 const long NO_NULLS = 0;
10757 const long NULLABLE = 1;
10758 const long NULLABLE_UNKNOWN = 2;
10760 published interface XDriver;
10761 published interface XDriverAccess {
10762 interface ::com::sun::star::uno::XInterface;
10763 ::com::sun::star::sdbc::XDriver getDriverByURL([in] string url);
10765 published interface XConnectionPool {
10766 interface ::com::sun::star::sdbc::XDriverManager;
10767 interface ::com::sun::star::sdbc::XDriverAccess;
10769 published service ConnectionPool: ::com::sun::star::sdbc::XConnectionPool;
10770 published service ConnectionProperties {
10771 [property, optional] string user;
10772 [property, optional] string password;
10774 published exception DataTruncation: ::com::sun::star::sdbc::SQLWarning {
10775 long Index;
10776 boolean IsParameter;
10777 boolean DuringRead;
10778 long DataSize;
10779 long TransferSize;
10781 published constants DataType {
10782 const long ARRAY = 2003;
10783 const long BIGINT = -5;
10784 const long BINARY = -2;
10785 const long BIT = -7;
10786 const long BLOB = 2004;
10787 const long BOOLEAN = 16;
10788 const long CHAR = 1;
10789 const long CLOB = 2005;
10790 const long DATE = 91;
10791 const long DECIMAL = 3;
10792 const long DISTINCT = 2001;
10793 const long DOUBLE = 8;
10794 const long FLOAT = 6;
10795 const long INTEGER = 4;
10796 const long LONGVARBINARY = -4;
10797 const long LONGVARCHAR = -1;
10798 const long NUMERIC = 2;
10799 const long OBJECT = 2000;
10800 const long OTHER = 1111;
10801 const long REAL = 7;
10802 const long REF = 2006;
10803 const long SMALLINT = 5;
10804 const long SQLNULL = 0;
10805 const long STRUCT = 2002;
10806 const long TIME = 92;
10807 const long TIMESTAMP = 93;
10808 const long TINYINT = -6;
10809 const long VARBINARY = -3;
10810 const long VARCHAR = 12;
10812 published constants Deferrability {
10813 const long INITIALLY_DEFERRED = 5;
10814 const long INITIALLY_IMMEDIATE = 6;
10815 const long NONE = 7;
10817 published struct DriverPropertyInfo {
10818 string Name;
10819 string Description;
10820 boolean IsRequired;
10821 string Value;
10822 sequence< string > Choices;
10824 published interface XDriver {
10825 interface ::com::sun::star::uno::XInterface;
10826 ::com::sun::star::sdbc::XConnection connect([in] string url, [in] sequence< ::com::sun::star::beans::PropertyValue > info) raises (::com::sun::star::sdbc::SQLException);
10827 boolean acceptsURL([in] string url) raises (::com::sun::star::sdbc::SQLException);
10828 sequence< ::com::sun::star::sdbc::DriverPropertyInfo > getPropertyInfo([in] string url, [in] sequence< ::com::sun::star::beans::PropertyValue > info) raises (::com::sun::star::sdbc::SQLException);
10829 long getMajorVersion();
10830 long getMinorVersion();
10832 published service Driver {
10833 interface ::com::sun::star::sdbc::XDriver;
10835 published interface XDriverManager2 {
10836 interface ::com::sun::star::sdbc::XDriverManager;
10837 interface ::com::sun::star::sdbc::XDriverAccess;
10838 interface ::com::sun::star::container::XEnumerationAccess;
10840 published service DriverManager: ::com::sun::star::sdbc::XDriverManager2;
10841 published constants FetchDirection {
10842 const long FORWARD = 1000;
10843 const long REVERSE = 1001;
10844 const long UNKNOWN = 1002;
10846 published constants IndexType {
10847 const short CLUSTERED = 1;
10848 const short HASHED = 2;
10849 const short OTHER = 3;
10850 const short STATISTIC = 0;
10852 published constants KeyRule {
10853 const long CASCADE = 0;
10854 const long NO_ACTION = 3;
10855 const long RESTRICT = 1;
10856 const long SET_DEFAULT = 4;
10857 const long SET_NULL = 2;
10859 published constants ProcedureColumn {
10860 const long IN = 1;
10861 const long INOUT = 2;
10862 const long OUT = 4;
10863 const long RESULT = 3;
10864 const long RETURN = 5;
10865 const long UNKNOWN = 0;
10867 published constants ProcedureResult {
10868 const long NONE = 1;
10869 const long RETURN = 2;
10870 const long UNKNOWN = 0;
10872 published constants ResultSetConcurrency {
10873 const long READ_ONLY = 1007;
10874 const long UPDATABLE = 1008;
10876 published constants ResultSetType {
10877 const long FORWARD_ONLY = 1003;
10878 const long SCROLL_INSENSITIVE = 1004;
10879 const long SCROLL_SENSITIVE = 1005;
10881 published interface XBatchExecution {
10882 interface ::com::sun::star::uno::XInterface;
10883 void addBatch([in] string sql) raises (::com::sun::star::sdbc::SQLException);
10884 void clearBatch() raises (::com::sun::star::sdbc::SQLException);
10885 sequence< long > executeBatch() raises (::com::sun::star::sdbc::SQLException);
10887 published interface XStatement {
10888 interface ::com::sun::star::uno::XInterface;
10889 ::com::sun::star::sdbc::XResultSet executeQuery([in] string sql) raises (::com::sun::star::sdbc::SQLException);
10890 long executeUpdate([in] string sql) raises (::com::sun::star::sdbc::SQLException);
10891 boolean execute([in] string sql) raises (::com::sun::star::sdbc::SQLException);
10892 ::com::sun::star::sdbc::XConnection getConnection() raises (::com::sun::star::sdbc::SQLException);
10894 published service Statement {
10895 interface ::com::sun::star::sdbc::XCloseable;
10896 interface ::com::sun::star::beans::XPropertySet;
10897 interface ::com::sun::star::sdbc::XStatement;
10898 interface ::com::sun::star::sdbc::XWarningsSupplier;
10899 [optional] interface ::com::sun::star::lang::XComponent;
10900 [optional] interface ::com::sun::star::util::XCancellable;
10901 [optional] interface ::com::sun::star::sdbc::XBatchExecution;
10902 [optional] interface ::com::sun::star::sdbc::XMultipleResults;
10903 [property] long QueryTimeOut;
10904 [property] long MaxFieldSize;
10905 [property] long MaxRows;
10906 [property] string CursorName;
10907 [property] long ResultSetConcurrency;
10908 [property] long ResultSetType;
10909 [property] long FetchDirection;
10910 [property] long FetchSize;
10911 [property] boolean EscapeProcessing;
10913 published constants TransactionIsolation {
10914 const long NONE = 0;
10915 const long READ_COMMITTED = 2;
10916 const long READ_UNCOMMITTED = 1;
10917 const long REPEATABLE_READ = 4;
10918 const long SERIALIZABLE = 8;
10920 published interface XArray {
10921 interface ::com::sun::star::uno::XInterface;
10922 string getBaseTypeName() raises (::com::sun::star::sdbc::SQLException);
10923 long getBaseType() raises (::com::sun::star::sdbc::SQLException);
10924 sequence< any > getArray([in] ::com::sun::star::container::XNameAccess typeMap) raises (::com::sun::star::sdbc::SQLException);
10925 sequence< any > getArrayAtIndex([in] long index, [in] long count, [in] ::com::sun::star::container::XNameAccess typeMap) raises (::com::sun::star::sdbc::SQLException);
10926 ::com::sun::star::sdbc::XResultSet getResultSet([in] ::com::sun::star::container::XNameAccess typeMap) raises (::com::sun::star::sdbc::SQLException);
10927 ::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);
10929 published interface XBlob {
10930 interface ::com::sun::star::uno::XInterface;
10931 hyper length() raises (::com::sun::star::sdbc::SQLException);
10932 sequence< byte > getBytes([in] hyper pos, [in] long length) raises (::com::sun::star::sdbc::SQLException);
10933 ::com::sun::star::io::XInputStream getBinaryStream() raises (::com::sun::star::sdbc::SQLException);
10934 hyper position([in] sequence< byte > pattern, [in] hyper start) raises (::com::sun::star::sdbc::SQLException);
10935 hyper positionOfBlob([in] ::com::sun::star::sdbc::XBlob pattern, [in] hyper start) raises (::com::sun::star::sdbc::SQLException);
10937 published interface XClob {
10938 interface ::com::sun::star::uno::XInterface;
10939 hyper length() raises (::com::sun::star::sdbc::SQLException);
10940 string getSubString([in] hyper pos, [in] long length) raises (::com::sun::star::sdbc::SQLException);
10941 ::com::sun::star::io::XInputStream getCharacterStream() raises (::com::sun::star::sdbc::SQLException);
10942 hyper position([in] string searchstr, [in] long start) raises (::com::sun::star::sdbc::SQLException);
10943 hyper positionOfClob([in] ::com::sun::star::sdbc::XClob pattern, [in] hyper start) raises (::com::sun::star::sdbc::SQLException);
10945 published interface XDatabaseMetaData {
10946 interface ::com::sun::star::uno::XInterface;
10947 boolean allProceduresAreCallable() raises (::com::sun::star::sdbc::SQLException);
10948 boolean allTablesAreSelectable() raises (::com::sun::star::sdbc::SQLException);
10949 string getURL() raises (::com::sun::star::sdbc::SQLException);
10950 string getUserName() raises (::com::sun::star::sdbc::SQLException);
10951 boolean isReadOnly() raises (::com::sun::star::sdbc::SQLException);
10952 boolean nullsAreSortedHigh() raises (::com::sun::star::sdbc::SQLException);
10953 boolean nullsAreSortedLow() raises (::com::sun::star::sdbc::SQLException);
10954 boolean nullsAreSortedAtStart() raises (::com::sun::star::sdbc::SQLException);
10955 boolean nullsAreSortedAtEnd() raises (::com::sun::star::sdbc::SQLException);
10956 string getDatabaseProductName() raises (::com::sun::star::sdbc::SQLException);
10957 string getDatabaseProductVersion() raises (::com::sun::star::sdbc::SQLException);
10958 string getDriverName() raises (::com::sun::star::sdbc::SQLException);
10959 string getDriverVersion() raises (::com::sun::star::sdbc::SQLException);
10960 long getDriverMajorVersion();
10961 long getDriverMinorVersion();
10962 boolean usesLocalFiles() raises (::com::sun::star::sdbc::SQLException);
10963 boolean usesLocalFilePerTable() raises (::com::sun::star::sdbc::SQLException);
10964 boolean supportsMixedCaseIdentifiers() raises (::com::sun::star::sdbc::SQLException);
10965 boolean storesUpperCaseIdentifiers() raises (::com::sun::star::sdbc::SQLException);
10966 boolean storesLowerCaseIdentifiers() raises (::com::sun::star::sdbc::SQLException);
10967 boolean storesMixedCaseIdentifiers() raises (::com::sun::star::sdbc::SQLException);
10968 boolean supportsMixedCaseQuotedIdentifiers() raises (::com::sun::star::sdbc::SQLException);
10969 boolean storesUpperCaseQuotedIdentifiers() raises (::com::sun::star::sdbc::SQLException);
10970 boolean storesLowerCaseQuotedIdentifiers() raises (::com::sun::star::sdbc::SQLException);
10971 boolean storesMixedCaseQuotedIdentifiers() raises (::com::sun::star::sdbc::SQLException);
10972 string getIdentifierQuoteString() raises (::com::sun::star::sdbc::SQLException);
10973 string getSQLKeywords() raises (::com::sun::star::sdbc::SQLException);
10974 string getNumericFunctions() raises (::com::sun::star::sdbc::SQLException);
10975 string getStringFunctions() raises (::com::sun::star::sdbc::SQLException);
10976 string getSystemFunctions() raises (::com::sun::star::sdbc::SQLException);
10977 string getTimeDateFunctions() raises (::com::sun::star::sdbc::SQLException);
10978 string getSearchStringEscape() raises (::com::sun::star::sdbc::SQLException);
10979 string getExtraNameCharacters() raises (::com::sun::star::sdbc::SQLException);
10980 boolean supportsAlterTableWithAddColumn() raises (::com::sun::star::sdbc::SQLException);
10981 boolean supportsAlterTableWithDropColumn() raises (::com::sun::star::sdbc::SQLException);
10982 boolean supportsColumnAliasing() raises (::com::sun::star::sdbc::SQLException);
10983 boolean nullPlusNonNullIsNull() raises (::com::sun::star::sdbc::SQLException);
10984 boolean supportsTypeConversion() raises (::com::sun::star::sdbc::SQLException);
10985 boolean supportsConvert([in] long fromType, [in] long toType) raises (::com::sun::star::sdbc::SQLException);
10986 boolean supportsTableCorrelationNames() raises (::com::sun::star::sdbc::SQLException);
10987 boolean supportsDifferentTableCorrelationNames() raises (::com::sun::star::sdbc::SQLException);
10988 boolean supportsExpressionsInOrderBy() raises (::com::sun::star::sdbc::SQLException);
10989 boolean supportsOrderByUnrelated() raises (::com::sun::star::sdbc::SQLException);
10990 boolean supportsGroupBy() raises (::com::sun::star::sdbc::SQLException);
10991 boolean supportsGroupByUnrelated() raises (::com::sun::star::sdbc::SQLException);
10992 boolean supportsGroupByBeyondSelect() raises (::com::sun::star::sdbc::SQLException);
10993 boolean supportsLikeEscapeClause() raises (::com::sun::star::sdbc::SQLException);
10994 boolean supportsMultipleResultSets() raises (::com::sun::star::sdbc::SQLException);
10995 boolean supportsMultipleTransactions() raises (::com::sun::star::sdbc::SQLException);
10996 boolean supportsNonNullableColumns() raises (::com::sun::star::sdbc::SQLException);
10997 boolean supportsMinimumSQLGrammar() raises (::com::sun::star::sdbc::SQLException);
10998 boolean supportsCoreSQLGrammar() raises (::com::sun::star::sdbc::SQLException);
10999 boolean supportsExtendedSQLGrammar() raises (::com::sun::star::sdbc::SQLException);
11000 boolean supportsANSI92EntryLevelSQL() raises (::com::sun::star::sdbc::SQLException);
11001 boolean supportsANSI92IntermediateSQL() raises (::com::sun::star::sdbc::SQLException);
11002 boolean supportsANSI92FullSQL() raises (::com::sun::star::sdbc::SQLException);
11003 boolean supportsIntegrityEnhancementFacility() raises (::com::sun::star::sdbc::SQLException);
11004 boolean supportsOuterJoins() raises (::com::sun::star::sdbc::SQLException);
11005 boolean supportsFullOuterJoins() raises (::com::sun::star::sdbc::SQLException);
11006 boolean supportsLimitedOuterJoins() raises (::com::sun::star::sdbc::SQLException);
11007 string getSchemaTerm() raises (::com::sun::star::sdbc::SQLException);
11008 string getProcedureTerm() raises (::com::sun::star::sdbc::SQLException);
11009 string getCatalogTerm() raises (::com::sun::star::sdbc::SQLException);
11010 boolean isCatalogAtStart() raises (::com::sun::star::sdbc::SQLException);
11011 string getCatalogSeparator() raises (::com::sun::star::sdbc::SQLException);
11012 boolean supportsSchemasInDataManipulation() raises (::com::sun::star::sdbc::SQLException);
11013 boolean supportsSchemasInProcedureCalls() raises (::com::sun::star::sdbc::SQLException);
11014 boolean supportsSchemasInTableDefinitions() raises (::com::sun::star::sdbc::SQLException);
11015 boolean supportsSchemasInIndexDefinitions() raises (::com::sun::star::sdbc::SQLException);
11016 boolean supportsSchemasInPrivilegeDefinitions() raises (::com::sun::star::sdbc::SQLException);
11017 boolean supportsCatalogsInDataManipulation() raises (::com::sun::star::sdbc::SQLException);
11018 boolean supportsCatalogsInProcedureCalls() raises (::com::sun::star::sdbc::SQLException);
11019 boolean supportsCatalogsInTableDefinitions() raises (::com::sun::star::sdbc::SQLException);
11020 boolean supportsCatalogsInIndexDefinitions() raises (::com::sun::star::sdbc::SQLException);
11021 boolean supportsCatalogsInPrivilegeDefinitions() raises (::com::sun::star::sdbc::SQLException);
11022 boolean supportsPositionedDelete() raises (::com::sun::star::sdbc::SQLException);
11023 boolean supportsPositionedUpdate() raises (::com::sun::star::sdbc::SQLException);
11024 boolean supportsSelectForUpdate() raises (::com::sun::star::sdbc::SQLException);
11025 boolean supportsStoredProcedures() raises (::com::sun::star::sdbc::SQLException);
11026 boolean supportsSubqueriesInComparisons() raises (::com::sun::star::sdbc::SQLException);
11027 boolean supportsSubqueriesInExists() raises (::com::sun::star::sdbc::SQLException);
11028 boolean supportsSubqueriesInIns() raises (::com::sun::star::sdbc::SQLException);
11029 boolean supportsSubqueriesInQuantifieds() raises (::com::sun::star::sdbc::SQLException);
11030 boolean supportsCorrelatedSubqueries() raises (::com::sun::star::sdbc::SQLException);
11031 boolean supportsUnion() raises (::com::sun::star::sdbc::SQLException);
11032 boolean supportsUnionAll() raises (::com::sun::star::sdbc::SQLException);
11033 boolean supportsOpenCursorsAcrossCommit() raises (::com::sun::star::sdbc::SQLException);
11034 boolean supportsOpenCursorsAcrossRollback() raises (::com::sun::star::sdbc::SQLException);
11035 boolean supportsOpenStatementsAcrossCommit() raises (::com::sun::star::sdbc::SQLException);
11036 boolean supportsOpenStatementsAcrossRollback() raises (::com::sun::star::sdbc::SQLException);
11037 long getMaxBinaryLiteralLength() raises (::com::sun::star::sdbc::SQLException);
11038 long getMaxCharLiteralLength() raises (::com::sun::star::sdbc::SQLException);
11039 long getMaxColumnNameLength() raises (::com::sun::star::sdbc::SQLException);
11040 long getMaxColumnsInGroupBy() raises (::com::sun::star::sdbc::SQLException);
11041 long getMaxColumnsInIndex() raises (::com::sun::star::sdbc::SQLException);
11042 long getMaxColumnsInOrderBy() raises (::com::sun::star::sdbc::SQLException);
11043 long getMaxColumnsInSelect() raises (::com::sun::star::sdbc::SQLException);
11044 long getMaxColumnsInTable() raises (::com::sun::star::sdbc::SQLException);
11045 long getMaxConnections() raises (::com::sun::star::sdbc::SQLException);
11046 long getMaxCursorNameLength() raises (::com::sun::star::sdbc::SQLException);
11047 long getMaxIndexLength() raises (::com::sun::star::sdbc::SQLException);
11048 long getMaxSchemaNameLength() raises (::com::sun::star::sdbc::SQLException);
11049 long getMaxProcedureNameLength() raises (::com::sun::star::sdbc::SQLException);
11050 long getMaxCatalogNameLength() raises (::com::sun::star::sdbc::SQLException);
11051 long getMaxRowSize() raises (::com::sun::star::sdbc::SQLException);
11052 boolean doesMaxRowSizeIncludeBlobs() raises (::com::sun::star::sdbc::SQLException);
11053 long getMaxStatementLength() raises (::com::sun::star::sdbc::SQLException);
11054 long getMaxStatements() raises (::com::sun::star::sdbc::SQLException);
11055 long getMaxTableNameLength() raises (::com::sun::star::sdbc::SQLException);
11056 long getMaxTablesInSelect() raises (::com::sun::star::sdbc::SQLException);
11057 long getMaxUserNameLength() raises (::com::sun::star::sdbc::SQLException);
11058 long getDefaultTransactionIsolation() raises (::com::sun::star::sdbc::SQLException);
11059 boolean supportsTransactions() raises (::com::sun::star::sdbc::SQLException);
11060 boolean supportsTransactionIsolationLevel([in] long level) raises (::com::sun::star::sdbc::SQLException);
11061 boolean supportsDataDefinitionAndDataManipulationTransactions() raises (::com::sun::star::sdbc::SQLException);
11062 boolean supportsDataManipulationTransactionsOnly() raises (::com::sun::star::sdbc::SQLException);
11063 boolean dataDefinitionCausesTransactionCommit() raises (::com::sun::star::sdbc::SQLException);
11064 boolean dataDefinitionIgnoredInTransactions() raises (::com::sun::star::sdbc::SQLException);
11065 ::com::sun::star::sdbc::XResultSet getProcedures([in] any catalog, [in] string schemaPattern, [in] string procedureNamePattern) raises (::com::sun::star::sdbc::SQLException);
11066 ::com::sun::star::sdbc::XResultSet getProcedureColumns([in] any catalog, [in] string schemaPattern, [in] string procedureNamePattern, [in] string columnNamePattern) raises (::com::sun::star::sdbc::SQLException);
11067 ::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);
11068 ::com::sun::star::sdbc::XResultSet getSchemas() raises (::com::sun::star::sdbc::SQLException);
11069 ::com::sun::star::sdbc::XResultSet getCatalogs() raises (::com::sun::star::sdbc::SQLException);
11070 ::com::sun::star::sdbc::XResultSet getTableTypes() raises (::com::sun::star::sdbc::SQLException);
11071 ::com::sun::star::sdbc::XResultSet getColumns([in] any catalog, [in] string schemaPattern, [in] string tableNamePattern, [in] string columnNamePattern) raises (::com::sun::star::sdbc::SQLException);
11072 ::com::sun::star::sdbc::XResultSet getColumnPrivileges([in] any catalog, [in] string schema, [in] string table, [in] string columnNamePattern) raises (::com::sun::star::sdbc::SQLException);
11073 ::com::sun::star::sdbc::XResultSet getTablePrivileges([in] any catalog, [in] string schemaPattern, [in] string tableNamePattern) raises (::com::sun::star::sdbc::SQLException);
11074 ::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);
11075 ::com::sun::star::sdbc::XResultSet getVersionColumns([in] any catalog, [in] string schema, [in] string table) raises (::com::sun::star::sdbc::SQLException);
11076 ::com::sun::star::sdbc::XResultSet getPrimaryKeys([in] any catalog, [in] string schema, [in] string table) raises (::com::sun::star::sdbc::SQLException);
11077 ::com::sun::star::sdbc::XResultSet getImportedKeys([in] any catalog, [in] string schema, [in] string table) raises (::com::sun::star::sdbc::SQLException);
11078 ::com::sun::star::sdbc::XResultSet getExportedKeys([in] any catalog, [in] string schema, [in] string table) raises (::com::sun::star::sdbc::SQLException);
11079 ::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);
11080 ::com::sun::star::sdbc::XResultSet getTypeInfo() raises (::com::sun::star::sdbc::SQLException);
11081 ::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);
11082 boolean supportsResultSetType([in] long setType) raises (::com::sun::star::sdbc::SQLException);
11083 boolean supportsResultSetConcurrency([in] long setType, [in] long concurrency) raises (::com::sun::star::sdbc::SQLException);
11084 boolean ownUpdatesAreVisible([in] long setType) raises (::com::sun::star::sdbc::SQLException);
11085 boolean ownDeletesAreVisible([in] long setType) raises (::com::sun::star::sdbc::SQLException);
11086 boolean ownInsertsAreVisible([in] long setType) raises (::com::sun::star::sdbc::SQLException);
11087 boolean othersUpdatesAreVisible([in] long setType) raises (::com::sun::star::sdbc::SQLException);
11088 boolean othersDeletesAreVisible([in] long setType) raises (::com::sun::star::sdbc::SQLException);
11089 boolean othersInsertsAreVisible([in] long setType) raises (::com::sun::star::sdbc::SQLException);
11090 boolean updatesAreDetected([in] long setType) raises (::com::sun::star::sdbc::SQLException);
11091 boolean deletesAreDetected([in] long setType) raises (::com::sun::star::sdbc::SQLException);
11092 boolean insertsAreDetected([in] long setType) raises (::com::sun::star::sdbc::SQLException);
11093 boolean supportsBatchUpdates() raises (::com::sun::star::sdbc::SQLException);
11094 ::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);
11095 ::com::sun::star::sdbc::XConnection getConnection() raises (::com::sun::star::sdbc::SQLException);
11097 published interface XGeneratedResultSet {
11098 interface ::com::sun::star::uno::XInterface;
11099 ::com::sun::star::sdbc::XResultSet getGeneratedValues() raises (::com::sun::star::sdbc::SQLException);
11101 published interface XPooledConnection {
11102 interface ::com::sun::star::uno::XInterface;
11103 ::com::sun::star::sdbc::XConnection getConnection() raises (::com::sun::star::sdbc::SQLException);
11105 published interface XRef {
11106 interface ::com::sun::star::uno::XInterface;
11107 string getBaseTypeName() raises (::com::sun::star::sdbc::SQLException);
11109 published interface XResultSetMetaData {
11110 interface ::com::sun::star::uno::XInterface;
11111 long getColumnCount() raises (::com::sun::star::sdbc::SQLException);
11112 boolean isAutoIncrement([in] long column) raises (::com::sun::star::sdbc::SQLException);
11113 boolean isCaseSensitive([in] long column) raises (::com::sun::star::sdbc::SQLException);
11114 boolean isSearchable([in] long column) raises (::com::sun::star::sdbc::SQLException);
11115 boolean isCurrency([in] long column) raises (::com::sun::star::sdbc::SQLException);
11116 long isNullable([in] long column) raises (::com::sun::star::sdbc::SQLException);
11117 boolean isSigned([in] long column) raises (::com::sun::star::sdbc::SQLException);
11118 long getColumnDisplaySize([in] long column) raises (::com::sun::star::sdbc::SQLException);
11119 string getColumnLabel([in] long column) raises (::com::sun::star::sdbc::SQLException);
11120 string getColumnName([in] long column) raises (::com::sun::star::sdbc::SQLException);
11121 string getSchemaName([in] long column) raises (::com::sun::star::sdbc::SQLException);
11122 long getPrecision([in] long column) raises (::com::sun::star::sdbc::SQLException);
11123 long getScale([in] long column) raises (::com::sun::star::sdbc::SQLException);
11124 string getTableName([in] long column) raises (::com::sun::star::sdbc::SQLException);
11125 string getCatalogName([in] long column) raises (::com::sun::star::sdbc::SQLException);
11126 long getColumnType([in] long column) raises (::com::sun::star::sdbc::SQLException);
11127 string getColumnTypeName([in] long column) raises (::com::sun::star::sdbc::SQLException);
11128 boolean isReadOnly([in] long column) raises (::com::sun::star::sdbc::SQLException);
11129 boolean isWritable([in] long column) raises (::com::sun::star::sdbc::SQLException);
11130 boolean isDefinitelyWritable([in] long column) raises (::com::sun::star::sdbc::SQLException);
11131 string getColumnServiceName([in] long column) raises (::com::sun::star::sdbc::SQLException);
11133 published interface XRowSetListener {
11134 interface ::com::sun::star::lang::XEventListener;
11135 void cursorMoved([in] ::com::sun::star::lang::EventObject event);
11136 /** @deprecated */ void rowChanged([in] ::com::sun::star::lang::EventObject event);
11137 void rowSetChanged([in] ::com::sun::star::lang::EventObject event);
11139 published interface XSQLInput;
11140 published interface XSQLOutput;
11141 published interface XSQLData {
11142 interface ::com::sun::star::uno::XInterface;
11143 string getSQLTypeName() raises (::com::sun::star::sdbc::SQLException);
11144 void readSQL([in] ::com::sun::star::sdbc::XSQLInput stream, [in] string typeName) raises (::com::sun::star::sdbc::SQLException);
11145 void writeSQL([in] ::com::sun::star::sdbc::XSQLOutput stream) raises (::com::sun::star::sdbc::SQLException);
11147 published interface XSQLInput {
11148 interface ::com::sun::star::uno::XInterface;
11149 string readString() raises (::com::sun::star::sdbc::SQLException);
11150 boolean readBoolean() raises (::com::sun::star::sdbc::SQLException);
11151 byte readByte() raises (::com::sun::star::sdbc::SQLException);
11152 short readShort() raises (::com::sun::star::sdbc::SQLException);
11153 long readInt() raises (::com::sun::star::sdbc::SQLException);
11154 hyper readLong() raises (::com::sun::star::sdbc::SQLException);
11155 float readFloat() raises (::com::sun::star::sdbc::SQLException);
11156 double readDouble() raises (::com::sun::star::sdbc::SQLException);
11157 sequence< byte > readBytes() raises (::com::sun::star::sdbc::SQLException);
11158 ::com::sun::star::util::Date readDate() raises (::com::sun::star::sdbc::SQLException);
11159 ::com::sun::star::util::Time readTime() raises (::com::sun::star::sdbc::SQLException);
11160 ::com::sun::star::util::DateTime readTimestamp() raises (::com::sun::star::sdbc::SQLException);
11161 ::com::sun::star::io::XInputStream readBinaryStream() raises (::com::sun::star::sdbc::SQLException);
11162 ::com::sun::star::io::XInputStream readCharacterStream() raises (::com::sun::star::sdbc::SQLException);
11163 any readObject() raises (::com::sun::star::sdbc::SQLException);
11164 ::com::sun::star::sdbc::XRef readRef() raises (::com::sun::star::sdbc::SQLException);
11165 ::com::sun::star::sdbc::XBlob readBlob() raises (::com::sun::star::sdbc::SQLException);
11166 ::com::sun::star::sdbc::XClob readClob() raises (::com::sun::star::sdbc::SQLException);
11167 ::com::sun::star::sdbc::XArray readArray() raises (::com::sun::star::sdbc::SQLException);
11168 boolean wasNull() raises (::com::sun::star::sdbc::SQLException);
11170 published interface XStruct;
11171 published interface XSQLOutput {
11172 interface ::com::sun::star::uno::XInterface;
11173 void writeString([in] string x) raises (::com::sun::star::sdbc::SQLException);
11174 void writeBoolean([in] boolean x) raises (::com::sun::star::sdbc::SQLException);
11175 void writeByte([in] byte x) raises (::com::sun::star::sdbc::SQLException);
11176 void writeShort([in] short x) raises (::com::sun::star::sdbc::SQLException);
11177 void writeInt([in] long x) raises (::com::sun::star::sdbc::SQLException);
11178 void writeLong([in] hyper x) raises (::com::sun::star::sdbc::SQLException);
11179 void writeFloat([in] float x) raises (::com::sun::star::sdbc::SQLException);
11180 void writeDouble([in] double x) raises (::com::sun::star::sdbc::SQLException);
11181 void writeBytes([in] sequence< byte > x) raises (::com::sun::star::sdbc::SQLException);
11182 void writeDate([in] ::com::sun::star::util::Date x) raises (::com::sun::star::sdbc::SQLException);
11183 void writeTime([in] ::com::sun::star::util::Time x) raises (::com::sun::star::sdbc::SQLException);
11184 void writeTimestamp([in] ::com::sun::star::util::DateTime x) raises (::com::sun::star::sdbc::SQLException);
11185 void writeBinaryStream([in] ::com::sun::star::io::XInputStream x) raises (::com::sun::star::sdbc::SQLException);
11186 void writeCharacterStream([in] ::com::sun::star::io::XInputStream x) raises (::com::sun::star::sdbc::SQLException);
11187 void writeObject([in] ::com::sun::star::sdbc::XSQLData x) raises (::com::sun::star::sdbc::SQLException);
11188 void writeRef([in] ::com::sun::star::sdbc::XRef x) raises (::com::sun::star::sdbc::SQLException);
11189 void writeBlob([in] ::com::sun::star::sdbc::XBlob x) raises (::com::sun::star::sdbc::SQLException);
11190 void writeClob([in] ::com::sun::star::sdbc::XClob x) raises (::com::sun::star::sdbc::SQLException);
11191 void writeStruct([in] ::com::sun::star::sdbc::XStruct x) raises (::com::sun::star::sdbc::SQLException);
11192 void writeArray([in] ::com::sun::star::sdbc::XArray x) raises (::com::sun::star::sdbc::SQLException);
11194 published interface XStruct {
11195 interface ::com::sun::star::uno::XInterface;
11196 string getSQLTypeName() raises (::com::sun::star::sdbc::SQLException);
11197 sequence< any > getAttributes([in] ::com::sun::star::container::XNameAccess typeMap) raises (::com::sun::star::sdbc::SQLException);
11200 module sdbcx {
11201 published constants CheckOption {
11202 const long CASCADE = 2;
11203 const long LOCAL = 3;
11204 const long NONE = 0;
11206 published service ColumnDescriptor {
11207 service ::com::sun::star::sdbcx::Descriptor;
11208 [property] long Type;
11209 [property] string TypeName;
11210 [property] long Precision;
11211 [property] long Scale;
11212 [property] long IsNullable;
11213 [property] boolean IsAutoIncrement;
11214 [property, optional] boolean IsRowVersion;
11215 [property, optional] string Description;
11216 [property, optional] string DefaultValue;
11217 [property, optional] string AutoIncrementCreation;
11219 published constants CompareBookmark {
11220 const long EQUAL = 0;
11221 const long GREATER = 1;
11222 const long LESS = -1;
11223 const long NOT_COMPARABLE = 3;
11224 const long NOT_EQUAL = 2;
11226 published interface XAppend {
11227 interface ::com::sun::star::uno::XInterface;
11228 void appendByDescriptor([in] ::com::sun::star::beans::XPropertySet descriptor) raises (::com::sun::star::sdbc::SQLException, ::com::sun::star::container::ElementExistException);
11230 published interface XDrop {
11231 interface ::com::sun::star::uno::XInterface;
11232 void dropByName([in] string elementName) raises (::com::sun::star::sdbc::SQLException, ::com::sun::star::container::NoSuchElementException);
11233 void dropByIndex([in] long index) raises (::com::sun::star::sdbc::SQLException, ::com::sun::star::lang::IndexOutOfBoundsException);
11235 published service Container {
11236 interface ::com::sun::star::container::XNameAccess;
11237 interface ::com::sun::star::container::XIndexAccess;
11238 interface ::com::sun::star::container::XEnumerationAccess;
11239 [optional] interface ::com::sun::star::util::XRefreshable;
11240 [optional] interface ::com::sun::star::sdbcx::XDataDescriptorFactory;
11241 [optional] interface ::com::sun::star::sdbcx::XAppend;
11242 [optional] interface ::com::sun::star::sdbcx::XDrop;
11244 published interface XCreateCatalog {
11245 interface ::com::sun::star::uno::XInterface;
11246 void createCatalog([in] sequence< ::com::sun::star::beans::PropertyValue > info) raises (::com::sun::star::sdbc::SQLException, ::com::sun::star::container::ElementExistException);
11248 published interface XDataDefinitionSupplier {
11249 interface ::com::sun::star::uno::XInterface;
11250 ::com::sun::star::sdbcx::XTablesSupplier getDataDefinitionByConnection([in] ::com::sun::star::sdbc::XConnection connection) raises (::com::sun::star::sdbc::SQLException);
11251 ::com::sun::star::sdbcx::XTablesSupplier getDataDefinitionByURL([in] string url, [in] sequence< ::com::sun::star::beans::PropertyValue > info) raises (::com::sun::star::sdbc::SQLException);
11253 published interface XDropCatalog {
11254 interface ::com::sun::star::uno::XInterface;
11255 void dropCatalog([in] string catalogName, [in] sequence< ::com::sun::star::beans::PropertyValue > info) raises (::com::sun::star::sdbc::SQLException, ::com::sun::star::container::NoSuchElementException);
11257 published service Driver {
11258 service ::com::sun::star::sdbc::Driver;
11259 interface ::com::sun::star::sdbcx::XDataDefinitionSupplier;
11260 [optional] interface ::com::sun::star::sdbcx::XCreateCatalog;
11261 [optional] interface ::com::sun::star::sdbcx::XDropCatalog;
11263 published interface XAuthorizable {
11264 interface ::com::sun::star::uno::XInterface;
11265 long getPrivileges([in] string objName, [in] long objType) raises (::com::sun::star::sdbc::SQLException);
11266 long getGrantablePrivileges([in] string objName, [in] long objType) raises (::com::sun::star::sdbc::SQLException);
11267 void grantPrivileges([in] string objName, [in] long objType, [in] long objPrivileges) raises (::com::sun::star::sdbc::SQLException);
11268 void revokePrivileges([in] string objName, [in] long objType, [in] long objPrivileges) raises (::com::sun::star::sdbc::SQLException);
11270 published service Group {
11271 interface ::com::sun::star::sdbcx::XUsersSupplier;
11272 interface ::com::sun::star::sdbcx::XAuthorizable;
11273 interface ::com::sun::star::beans::XPropertySet;
11274 [property, readonly] string Name;
11276 published service GroupDescriptor {
11277 service ::com::sun::star::sdbcx::Descriptor;
11278 [property] string Name;
11280 published service Index {
11281 interface ::com::sun::star::sdbcx::XColumnsSupplier;
11282 interface ::com::sun::star::beans::XPropertySet;
11283 [optional] interface ::com::sun::star::sdbcx::XDataDescriptorFactory;
11284 [property, readonly] string Name;
11285 [property, readonly] string Catalog;
11286 [property, readonly] boolean IsUnique;
11287 [property, readonly] boolean IsPrimaryKeyIndex;
11288 [property, readonly] boolean IsClustered;
11290 published service IndexColumn {
11291 service ::com::sun::star::sdbcx::Column;
11292 [property, readonly] boolean IsAscending;
11294 published service IndexColumnDescriptor {
11295 service ::com::sun::star::sdbcx::Descriptor;
11296 [property] boolean IsAscending;
11298 published service IndexDescriptor {
11299 service ::com::sun::star::sdbcx::Descriptor;
11300 interface ::com::sun::star::sdbcx::XColumnsSupplier;
11301 [property] string Catalog;
11302 [property] boolean IsUnique;
11303 [property] boolean IsClustered;
11305 published service Key {
11306 interface ::com::sun::star::sdbcx::XColumnsSupplier;
11307 interface ::com::sun::star::beans::XPropertySet;
11308 [optional] interface ::com::sun::star::sdbcx::XDataDescriptorFactory;
11309 [property, readonly] string Name;
11310 [property, readonly] long Type;
11311 [property, readonly] string ReferencedTable;
11312 [property, readonly] long UpdateRule;
11313 [property, readonly] long DeleteRule;
11315 published service KeyColumn {
11316 service ::com::sun::star::sdbcx::Column;
11317 [property, readonly] string RelatedColumn;
11319 published service KeyColumnDescriptor {
11320 service ::com::sun::star::sdbcx::Descriptor;
11321 [property] string RelatedColumn;
11323 published service KeyDescriptor {
11324 service ::com::sun::star::sdbcx::Descriptor;
11325 interface ::com::sun::star::sdbcx::XColumnsSupplier;
11326 [property] long Type;
11327 [property] string ReferencedTable;
11328 [property] long UpdateRule;
11329 [property] long DeleteRule;
11331 published constants KeyType {
11332 const long FOREIGN = 3;
11333 const long PRIMARY = 1;
11334 const long UNIQUE = 2;
11336 published service PreparedStatement {
11337 service ::com::sun::star::sdbc::PreparedStatement;
11338 [property] boolean UseBookmarks;
11340 published constants Privilege {
11341 const long ALTER = 64;
11342 const long CREATE = 32;
11343 const long DELETE = 8;
11344 const long DROP = 256;
11345 const long INSERT = 2;
11346 const long READ = 16;
11347 const long REFERENCE = 128;
11348 const long SELECT = 1;
11349 const long UPDATE = 4;
11351 published constants PrivilegeObject {
11352 const long COLUMN = 2;
11353 const long TABLE = 0;
11354 const long VIEW = 1;
11356 published service ReferenceColumn {
11357 service ::com::sun::star::sdbcx::Column;
11358 [property, readonly] string ReferencedColumn;
11360 published service Statement {
11361 service ::com::sun::star::sdbc::Statement;
11362 [property] boolean UseBookmarks;
11364 published interface XUser {
11365 interface ::com::sun::star::sdbcx::XAuthorizable;
11366 void changePassword([in] string oldPassword, [in] string newPassword) raises (::com::sun::star::sdbc::SQLException);
11368 published service User {
11369 interface ::com::sun::star::sdbcx::XUser;
11370 interface ::com::sun::star::beans::XPropertySet;
11371 [optional] interface ::com::sun::star::sdbcx::XGroupsSupplier;
11372 [property, readonly] string Name;
11374 published service UserDescriptor {
11375 service ::com::sun::star::sdbcx::Descriptor;
11376 [property] string Password;
11378 interface XAlterView {
11379 interface ::com::sun::star::uno::XInterface;
11380 void alterCommand([in] string NewCommand) raises (::com::sun::star::sdbc::SQLException);
11382 published service View {
11383 interface ::com::sun::star::beans::XPropertySet;
11384 [optional] interface ::com::sun::star::sdbcx::XRename;
11385 [optional] interface ::com::sun::star::sdbcx::XAlterView;
11386 [property, readonly] string Name;
11387 [property, readonly] string CatalogName;
11388 [property, readonly] string SchemaName;
11389 [property, readonly] string Command;
11390 [property, readonly] long CheckOption;
11392 published service ViewDescriptor {
11393 service ::com::sun::star::sdbcx::Descriptor;
11394 [property] string CatalogName;
11395 [property] string SchemaName;
11396 [property] string Command;
11397 [property] long CheckOption;
11400 module sheet {
11401 published interface XSpreadsheet;
11402 published struct ActivationEvent: ::com::sun::star::lang::EventObject {
11403 ::com::sun::star::sheet::XSpreadsheet ActiveSheet;
11405 published interface XAddIn {
11406 interface ::com::sun::star::lang::XLocalizable;
11407 string getProgrammaticFuntionName([in] string aDisplayName);
11408 string getDisplayFunctionName([in] string aProgrammaticName);
11409 string getFunctionDescription([in] string aProgrammaticName);
11410 string getDisplayArgumentName([in] string aProgrammaticFunctionName, [in] long nArgument);
11411 string getArgumentDescription([in] string aProgrammaticFunctionName, [in] long nArgument);
11412 string getProgrammaticCategoryName([in] string aProgrammaticFunctionName);
11413 string getDisplayCategoryName([in] string aProgrammaticFunctionName);
11415 published struct LocalizedName {
11416 ::com::sun::star::lang::Locale Locale;
11417 string Name;
11419 published interface XCompatibilityNames {
11420 interface ::com::sun::star::uno::XInterface;
11421 sequence< ::com::sun::star::sheet::LocalizedName > getCompatibilityNames([in] string aProgrammaticName);
11423 published service AddIn {
11424 interface ::com::sun::star::lang::XServiceName;
11425 interface ::com::sun::star::sheet::XAddIn;
11426 [optional] interface ::com::sun::star::sheet::XCompatibilityNames;
11428 published enum Border {
11429 TOP = 0,
11430 BOTTOM = 1,
11431 RIGHT = 2,
11432 LEFT = 3
11434 published interface XSheetAnnotation {
11435 interface ::com::sun::star::uno::XInterface;
11436 ::com::sun::star::table::CellAddress getPosition();
11437 string getAuthor();
11438 string getDate();
11439 boolean getIsVisible();
11440 void setIsVisible([in] boolean bIsVisible);
11442 published interface XSheetAnnotationShapeSupplier {
11443 interface ::com::sun::star::uno::XInterface;
11444 ::com::sun::star::drawing::XShape getAnnotationShape();
11446 published service CellAnnotation {
11447 interface ::com::sun::star::sheet::XSheetAnnotation;
11448 interface ::com::sun::star::container::XChild;
11449 interface ::com::sun::star::text::XSimpleText;
11450 [optional] interface ::com::sun::star::sheet::XSheetAnnotationShapeSupplier;
11452 published service CellAnnotationShape {
11453 service ::com::sun::star::drawing::CaptionShape;
11455 published interface XSheetAnnotations {
11456 interface ::com::sun::star::container::XIndexAccess;
11457 void insertNew([in] ::com::sun::star::table::CellAddress aPosition, [in] string aText);
11458 void removeByIndex([in] long nIndex);
11460 published service CellAnnotations {
11461 interface ::com::sun::star::sheet::XSheetAnnotations;
11462 interface ::com::sun::star::container::XEnumerationAccess;
11464 published service CellAnnotationsEnumeration {
11465 interface ::com::sun::star::container::XEnumeration;
11468 module table {
11469 published struct CellRangeAddress {
11470 short Sheet;
11471 long StartColumn;
11472 long StartRow;
11473 long EndColumn;
11474 long EndRow;
11477 module sheet {
11478 published interface XAreaLink {
11479 interface ::com::sun::star::uno::XInterface;
11480 string getSourceArea();
11481 void setSourceArea([in] string aSourceArea);
11482 ::com::sun::star::table::CellRangeAddress getDestArea();
11483 void setDestArea([in] ::com::sun::star::table::CellRangeAddress aDestArea);
11485 published service CellAreaLink {
11486 interface ::com::sun::star::sheet::XAreaLink;
11487 interface ::com::sun::star::util::XRefreshable;
11488 interface ::com::sun::star::beans::XPropertySet;
11489 [property] string Url;
11490 [property] string Filter;
11491 [property] string FilterOptions;
11492 /** @deprecated */ [property] long RefreshDelay;
11493 [property, optional] long RefreshPeriod;
11495 published interface XAreaLinks {
11496 interface ::com::sun::star::container::XIndexAccess;
11497 void insertAtPosition([in] ::com::sun::star::table::CellAddress aDestPos, [in] string aFileName, [in] string aSourceArea, [in] string aFilter, [in] string aFilterOptions);
11498 void removeByIndex([in] long nIndex);
11500 published service CellAreaLinks {
11501 interface ::com::sun::star::sheet::XAreaLinks;
11502 interface ::com::sun::star::container::XIndexAccess;
11503 interface ::com::sun::star::container::XEnumerationAccess;
11505 published service CellAreaLinksEnumeration {
11506 interface ::com::sun::star::container::XEnumeration;
11508 published enum CellDeleteMode {
11509 NONE = 0,
11510 UP = 1,
11511 LEFT = 2,
11512 ROWS = 3,
11513 COLUMNS = 4
11515 published constants CellFlags {
11516 const long ANNOTATION = 8;
11517 const long DATETIME = 2;
11518 const long EDITATTR = 256;
11519 const long FORMATTED = 512;
11520 const long FORMULA = 16;
11521 const long HARDATTR = 32;
11522 const long OBJECTS = 128;
11523 const long STRING = 4;
11524 const long STYLES = 64;
11525 const long VALUE = 1;
11527 published service CellFormatRanges {
11528 interface ::com::sun::star::container::XIndexAccess;
11529 interface ::com::sun::star::container::XEnumerationAccess;
11531 published service CellFormatRangesEnumeration {
11532 interface ::com::sun::star::container::XEnumeration;
11534 published enum CellInsertMode {
11535 NONE = 0,
11536 DOWN = 1,
11537 RIGHT = 2,
11538 ROWS = 3,
11539 COLUMNS = 4
11541 published service Cells {
11542 interface ::com::sun::star::container::XEnumerationAccess;
11544 published service CellsEnumeration {
11545 interface ::com::sun::star::container::XEnumeration;
11547 published enum ConditionOperator {
11548 NONE = 0,
11549 EQUAL = 1,
11550 NOT_EQUAL = 2,
11551 GREATER = 3,
11552 GREATER_EQUAL = 4,
11553 LESS = 5,
11554 LESS_EQUAL = 6,
11555 BETWEEN = 7,
11556 NOT_BETWEEN = 8,
11557 FORMULA = 9
11559 published enum GeneralFunction {
11560 NONE = 0,
11561 AUTO = 1,
11562 SUM = 2,
11563 COUNT = 3,
11564 AVERAGE = 4,
11565 MAX = 5,
11566 MIN = 6,
11567 PRODUCT = 7,
11568 COUNTNUMS = 8,
11569 STDEV = 9,
11570 STDEVP = 10,
11571 VAR = 11,
11572 VARP = 12
11574 /** @deprecated */ published interface XConsolidationDescriptor {
11575 interface ::com::sun::star::uno::XInterface;
11576 ::com::sun::star::sheet::GeneralFunction getFunction();
11577 void setFunction([in] ::com::sun::star::sheet::GeneralFunction nFunction);
11578 sequence< ::com::sun::star::table::CellRangeAddress > getSources();
11579 void setSources([in] sequence< ::com::sun::star::table::CellRangeAddress > aSources);
11580 ::com::sun::star::table::CellAddress getStartOutputPosition();
11581 void setStartOutputPosition([in] ::com::sun::star::table::CellAddress aStartOutputPosition);
11582 boolean getUseColumnHeaders();
11583 void setUseColumnHeaders([in] boolean bUseColumnHeaders);
11584 boolean getUseRowHeaders();
11585 void setUseRowHeaders([in] boolean bUseRowHeaders);
11586 boolean getInsertLinks();
11587 void setInsertLinks([in] boolean bInsertLinks);
11589 published service ConsolidationDescriptor {
11590 interface ::com::sun::star::sheet::XConsolidationDescriptor;
11592 /** @deprecated */ published interface XDDELink {
11593 interface ::com::sun::star::uno::XInterface;
11594 string getApplication();
11595 string getTopic();
11596 string getItem();
11598 published interface XDDELinkResults {
11599 interface ::com::sun::star::uno::XInterface;
11600 sequence< sequence< any > > getResults();
11601 void setResults([in] sequence< sequence< any > > aResults);
11603 published service DDELink {
11604 interface ::com::sun::star::container::XNamed;
11605 interface ::com::sun::star::sheet::XDDELink;
11606 interface ::com::sun::star::util::XRefreshable;
11607 [optional] interface ::com::sun::star::sheet::XDDELinkResults;
11609 published enum DDELinkMode {
11610 DEFAULT = 0,
11611 ENGLISH = 1,
11612 TEXT = 2
11614 published interface XDDELinks {
11615 interface ::com::sun::star::container::XNameAccess;
11616 ::com::sun::star::sheet::XDDELink addDDELink([in] string aApplication, [in] string aTopic, [in] string aItem, [in] ::com::sun::star::sheet::DDELinkMode nMode);
11618 published service DDELinks {
11619 interface ::com::sun::star::container::XNameAccess;
11620 interface ::com::sun::star::container::XIndexAccess;
11621 interface ::com::sun::star::container::XEnumerationAccess;
11622 [optional] interface ::com::sun::star::sheet::XDDELinks;
11624 published service DDELinksEnumeration {
11625 interface ::com::sun::star::container::XEnumeration;
11627 published enum DataImportMode {
11628 NONE = 0,
11629 SQL = 1,
11630 TABLE = 2,
11631 QUERY = 3
11633 published interface XDataPilotField;
11634 published interface XDataPilotDataLayoutFieldSupplier {
11635 interface ::com::sun::star::uno::XInterface;
11636 ::com::sun::star::sheet::XDataPilotField getDataLayoutField();
11638 published interface XSheetFilterDescriptor;
11639 published interface XDataPilotDescriptor {
11640 interface ::com::sun::star::container::XNamed;
11641 string getTag();
11642 void setTag([in] string aTag);
11643 ::com::sun::star::table::CellRangeAddress getSourceRange();
11644 void setSourceRange([in] ::com::sun::star::table::CellRangeAddress aSourceRange);
11645 ::com::sun::star::sheet::XSheetFilterDescriptor getFilterDescriptor();
11646 ::com::sun::star::container::XIndexAccess getDataPilotFields();
11647 ::com::sun::star::container::XIndexAccess getColumnFields();
11648 ::com::sun::star::container::XIndexAccess getRowFields();
11649 ::com::sun::star::container::XIndexAccess getPageFields();
11650 ::com::sun::star::container::XIndexAccess getDataFields();
11651 ::com::sun::star::container::XIndexAccess getHiddenFields();
11653 published service DataPilotDescriptor {
11654 interface ::com::sun::star::sheet::XDataPilotDescriptor;
11655 [optional] interface ::com::sun::star::beans::XPropertySet;
11656 [optional] interface ::com::sun::star::sheet::XDataPilotDataLayoutFieldSupplier;
11657 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > ImportDescriptor;
11658 [property, optional] string SourceServiceName;
11659 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > ServiceArguments;
11660 [property, optional] boolean IgnoreEmptyRows;
11661 [property, optional] boolean RepeatIfEmpty;
11662 [property, optional] boolean ColumnGrand;
11663 [property, optional] boolean RowGrand;
11664 [property, optional] boolean ShowFilterButton;
11665 [property, optional] boolean DrillDownOnDoubleClick;
11666 [property, optional] string GrandTotalName;
11668 published struct DataPilotFieldAutoShowInfo {
11669 boolean IsEnabled;
11670 long ShowItemsMode;
11671 long ItemCount;
11672 string DataField;
11674 published interface XDataPilotField;
11675 published struct DataPilotFieldGroupInfo {
11676 boolean HasAutoStart;
11677 boolean HasAutoEnd;
11678 boolean HasDateValues;
11679 double Start;
11680 double End;
11681 double Step;
11682 long GroupBy;
11683 ::com::sun::star::sheet::XDataPilotField SourceField;
11684 ::com::sun::star::container::XNameAccess Groups;
11686 published struct DataPilotFieldLayoutInfo {
11687 long LayoutMode;
11688 boolean AddEmptyLines;
11690 published enum DataPilotFieldOrientation {
11691 HIDDEN = 0,
11692 COLUMN = 1,
11693 ROW = 2,
11694 PAGE = 3,
11695 DATA = 4
11697 published struct DataPilotFieldReference {
11698 long ReferenceType;
11699 string ReferenceField;
11700 long ReferenceItemType;
11701 string ReferenceItemName;
11703 published struct DataPilotFieldSortInfo {
11704 string Field;
11705 boolean IsAscending;
11706 long Mode;
11708 published interface XDataPilotField {
11709 interface ::com::sun::star::uno::XInterface;
11710 ::com::sun::star::container::XIndexAccess getItems();
11712 published interface XDataPilotFieldGrouping {
11713 interface ::com::sun::star::uno::XInterface;
11714 ::com::sun::star::sheet::XDataPilotField createNameGroup([in] sequence< string > aItems) raises (::com::sun::star::lang::IllegalArgumentException);
11715 ::com::sun::star::sheet::XDataPilotField createDateGroup([in] ::com::sun::star::sheet::DataPilotFieldGroupInfo aInfo) raises (::com::sun::star::lang::IllegalArgumentException);
11717 published service DataPilotField {
11718 interface ::com::sun::star::container::XNamed;
11719 interface ::com::sun::star::beans::XPropertySet;
11720 [optional] interface ::com::sun::star::sheet::XDataPilotField;
11721 [optional] interface ::com::sun::star::sheet::XDataPilotFieldGrouping;
11722 [property] ::com::sun::star::sheet::DataPilotFieldOrientation Orientation;
11723 [property] ::com::sun::star::sheet::GeneralFunction Function;
11724 [property, optional] sequence< ::com::sun::star::sheet::GeneralFunction > Subtotals;
11725 [property, optional] string SelectedPage;
11726 [property, optional] boolean UseSelectedPage;
11727 [property, optional] string UsedHierarchy;
11728 [property, optional] boolean HasSortInfo;
11729 [property, optional] ::com::sun::star::sheet::DataPilotFieldSortInfo SortInfo;
11730 [property, optional] boolean HasLayoutInfo;
11731 [property, optional] ::com::sun::star::sheet::DataPilotFieldLayoutInfo LayoutInfo;
11732 [property, optional] boolean HasAutoShowInfo;
11733 [property, optional] ::com::sun::star::sheet::DataPilotFieldAutoShowInfo AutoShowInfo;
11734 [property, optional] boolean HasReference;
11735 [property, optional] ::com::sun::star::sheet::DataPilotFieldReference Reference;
11736 [property, optional] boolean IsGroupField;
11737 [property, optional] ::com::sun::star::sheet::DataPilotFieldGroupInfo GroupInfo;
11738 [property, optional] boolean ShowEmpty;
11740 published service DataPilotFieldGroup {
11741 interface ::com::sun::star::container::XNamed;
11742 interface ::com::sun::star::container::XIndexAccess;
11743 interface ::com::sun::star::container::XEnumerationAccess;
11744 interface ::com::sun::star::container::XNameAccess;
11745 [optional] interface ::com::sun::star::container::XNameContainer;
11747 published constants DataPilotFieldGroupBy {
11748 const long DAYS = 8;
11749 const long HOURS = 4;
11750 const long MINUTES = 2;
11751 const long MONTHS = 16;
11752 const long QUARTERS = 32;
11753 const long SECONDS = 1;
11754 const long YEARS = 64;
11756 published service DataPilotFieldGroupItem {
11757 interface ::com::sun::star::container::XNamed;
11759 published service DataPilotFieldGroups {
11760 interface ::com::sun::star::container::XIndexAccess;
11761 interface ::com::sun::star::container::XEnumerationAccess;
11762 interface ::com::sun::star::container::XNameAccess;
11763 [optional] interface ::com::sun::star::container::XNameContainer;
11765 published service DataPilotFields {
11766 interface ::com::sun::star::container::XIndexAccess;
11767 interface ::com::sun::star::container::XEnumerationAccess;
11768 interface ::com::sun::star::container::XNameAccess;
11770 published service DataPilotFieldsEnumeration {
11771 interface ::com::sun::star::container::XEnumeration;
11773 published enum FilterConnection {
11774 AND = 0,
11775 OR = 1
11777 published enum FilterOperator {
11778 EMPTY = 0,
11779 NOT_EMPTY = 1,
11780 EQUAL = 2,
11781 NOT_EQUAL = 3,
11782 GREATER = 4,
11783 GREATER_EQUAL = 5,
11784 LESS = 6,
11785 LESS_EQUAL = 7,
11786 TOP_VALUES = 8,
11787 TOP_PERCENT = 9,
11788 BOTTOM_VALUES = 10,
11789 BOTTOM_PERCENT = 11
11791 published struct TableFilterField {
11792 ::com::sun::star::sheet::FilterConnection Connection;
11793 long Field;
11794 ::com::sun::star::sheet::FilterOperator Operator;
11795 boolean IsNumeric;
11796 double NumericValue;
11797 string StringValue;
11799 published interface XDataPilotTable {
11800 interface ::com::sun::star::uno::XInterface;
11801 ::com::sun::star::table::CellRangeAddress getOutputRange();
11802 void refresh();
11804 published service DataPilotTable {
11805 interface ::com::sun::star::sheet::XDataPilotDescriptor;
11806 interface ::com::sun::star::sheet::XDataPilotTable;
11807 [optional] interface ::com::sun::star::util::XModifyBroadcaster;
11809 published interface XDataPilotTables {
11810 interface ::com::sun::star::container::XNameAccess;
11811 ::com::sun::star::sheet::XDataPilotDescriptor createDataPilotDescriptor();
11812 void insertNewByName([in] string aName, [in] ::com::sun::star::table::CellAddress OutputAddress, [in] ::com::sun::star::sheet::XDataPilotDescriptor xDescriptor);
11813 void removeByName([in] string aName);
11815 published service DataPilotTables {
11816 interface ::com::sun::star::sheet::XDataPilotTables;
11817 interface ::com::sun::star::container::XEnumerationAccess;
11818 interface ::com::sun::star::container::XIndexAccess;
11820 published service DataPilotTablesEnumeration {
11821 interface ::com::sun::star::container::XEnumeration;
11823 published service DatabaseImportDescriptor {
11824 [property] ::com::sun::star::sheet::DataImportMode SourceType;
11825 [property] string DatabaseName;
11826 [property] string SourceObject;
11827 [property, optional] boolean IsNative;
11828 [property, optional] string ConnectionResource;
11831 module table {
11832 published interface XCellRange;
11834 module sheet {
11835 published interface XCellRangeReferrer {
11836 interface ::com::sun::star::uno::XInterface;
11837 ::com::sun::star::table::XCellRange getReferredCells();
11839 published interface XSheetFilterDescriptor;
11840 published interface XSubTotalDescriptor;
11841 published interface XDatabaseRange {
11842 interface ::com::sun::star::uno::XInterface;
11843 ::com::sun::star::table::CellRangeAddress getDataArea();
11844 void setDataArea([in] ::com::sun::star::table::CellRangeAddress aDataArea);
11845 sequence< ::com::sun::star::beans::PropertyValue > getSortDescriptor();
11846 ::com::sun::star::sheet::XSheetFilterDescriptor getFilterDescriptor();
11847 ::com::sun::star::sheet::XSubTotalDescriptor getSubTotalDescriptor();
11848 sequence< ::com::sun::star::beans::PropertyValue > getImportDescriptor();
11849 void refresh();
11851 published service DatabaseRange {
11852 interface ::com::sun::star::sheet::XDatabaseRange;
11853 interface ::com::sun::star::sheet::XCellRangeReferrer;
11854 interface ::com::sun::star::beans::XPropertySet;
11855 interface ::com::sun::star::container::XNamed;
11856 [optional] interface ::com::sun::star::util::XRefreshable;
11857 [property] boolean MoveCells;
11858 [property] boolean KeepFormats;
11859 [property] boolean StripData;
11860 [property, optional] boolean AutoFilter;
11861 [property, optional] boolean UseFilterCriteriaSource;
11862 [property, optional] ::com::sun::star::table::CellRangeAddress FilterCriteriaSource;
11863 [property, optional] long RefreshPeriod;
11864 [property, optional] boolean FromSelection;
11865 [property, optional, readonly] long TokenIndex;
11867 published interface XDatabaseRanges {
11868 interface ::com::sun::star::container::XNameAccess;
11869 void addNewByName([in] string aName, [in] ::com::sun::star::table::CellRangeAddress aRange);
11870 void removeByName([in] string aName);
11872 published service DatabaseRanges {
11873 interface ::com::sun::star::sheet::XDatabaseRanges;
11874 interface ::com::sun::star::container::XEnumerationAccess;
11875 interface ::com::sun::star::container::XIndexAccess;
11877 published service DatabaseRangesEnumeration {
11878 interface ::com::sun::star::container::XEnumeration;
11880 published constants DimensionFlags {
11881 const long NO_COLUMN_ORIENTATION = 1;
11882 const long NO_DATA_ORIENTATION = 8;
11883 const long NO_PAGE_ORIENTATION = 4;
11884 const long NO_ROW_ORIENTATION = 2;
11886 published service DocumentSettings {
11887 service ::com::sun::star::document::Settings;
11888 interface ::com::sun::star::beans::XPropertySet;
11889 [property, optional] boolean ShowZeroValues;
11890 [property, optional] boolean ShowNotes;
11891 [property, optional] boolean ShowGrid;
11892 [property, optional] ::com::sun::star::util::Color GridColor;
11893 [property, optional] boolean ShowPageBreaks;
11894 [property, optional] boolean HasColumnRowHeaders;
11895 [property, optional] boolean HasSheetTabs;
11896 [property, optional] boolean IsOutlineSymbolsSet;
11897 [property, optional] boolean IsSnapToRaster;
11898 [property, optional] boolean RasterIsVisible;
11899 [property, optional] long RasterResolutionX;
11900 [property, optional] long RasterResolutionY;
11901 [property, optional] long RasterSubdivisionX;
11902 [property, optional] long RasterSubdivisionY;
11903 [property, optional] boolean IsRasterAxisSynchronized;
11905 published enum FillDateMode {
11906 FILL_DATE_DAY = 0,
11907 FILL_DATE_WEEKDAY = 1,
11908 FILL_DATE_MONTH = 2,
11909 FILL_DATE_YEAR = 3
11911 published enum FillDirection {
11912 TO_BOTTOM = 0,
11913 TO_RIGHT = 1,
11914 TO_TOP = 2,
11915 TO_LEFT = 3
11917 published enum FillMode {
11918 SIMPLE = 0,
11919 LINEAR = 1,
11920 GROWTH = 2,
11921 DATE = 3,
11922 AUTO = 4
11924 published constants FilterOperator2 {
11925 const long BEGINS_WITH = 14;
11926 const long BOTTOM_PERCENT = 11;
11927 const long BOTTOM_VALUES = 10;
11928 const long CONTAINS = 12;
11929 const long DOES_NOT_BEGIN_WITH = 15;
11930 const long DOES_NOT_CONTAIN = 13;
11931 const long DOES_NOT_END_WITH = 17;
11932 const long EMPTY = 0;
11933 const long ENDS_WITH = 16;
11934 const long EQUAL = 2;
11935 const long GREATER = 4;
11936 const long GREATER_EQUAL = 5;
11937 const long LESS = 6;
11938 const long LESS_EQUAL = 7;
11939 const long NOT_EMPTY = 1;
11940 const long NOT_EQUAL = 3;
11941 const long TOP_PERCENT = 9;
11942 const long TOP_VALUES = 8;
11944 published constants FormulaResult {
11945 const long ERROR = 4;
11946 const long STRING = 2;
11947 const long VALUE = 1;
11949 /** @deprecated */ published service SpreadsheetDocumentSettings {
11950 interface ::com::sun::star::beans::XPropertySet;
11951 [property] boolean IsIterationEnabled;
11952 [property] long IterationCount;
11953 [property] double IterationEpsilon;
11954 [property] short StandardDecimals;
11955 [property] ::com::sun::star::util::Date NullDate;
11956 [property] short DefaultTabStop;
11957 [property] boolean IgnoreCase;
11958 [property] boolean CalcAsShown;
11959 [property] boolean MatchWholeCell;
11960 [property] boolean SpellOnline;
11961 [property] boolean LookUpLabels;
11962 [property] boolean RegularExpressions;
11963 [property, optional, readonly] ::com::sun::star::i18n::XForbiddenCharacters ForbiddenCharacters;
11964 [property, optional, readonly] boolean HasDrawPages;
11965 [property, optional] ::com::sun::star::lang::Locale CharLocale;
11966 [property, optional] ::com::sun::star::lang::Locale CharLocaleAsian;
11967 [property, optional] ::com::sun::star::lang::Locale CharLocaleComplex;
11968 [property, optional] boolean IsLoaded;
11969 [property, optional] boolean IsUndoEnabled;
11970 [property, optional] boolean IsAdjustHeightEnabled;
11971 [property, optional] boolean IsExecuteLinkEnabled;
11972 [property, optional, readonly] ::com::sun::star::awt::XDevice ReferenceDevice;
11974 published interface XFunctionAccess {
11975 interface ::com::sun::star::uno::XInterface;
11976 any callFunction([in] string aName, [in] sequence< any > aArguments) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::IllegalArgumentException);
11978 published service FunctionAccess {
11979 service ::com::sun::star::sheet::SpreadsheetDocumentSettings;
11980 interface ::com::sun::star::sheet::XFunctionAccess;
11981 [property, optional] boolean IsArrayFunction;
11983 published constants FunctionCategory {
11984 const long ADDIN = 11;
11985 const long DATABASE = 1;
11986 const long DATETIME = 2;
11987 const long FINANCIAL = 3;
11988 const long INFORMATION = 4;
11989 const long LOGICAL = 5;
11990 const long MATHEMATICAL = 6;
11991 const long MATRIX = 7;
11992 const long SPREADSHEET = 9;
11993 const long STATISTICAL = 8;
11994 const long TEXT = 10;
11996 published service FunctionDescription {
11997 [property, readonly] long Id;
11998 [property, readonly] long Category;
11999 [property, readonly] string Name;
12000 [property, readonly] string Description;
12001 [property, readonly] sequence< ::com::sun::star::sheet::FunctionArgument > Arguments;
12003 published service FunctionDescriptionEnumeration {
12004 interface ::com::sun::star::container::XEnumeration;
12006 published interface XFunctionDescriptions {
12007 interface ::com::sun::star::container::XIndexAccess;
12008 sequence< ::com::sun::star::beans::PropertyValue > getById([in] long nId) raises (::com::sun::star::lang::IllegalArgumentException);
12010 published service FunctionDescriptions {
12011 interface ::com::sun::star::sheet::XFunctionDescriptions;
12012 interface ::com::sun::star::container::XNameAccess;
12013 interface ::com::sun::star::container::XEnumerationAccess;
12015 published interface XGlobalSheetSettings {
12016 interface ::com::sun::star::uno::XInterface;
12017 [attribute] boolean MoveSelection;
12018 [attribute] short MoveDirection;
12019 [attribute] boolean EnterEdit;
12020 [attribute] boolean ExtendFormat;
12021 [attribute] boolean RangeFinder;
12022 [attribute] boolean ExpandReferences;
12023 [attribute] boolean MarkHeader;
12024 [attribute] boolean UseTabCol;
12025 [attribute] short Metric;
12026 [attribute] short Scale;
12027 [attribute] boolean DoAutoComplete;
12028 [attribute] short StatusBarFunction;
12029 [attribute] sequence< string > UserLists;
12030 [attribute] short LinkUpdateMode;
12031 [attribute] boolean PrintAllSheets;
12032 [attribute] boolean PrintEmptyPages;
12033 [attribute] boolean UsePrinterMetrics;
12034 [attribute] boolean ReplaceCellsWarning;
12036 published service GlobalSheetSettings: ::com::sun::star::sheet::XGlobalSheetSettings;
12037 published struct GoalResult {
12038 double Divergence;
12039 double Result;
12041 published interface XHeaderFooterContent {
12042 interface ::com::sun::star::uno::XInterface;
12043 ::com::sun::star::text::XText getLeftText();
12044 ::com::sun::star::text::XText getCenterText();
12045 ::com::sun::star::text::XText getRightText();
12047 published service HeaderFooterContent {
12048 interface ::com::sun::star::sheet::XHeaderFooterContent;
12050 published interface XLabelRange {
12051 interface ::com::sun::star::uno::XInterface;
12052 ::com::sun::star::table::CellRangeAddress getLabelArea();
12053 void setLabelArea([in] ::com::sun::star::table::CellRangeAddress aLabelArea);
12054 ::com::sun::star::table::CellRangeAddress getDataArea();
12055 void setDataArea([in] ::com::sun::star::table::CellRangeAddress aDataArea);
12057 published service LabelRange {
12058 interface ::com::sun::star::sheet::XLabelRange;
12060 published interface XLabelRanges {
12061 interface ::com::sun::star::container::XIndexAccess;
12062 void addNew([in] ::com::sun::star::table::CellRangeAddress aLabelArea, [in] ::com::sun::star::table::CellRangeAddress aDataArea);
12063 void removeByIndex([in] long nIndex);
12065 published service LabelRanges {
12066 interface ::com::sun::star::sheet::XLabelRanges;
12067 interface ::com::sun::star::container::XIndexAccess;
12068 interface ::com::sun::star::container::XEnumerationAccess;
12070 published service LabelRangesEnumeration {
12071 interface ::com::sun::star::container::XEnumeration;
12073 published constants MoveDirection {
12074 const short DOWN = 0;
12075 const short LEFT = 3;
12076 const short RIGHT = 1;
12077 const short UP = 2;
12079 published interface XNamedRange {
12080 interface ::com::sun::star::container::XNamed;
12081 string getContent();
12082 void setContent([in] string aContent);
12083 ::com::sun::star::table::CellAddress getReferencePosition();
12084 void setReferencePosition([in] ::com::sun::star::table::CellAddress aReferencePosition);
12085 long getType();
12086 void setType([in] long nType);
12088 published service NamedRange {
12089 interface ::com::sun::star::sheet::XNamedRange;
12090 interface ::com::sun::star::sheet::XCellRangeReferrer;
12091 [property, optional, readonly] long TokenIndex;
12092 [property, optional] boolean IsSharedFormula;
12094 published constants NamedRangeFlag {
12095 const long COLUMN_HEADER = 4;
12096 const long FILTER_CRITERIA = 1;
12097 const long PRINT_AREA = 2;
12098 const long ROW_HEADER = 8;
12100 published interface XNamedRanges {
12101 interface ::com::sun::star::container::XNameAccess;
12102 void addNewByName([in] string aName, [in] string aContent, [in] ::com::sun::star::table::CellAddress aPosition, [in] long nType);
12103 void addNewFromTitles([in] ::com::sun::star::table::CellRangeAddress aSource, [in] ::com::sun::star::sheet::Border aBorder);
12104 void removeByName([in] string aName);
12105 void outputList([in] ::com::sun::star::table::CellAddress aOutputPosition);
12107 published service NamedRanges {
12108 interface ::com::sun::star::sheet::XNamedRanges;
12109 interface ::com::sun::star::container::XIndexAccess;
12110 interface ::com::sun::star::container::XEnumerationAccess;
12111 [optional] interface ::com::sun::star::document::XActionLockable;
12113 published service NamedRangesEnumeration {
12114 interface ::com::sun::star::container::XEnumeration;
12116 published enum PasteOperation {
12117 NONE = 0,
12118 ADD = 1,
12119 SUBTRACT = 2,
12120 MULTIPLY = 3,
12121 DIVIDE = 4
12123 published service RangeSelectionArguments {
12124 [property] string InitialValue;
12125 [property] string Title;
12126 [property] boolean CloseOnMouseRelease;
12127 [property, optional] boolean SingleCellMode;
12129 published struct RangeSelectionEvent: ::com::sun::star::lang::EventObject {
12130 string RangeDescriptor;
12132 published interface XRecentFunctions {
12133 interface ::com::sun::star::uno::XInterface;
12134 sequence< long > getRecentFunctionIds();
12135 void setRecentFunctionIds([in] sequence< long > aRecentFunctionIds);
12136 long getMaxRecentFunctions();
12138 published service RecentFunctions: ::com::sun::star::sheet::XRecentFunctions;
12139 published struct ResultEvent: ::com::sun::star::lang::EventObject {
12140 any Value;
12142 published interface XScenario {
12143 interface ::com::sun::star::uno::XInterface;
12144 boolean getIsScenario();
12145 string getScenarioComment();
12146 void setScenarioComment([in] string aScenarioComment);
12147 void addRanges([in] sequence< ::com::sun::star::table::CellRangeAddress > aRanges);
12148 void apply();
12150 published interface XScenarios {
12151 interface ::com::sun::star::container::XNameAccess;
12152 void addNewByName([in] string aName, [in] sequence< ::com::sun::star::table::CellRangeAddress > aRanges, [in] string aComment);
12153 void removeByName([in] string aName);
12155 published service Scenarios {
12156 interface ::com::sun::star::sheet::XScenarios;
12157 interface ::com::sun::star::container::XEnumerationAccess;
12158 interface ::com::sun::star::container::XIndexAccess;
12160 published service ScenariosEnumeration {
12161 interface ::com::sun::star::container::XEnumeration;
12163 published interface XSheetCellRanges;
12164 published interface XCellRangesQuery {
12165 interface ::com::sun::star::uno::XInterface;
12166 ::com::sun::star::sheet::XSheetCellRanges queryVisibleCells();
12167 ::com::sun::star::sheet::XSheetCellRanges queryEmptyCells();
12168 ::com::sun::star::sheet::XSheetCellRanges queryContentCells([in] short nContentFlags);
12169 ::com::sun::star::sheet::XSheetCellRanges queryFormulaCells([in] long nResultFlags);
12170 ::com::sun::star::sheet::XSheetCellRanges queryColumnDifferences([in] ::com::sun::star::table::CellAddress aCompare);
12171 ::com::sun::star::sheet::XSheetCellRanges queryRowDifferences([in] ::com::sun::star::table::CellAddress aCompare);
12172 ::com::sun::star::sheet::XSheetCellRanges queryIntersection([in] ::com::sun::star::table::CellRangeAddress aRange);
12174 published interface XSheetCellRanges;
12175 published interface XFormulaQuery {
12176 interface ::com::sun::star::uno::XInterface;
12177 ::com::sun::star::sheet::XSheetCellRanges queryDependents([in] boolean bRecursive);
12178 ::com::sun::star::sheet::XSheetCellRanges queryPrecedents([in] boolean bRecursive);
12180 published service SheetRangesQuery {
12181 interface ::com::sun::star::sheet::XCellRangesQuery;
12182 interface ::com::sun::star::sheet::XFormulaQuery;
12184 published interface XCellAddressable {
12185 interface ::com::sun::star::uno::XInterface;
12186 ::com::sun::star::table::CellAddress getCellAddress();
12188 published interface XSheetAnnotationAnchor {
12189 interface ::com::sun::star::uno::XInterface;
12190 ::com::sun::star::sheet::XSheetAnnotation getAnnotation();
12193 module table {
12194 published enum CellHoriJustify {
12195 STANDARD = 0,
12196 LEFT = 1,
12197 CENTER = 2,
12198 RIGHT = 3,
12199 BLOCK = 4,
12200 REPEAT = 5
12202 published enum CellOrientation {
12203 STANDARD = 0,
12204 TOPBOTTOM = 1,
12205 BOTTOMTOP = 2,
12206 STACKED = 3
12208 published struct TableBorder {
12209 ::com::sun::star::table::BorderLine TopLine;
12210 boolean IsTopLineValid;
12211 ::com::sun::star::table::BorderLine BottomLine;
12212 boolean IsBottomLineValid;
12213 ::com::sun::star::table::BorderLine LeftLine;
12214 boolean IsLeftLineValid;
12215 ::com::sun::star::table::BorderLine RightLine;
12216 boolean IsRightLineValid;
12217 ::com::sun::star::table::BorderLine HorizontalLine;
12218 boolean IsHorizontalLineValid;
12219 ::com::sun::star::table::BorderLine VerticalLine;
12220 boolean IsVerticalLineValid;
12221 short Distance;
12222 boolean IsDistanceValid;
12224 published struct TableBorder2 {
12225 ::com::sun::star::table::BorderLine2 TopLine;
12226 boolean IsTopLineValid;
12227 ::com::sun::star::table::BorderLine2 BottomLine;
12228 boolean IsBottomLineValid;
12229 ::com::sun::star::table::BorderLine2 LeftLine;
12230 boolean IsLeftLineValid;
12231 ::com::sun::star::table::BorderLine2 RightLine;
12232 boolean IsRightLineValid;
12233 ::com::sun::star::table::BorderLine2 HorizontalLine;
12234 boolean IsHorizontalLineValid;
12235 ::com::sun::star::table::BorderLine2 VerticalLine;
12236 boolean IsVerticalLineValid;
12237 short Distance;
12238 boolean IsDistanceValid;
12241 module util {
12242 published struct CellProtection {
12243 boolean IsLocked;
12244 boolean IsFormulaHidden;
12245 boolean IsHidden;
12246 boolean IsPrintHidden;
12249 module table {
12250 published service CellProperties {
12251 interface ::com::sun::star::beans::XPropertySet;
12252 [property, optional] string CellStyle;
12253 [property] ::com::sun::star::util::Color CellBackColor;
12254 [property] boolean IsCellBackgroundTransparent;
12255 [property] ::com::sun::star::table::CellHoriJustify HoriJustify;
12256 [property] long VertJustify;
12257 [property] boolean IsTextWrapped;
12258 [property] short ParaIndent;
12259 [property] ::com::sun::star::table::CellOrientation Orientation;
12260 [property] long RotateAngle;
12261 [property] long RotateReference;
12262 [property, optional] boolean AsianVerticalMode;
12263 [property] ::com::sun::star::table::TableBorder TableBorder;
12264 [property] ::com::sun::star::table::BorderLine TopBorder;
12265 [property] ::com::sun::star::table::BorderLine BottomBorder;
12266 [property] ::com::sun::star::table::BorderLine LeftBorder;
12267 [property] ::com::sun::star::table::BorderLine RightBorder;
12268 [property] long NumberFormat;
12269 [property] ::com::sun::star::table::ShadowFormat ShadowFormat;
12270 [property] ::com::sun::star::util::CellProtection CellProtection;
12271 [property, optional] ::com::sun::star::container::XNameContainer UserDefinedAttributes;
12272 [property, optional] ::com::sun::star::table::BorderLine DiagonalTLBR;
12273 [property, optional] ::com::sun::star::table::BorderLine DiagonalBLTR;
12274 [property, optional] boolean ShrinkToFit;
12275 [property, optional] ::com::sun::star::table::TableBorder2 TableBorder2;
12276 [property, optional] ::com::sun::star::table::BorderLine2 TopBorder2;
12277 [property, optional] ::com::sun::star::table::BorderLine2 BottomBorder2;
12278 [property, optional] ::com::sun::star::table::BorderLine2 LeftBorder2;
12279 [property, optional] ::com::sun::star::table::BorderLine2 RightBorder2;
12280 [property, optional] ::com::sun::star::table::BorderLine2 DiagonalTLBR2;
12281 [property, optional] ::com::sun::star::table::BorderLine2 DiagonalBLTR2;
12282 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > CellInteropGrabBag;
12284 published enum CellContentType {
12285 EMPTY = 0,
12286 VALUE = 1,
12287 TEXT = 2,
12288 FORMULA = 3
12290 published interface XCell {
12291 interface ::com::sun::star::uno::XInterface;
12292 string getFormula();
12293 void setFormula([in] string aFormula);
12294 double getValue();
12295 void setValue([in] double nValue);
12296 ::com::sun::star::table::CellContentType getType();
12297 long getError();
12299 published service Cell {
12300 service ::com::sun::star::table::CellProperties;
12301 interface ::com::sun::star::table::XCell;
12302 interface ::com::sun::star::text::XText;
12304 published interface XTableColumns;
12305 published interface XTableRows;
12306 published interface XColumnRowRange {
12307 interface ::com::sun::star::uno::XInterface;
12308 ::com::sun::star::table::XTableColumns getColumns();
12309 ::com::sun::star::table::XTableRows getRows();
12312 module text {
12313 /** @deprecated */ published interface XRelativeTextContentInsert {
12314 interface ::com::sun::star::uno::XInterface;
12315 void insertTextContentBefore([in] ::com::sun::star::text::XTextContent xNewContent, [in] ::com::sun::star::text::XTextContent xSuccessor) raises (::com::sun::star::lang::IllegalArgumentException);
12316 void insertTextContentAfter([in] ::com::sun::star::text::XTextContent xNewContent, [in] ::com::sun::star::text::XTextContent xPredecessor) raises (::com::sun::star::lang::IllegalArgumentException);
12318 published interface XTextRangeCompare {
12319 interface ::com::sun::star::uno::XInterface;
12320 short compareRegionStarts([in] ::com::sun::star::text::XTextRange xR1, [in] ::com::sun::star::text::XTextRange xR2) raises (::com::sun::star::lang::IllegalArgumentException);
12321 short compareRegionEnds([in] ::com::sun::star::text::XTextRange xR1, [in] ::com::sun::star::text::XTextRange xR2) raises (::com::sun::star::lang::IllegalArgumentException);
12323 published interface XTextRangeMover {
12324 interface ::com::sun::star::uno::XInterface;
12325 void moveTextRange([in] ::com::sun::star::text::XTextRange xRange, [in] short nParagraphs);
12327 published service Text {
12328 interface ::com::sun::star::container::XEnumerationAccess;
12329 interface ::com::sun::star::text::XText;
12330 [optional] interface ::com::sun::star::text::XTextRangeCompare;
12331 [optional] interface ::com::sun::star::text::XTextRangeMover;
12332 /** @deprecated */ [optional] interface ::com::sun::star::text::XRelativeTextContentInsert;
12333 [property, optional] ::com::sun::star::beans::PropertyValues StartRedline;
12334 [property, maybevoid, optional] ::com::sun::star::beans::PropertyValues EndRedline;
12336 published interface XTextFieldsSupplier {
12337 interface ::com::sun::star::uno::XInterface;
12338 ::com::sun::star::container::XEnumerationAccess getTextFields();
12339 ::com::sun::star::container::XNameAccess getTextFieldMasters();
12342 module util {
12343 published interface XIndent {
12344 interface ::com::sun::star::uno::XInterface;
12345 void decrementIndent();
12346 void incrementIndent();
12348 published interface XSearchDescriptor;
12349 published interface XSearchable {
12350 interface ::com::sun::star::uno::XInterface;
12351 ::com::sun::star::util::XSearchDescriptor createSearchDescriptor();
12352 ::com::sun::star::container::XIndexAccess findAll([in] ::com::sun::star::util::XSearchDescriptor xDesc);
12353 ::com::sun::star::uno::XInterface findFirst([in] ::com::sun::star::util::XSearchDescriptor xDesc);
12354 ::com::sun::star::uno::XInterface findNext([in] ::com::sun::star::uno::XInterface xStartAt, [in] ::com::sun::star::util::XSearchDescriptor xDesc);
12356 published interface XReplaceDescriptor;
12357 published interface XSearchDescriptor;
12358 published interface XReplaceable {
12359 interface ::com::sun::star::util::XSearchable;
12360 ::com::sun::star::util::XReplaceDescriptor createReplaceDescriptor();
12361 long replaceAll([in] ::com::sun::star::util::XSearchDescriptor xDesc);
12364 module sheet {
12365 published interface XSheetConditionalEntries;
12366 published service SheetCell {
12367 service ::com::sun::star::table::Cell;
12368 service ::com::sun::star::text::Text;
12369 service ::com::sun::star::style::CharacterProperties;
12370 service ::com::sun::star::style::CharacterPropertiesAsian;
12371 service ::com::sun::star::style::CharacterPropertiesComplex;
12372 service ::com::sun::star::style::ParagraphProperties;
12373 service ::com::sun::star::sheet::SheetRangesQuery;
12374 [optional] service ::com::sun::star::style::ParagraphPropertiesAsian;
12375 [optional] service ::com::sun::star::style::ParagraphPropertiesComplex;
12376 interface ::com::sun::star::document::XActionLockable;
12377 interface ::com::sun::star::util::XReplaceable;
12378 interface ::com::sun::star::util::XIndent;
12379 interface ::com::sun::star::table::XColumnRowRange;
12380 interface ::com::sun::star::sheet::XCellAddressable;
12381 interface ::com::sun::star::sheet::XSheetAnnotationAnchor;
12382 interface ::com::sun::star::text::XTextFieldsSupplier;
12383 [optional] interface ::com::sun::star::beans::XTolerantMultiPropertySet;
12384 [optional] interface ::com::sun::star::util::XModifyBroadcaster;
12385 [property, readonly] ::com::sun::star::awt::Point Position;
12386 [property, readonly] ::com::sun::star::awt::Size Size;
12387 [property, optional] string FormulaLocal;
12388 [property, readonly] long FormulaResultType;
12389 [property] ::com::sun::star::sheet::XSheetConditionalEntries ConditionalFormat;
12390 [property, optional] ::com::sun::star::sheet::XSheetConditionalEntries ConditionalFormatLocal;
12391 [property] ::com::sun::star::beans::XPropertySet Validation;
12392 [property, optional] ::com::sun::star::beans::XPropertySet ValidationLocal;
12393 [property, optional, readonly] string AbsoluteName;
12395 published interface XArrayFormulaRange {
12396 interface ::com::sun::star::uno::XInterface;
12397 string getArrayFormula();
12398 void setArrayFormula([in] string aFormula);
12400 published interface XCellFormatRangesSupplier {
12401 interface ::com::sun::star::uno::XInterface;
12402 ::com::sun::star::container::XIndexAccess getCellFormatRanges();
12404 published interface XCellRangeAddressable {
12405 interface ::com::sun::star::uno::XInterface;
12406 ::com::sun::star::table::CellRangeAddress getRangeAddress();
12408 published interface XCellRangeData {
12409 interface ::com::sun::star::uno::XInterface;
12410 sequence< sequence< any > > getDataArray();
12411 void setDataArray([in] sequence< sequence< any > > aArray);
12413 published interface XCellRangeFormula {
12414 interface ::com::sun::star::uno::XInterface;
12415 sequence< sequence< string > > getFormulaArray();
12416 void setFormulaArray([in] sequence< sequence< string > > aArray);
12418 published interface XCellSeries {
12419 interface ::com::sun::star::uno::XInterface;
12420 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);
12421 void fillAuto([in] ::com::sun::star::sheet::FillDirection nFillDirection, [in] long nSourceCount);
12423 published enum TableOperationMode {
12424 COLUMN = 0,
12425 ROW = 1,
12426 BOTH = 2
12428 published interface XMultipleOperation {
12429 interface ::com::sun::star::uno::XInterface;
12430 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);
12433 module table {
12434 published interface XCellRange {
12435 interface ::com::sun::star::uno::XInterface;
12436 ::com::sun::star::table::XCell getCellByPosition([in] long nColumn, [in] long nRow) raises (::com::sun::star::lang::IndexOutOfBoundsException);
12437 ::com::sun::star::table::XCellRange getCellRangeByPosition([in] long nLeft, [in] long nTop, [in] long nRight, [in] long nBottom) raises (::com::sun::star::lang::IndexOutOfBoundsException);
12438 ::com::sun::star::table::XCellRange getCellRangeByName([in] string aRange);
12441 module sheet {
12442 published interface XSpreadsheet;
12443 published interface XSheetCellRange {
12444 interface ::com::sun::star::table::XCellRange;
12445 ::com::sun::star::sheet::XSpreadsheet getSpreadsheet();
12447 published interface XSheetFilterDescriptor;
12448 published interface XSheetFilterable {
12449 interface ::com::sun::star::uno::XInterface;
12450 ::com::sun::star::sheet::XSheetFilterDescriptor createFilterDescriptor([in] boolean bEmpty);
12451 void filter([in] ::com::sun::star::sheet::XSheetFilterDescriptor xDescriptor);
12453 published interface XSheetFilterDescriptor;
12454 published interface XSheetFilterableEx {
12455 interface ::com::sun::star::sheet::XSheetFilterable;
12456 ::com::sun::star::sheet::XSheetFilterDescriptor createFilterDescriptorByObject([in] ::com::sun::star::sheet::XSheetFilterable xObject);
12458 published interface XSheetOperation {
12459 interface ::com::sun::star::uno::XInterface;
12460 double computeFunction([in] ::com::sun::star::sheet::GeneralFunction nFunction) raises (::com::sun::star::uno::Exception);
12461 void clearContents([in] long nContentFlags);
12463 published interface XSubTotalDescriptor;
12464 published interface XSubTotalCalculatable {
12465 interface ::com::sun::star::uno::XInterface;
12466 ::com::sun::star::sheet::XSubTotalDescriptor createSubTotalDescriptor([in] boolean bEmpty);
12467 void applySubTotals([in] ::com::sun::star::sheet::XSubTotalDescriptor xDescriptor, [in] boolean bReplace);
12468 void removeSubTotals();
12470 published interface XUniqueCellFormatRangesSupplier {
12471 interface ::com::sun::star::uno::XInterface;
12472 ::com::sun::star::container::XIndexAccess getUniqueCellFormatRanges();
12475 module table {
12476 published service CellRange {
12477 service ::com::sun::star::table::CellProperties;
12478 interface ::com::sun::star::table::XCellRange;
12480 published interface XAutoFormattable {
12481 interface ::com::sun::star::uno::XInterface;
12482 void autoFormat([in] string aName) raises (::com::sun::star::lang::IllegalArgumentException);
12485 module util {
12486 published interface XImportable {
12487 interface ::com::sun::star::uno::XInterface;
12488 sequence< ::com::sun::star::beans::PropertyValue > createImportDescriptor([in] boolean bEmpty);
12489 void doImport([in] sequence< ::com::sun::star::beans::PropertyValue > aDescriptor);
12491 published interface XMergeable {
12492 interface ::com::sun::star::uno::XInterface;
12493 void merge([in] boolean bMerge);
12494 boolean getIsMerged();
12496 published interface XSortable {
12497 interface ::com::sun::star::uno::XInterface;
12498 sequence< ::com::sun::star::beans::PropertyValue > createSortDescriptor();
12499 void sort([in] sequence< ::com::sun::star::beans::PropertyValue > xDescriptor);
12502 module sheet {
12503 published interface XSheetConditionalEntries;
12504 published service SheetCellRange {
12505 service ::com::sun::star::table::CellRange;
12506 service ::com::sun::star::style::CharacterProperties;
12507 service ::com::sun::star::style::CharacterPropertiesAsian;
12508 service ::com::sun::star::style::CharacterPropertiesComplex;
12509 service ::com::sun::star::style::ParagraphProperties;
12510 service ::com::sun::star::sheet::SheetRangesQuery;
12511 interface ::com::sun::star::util::XReplaceable;
12512 interface ::com::sun::star::util::XMergeable;
12513 interface ::com::sun::star::util::XIndent;
12514 interface ::com::sun::star::table::XColumnRowRange;
12515 interface ::com::sun::star::table::XAutoFormattable;
12516 interface ::com::sun::star::sheet::XSheetCellRange;
12517 interface ::com::sun::star::sheet::XCellRangeData;
12518 interface ::com::sun::star::sheet::XCellRangeAddressable;
12519 interface ::com::sun::star::sheet::XSheetOperation;
12520 interface ::com::sun::star::sheet::XCellSeries;
12521 interface ::com::sun::star::sheet::XArrayFormulaRange;
12522 interface ::com::sun::star::sheet::XMultipleOperation;
12523 interface ::com::sun::star::util::XSortable;
12524 interface ::com::sun::star::util::XImportable;
12525 interface ::com::sun::star::sheet::XSubTotalCalculatable;
12526 interface ::com::sun::star::sheet::XSheetFilterableEx;
12527 interface ::com::sun::star::sheet::XCellFormatRangesSupplier;
12528 interface ::com::sun::star::sheet::XUniqueCellFormatRangesSupplier;
12529 interface ::com::sun::star::chart::XChartDataArray;
12530 [optional] interface ::com::sun::star::sheet::XCellRangeFormula;
12531 [optional] interface ::com::sun::star::beans::XTolerantMultiPropertySet;
12532 [optional] interface ::com::sun::star::util::XModifyBroadcaster;
12533 [property, readonly] ::com::sun::star::awt::Point Position;
12534 [property, readonly] ::com::sun::star::awt::Size Size;
12535 [property] ::com::sun::star::sheet::XSheetConditionalEntries ConditionalFormat;
12536 [property, optional] ::com::sun::star::sheet::XSheetConditionalEntries ConditionalFormatLocal;
12537 [property] ::com::sun::star::beans::XPropertySet Validation;
12538 [property, optional] ::com::sun::star::beans::XPropertySet ValidationLocal;
12539 [property, optional, readonly] string AbsoluteName;
12541 published interface XSheetCellCursor {
12542 interface ::com::sun::star::sheet::XSheetCellRange;
12543 void collapseToCurrentRegion();
12544 void collapseToCurrentArray();
12545 void collapseToMergedArea();
12546 void expandToEntireColumns();
12547 void expandToEntireRows();
12548 void collapseToSize([in] long nColumns, [in] long nRows);
12550 published interface XUsedAreaCursor {
12551 interface ::com::sun::star::uno::XInterface;
12552 void gotoStartOfUsedArea([in] boolean bExpand);
12553 void gotoEndOfUsedArea([in] boolean bExpand);
12556 module table {
12557 published interface XCellCursor {
12558 interface ::com::sun::star::table::XCellRange;
12559 void gotoStart();
12560 void gotoEnd();
12561 void gotoNext();
12562 void gotoPrevious();
12563 void gotoOffset([in] long nColumnOffset, [in] long nRowOffset);
12565 published service CellCursor {
12566 interface ::com::sun::star::table::XCellCursor;
12569 module sheet {
12570 published service SheetCellCursor {
12571 service ::com::sun::star::table::CellCursor;
12572 service ::com::sun::star::sheet::SheetCellRange;
12573 interface ::com::sun::star::sheet::XSheetCellCursor;
12574 interface ::com::sun::star::sheet::XUsedAreaCursor;
12576 published interface XSheetCellRanges {
12577 interface ::com::sun::star::container::XIndexAccess;
12578 ::com::sun::star::container::XEnumerationAccess getCells();
12579 string getRangeAddressesAsString();
12580 sequence< ::com::sun::star::table::CellRangeAddress > getRangeAddresses();
12582 published interface XSheetCellRangeContainer {
12583 interface ::com::sun::star::sheet::XSheetCellRanges;
12584 void addRangeAddress([in] ::com::sun::star::table::CellRangeAddress aCellRangeAddress, [in] boolean bMergeRanges);
12585 void removeRangeAddress([in] ::com::sun::star::table::CellRangeAddress aCellRangeAddress) raises (::com::sun::star::container::NoSuchElementException);
12586 void addRangeAddresses([in] sequence< ::com::sun::star::table::CellRangeAddress > aCellRangeAddresses, [in] boolean bMergeRanges);
12587 void removeRangeAddresses([in] sequence< ::com::sun::star::table::CellRangeAddress > aCellRangeAddresses) raises (::com::sun::star::container::NoSuchElementException);
12589 published interface XSheetConditionalEntries;
12590 published service SheetCellRanges {
12591 service ::com::sun::star::table::CellProperties;
12592 service ::com::sun::star::style::CharacterProperties;
12593 service ::com::sun::star::style::CharacterPropertiesAsian;
12594 service ::com::sun::star::style::CharacterPropertiesComplex;
12595 service ::com::sun::star::style::ParagraphProperties;
12596 service ::com::sun::star::sheet::SheetRangesQuery;
12597 interface ::com::sun::star::util::XReplaceable;
12598 interface ::com::sun::star::util::XIndent;
12599 interface ::com::sun::star::sheet::XSheetOperation;
12600 interface ::com::sun::star::chart::XChartDataArray;
12601 interface ::com::sun::star::sheet::XSheetCellRangeContainer;
12602 interface ::com::sun::star::container::XEnumerationAccess;
12603 interface ::com::sun::star::container::XNameContainer;
12604 [property] ::com::sun::star::sheet::XSheetConditionalEntries ConditionalFormat;
12605 [property, optional] ::com::sun::star::sheet::XSheetConditionalEntries ConditionalFormatLocal;
12606 [property] ::com::sun::star::beans::XPropertySet Validation;
12607 [property, optional] ::com::sun::star::beans::XPropertySet ValidationLocal;
12608 [property, optional, readonly] string AbsoluteName;
12610 published service SheetCellRangesEnumeration {
12611 interface ::com::sun::star::container::XEnumeration;
12613 published interface XSheetFilterDescriptor {
12614 interface ::com::sun::star::uno::XInterface;
12615 sequence< ::com::sun::star::sheet::TableFilterField > getFilterFields();
12616 void setFilterFields([in] sequence< ::com::sun::star::sheet::TableFilterField > aFilterFields);
12618 published struct TableFilterField2 {
12619 ::com::sun::star::sheet::FilterConnection Connection;
12620 long Field;
12621 long Operator;
12622 boolean IsNumeric;
12623 double NumericValue;
12624 string StringValue;
12626 published interface XSheetFilterDescriptor2 {
12627 interface ::com::sun::star::uno::XInterface;
12628 sequence< ::com::sun::star::sheet::TableFilterField2 > getFilterFields2();
12629 void setFilterFields2([in] sequence< ::com::sun::star::sheet::TableFilterField2 > aFilterFields);
12632 module table {
12633 published enum TableOrientation {
12634 COLUMNS = 0,
12635 ROWS = 1
12638 module sheet {
12639 published service SheetFilterDescriptor {
12640 interface ::com::sun::star::sheet::XSheetFilterDescriptor;
12641 interface ::com::sun::star::beans::XPropertySet;
12642 [optional] interface ::com::sun::star::sheet::XSheetFilterDescriptor2;
12643 [property] boolean IsCaseSensitive;
12644 [property] boolean SkipDuplicates;
12645 [property] boolean UseRegularExpressions;
12646 [property] boolean SaveOutputPosition;
12647 [property] ::com::sun::star::table::TableOrientation Orientation;
12648 [property] boolean ContainsHeader;
12649 [property] boolean CopyOutputData;
12650 [property] ::com::sun::star::table::CellAddress OutputPosition;
12651 [property, readonly] long MaxFieldCount;
12653 published service SheetLink {
12654 interface ::com::sun::star::container::XNamed;
12655 interface ::com::sun::star::util::XRefreshable;
12656 interface ::com::sun::star::beans::XPropertySet;
12657 [property] string Url;
12658 [property] string Filter;
12659 [property] string FilterOptions;
12661 published enum SheetLinkMode {
12662 NONE = 0,
12663 NORMAL = 1,
12664 VALUE = 2
12666 published service SheetLinks {
12667 interface ::com::sun::star::container::XIndexAccess;
12668 interface ::com::sun::star::container::XNameAccess;
12669 interface ::com::sun::star::container::XEnumerationAccess;
12671 published service SheetLinksEnumeration {
12672 interface ::com::sun::star::container::XEnumeration;
12675 module util {
12676 /** @deprecated */ published service SortDescriptor {
12677 interface ::com::sun::star::beans::XPropertySet;
12678 [property] boolean IsCaseSensitive;
12679 [property, optional] boolean SortAscending;
12680 [property] boolean SortColumns;
12681 [property] ::com::sun::star::lang::Locale CollatorLocale;
12682 [property, optional] string CollatorAlgorithm;
12684 /** @deprecated */ published enum SortFieldType {
12685 AUTOMATIC = 0,
12686 NUMERIC = 1,
12687 ALPHANUMERIC = 2
12689 /** @deprecated */ published struct SortField {
12690 long Field;
12691 boolean SortAscending;
12692 ::com::sun::star::util::SortFieldType FieldType;
12695 module table {
12696 /** @deprecated */ published service TableSortDescriptor {
12697 service ::com::sun::star::util::SortDescriptor;
12698 [property] sequence< ::com::sun::star::util::SortField > SortFields;
12699 [property, readonly] long MaxFieldCount;
12700 /** @deprecated */ [property] ::com::sun::star::table::TableOrientation Orientation;
12701 [property] boolean ContainsHeader;
12704 module sheet {
12705 published service SheetSortDescriptor {
12706 service ::com::sun::star::table::TableSortDescriptor;
12707 [property] boolean BindFormatsToContent;
12708 [property] boolean IsUserListEnabled;
12709 [property] long UserListIndex;
12710 [property] boolean CopyOutputData;
12711 [property] ::com::sun::star::table::CellAddress OutputPosition;
12714 module table {
12715 published enum TableSortFieldType {
12716 AUTOMATIC = 0,
12717 NUMERIC = 1,
12718 ALPHANUMERIC = 2
12720 published struct TableSortField {
12721 long Field;
12722 boolean IsAscending;
12723 boolean IsCaseSensitive;
12724 ::com::sun::star::table::TableSortFieldType FieldType;
12725 ::com::sun::star::lang::Locale CollatorLocale;
12726 string CollatorAlgorithm;
12729 module util {
12730 published service SortDescriptor2 {
12733 module table {
12734 published service TableSortDescriptor2 {
12735 service ::com::sun::star::util::SortDescriptor2;
12736 [property] sequence< ::com::sun::star::table::TableSortField > SortFields;
12737 [property, readonly] long MaxSortFieldsCount;
12738 [property] boolean IsSortColumns;
12741 module sheet {
12742 published service SheetSortDescriptor2 {
12743 service ::com::sun::star::table::TableSortDescriptor2;
12744 [property] boolean BindFormatsToContent;
12745 [property] boolean IsUserListEnabled;
12746 [property] long UserListIndex;
12747 [property] boolean CopyOutputData;
12748 [property] ::com::sun::star::table::CellAddress OutputPosition;
12749 [property] boolean ContainsHeader;
12751 published interface XCellRangeMovement {
12752 interface ::com::sun::star::uno::XInterface;
12753 void insertCells([in] ::com::sun::star::table::CellRangeAddress aRange, [in] ::com::sun::star::sheet::CellInsertMode nMode);
12754 void removeRange([in] ::com::sun::star::table::CellRangeAddress aRange, [in] ::com::sun::star::sheet::CellDeleteMode nMode);
12755 void moveRange([in] ::com::sun::star::table::CellAddress aDestination, [in] ::com::sun::star::table::CellRangeAddress aSource);
12756 void copyRange([in] ::com::sun::star::table::CellAddress aDestination, [in] ::com::sun::star::table::CellRangeAddress aSource);
12758 published interface XDataPilotTablesSupplier {
12759 interface ::com::sun::star::uno::XInterface;
12760 ::com::sun::star::sheet::XDataPilotTables getDataPilotTables();
12762 published interface XPrintAreas {
12763 interface ::com::sun::star::uno::XInterface;
12764 sequence< ::com::sun::star::table::CellRangeAddress > getPrintAreas();
12765 void setPrintAreas([in] sequence< ::com::sun::star::table::CellRangeAddress > aPrintAreas);
12766 boolean getPrintTitleColumns();
12767 void setPrintTitleColumns([in] boolean bPrintTitleColumns);
12768 ::com::sun::star::table::CellRangeAddress getTitleColumns();
12769 void setTitleColumns([in] ::com::sun::star::table::CellRangeAddress aTitleColumns);
12770 boolean getPrintTitleRows();
12771 void setPrintTitleRows([in] boolean bPrintTitleRows);
12772 ::com::sun::star::table::CellRangeAddress getTitleRows();
12773 void setTitleRows([in] ::com::sun::star::table::CellRangeAddress aTitleRows);
12775 published interface XScenariosSupplier {
12776 interface ::com::sun::star::uno::XInterface;
12777 ::com::sun::star::sheet::XScenarios getScenarios();
12779 published interface XSheetAnnotationsSupplier {
12780 interface ::com::sun::star::uno::XInterface;
12781 ::com::sun::star::sheet::XSheetAnnotations getAnnotations();
12783 published interface XSheetAuditing {
12784 interface ::com::sun::star::uno::XInterface;
12785 boolean hideDependents([in] ::com::sun::star::table::CellAddress aPosition);
12786 boolean hidePrecedents([in] ::com::sun::star::table::CellAddress aPosition);
12787 boolean showDependents([in] ::com::sun::star::table::CellAddress aPosition);
12788 boolean showPrecedents([in] ::com::sun::star::table::CellAddress aPosition);
12789 boolean showErrors([in] ::com::sun::star::table::CellAddress aPosition);
12790 boolean showInvalid();
12791 void clearArrows();
12793 /** @deprecated */ published interface XSheetLinkable {
12794 interface ::com::sun::star::uno::XInterface;
12795 ::com::sun::star::sheet::SheetLinkMode getLinkMode();
12796 void setLinkMode([in] ::com::sun::star::sheet::SheetLinkMode nLinkMode);
12797 string getLinkUrl();
12798 void setLinkUrl([in] string aLinkUrl);
12799 string getLinkSheetName();
12800 void setLinkSheetName([in] string aLinkSheetName);
12801 void link([in] string aUrl, [in] string aSheetName, [in] string aFilterName, [in] string aFilterOptions, [in] ::com::sun::star::sheet::SheetLinkMode nMode);
12803 published interface XSheetOutline {
12804 interface ::com::sun::star::uno::XInterface;
12805 void group([in] ::com::sun::star::table::CellRangeAddress aRange, [in] ::com::sun::star::table::TableOrientation nOrientation);
12806 void ungroup([in] ::com::sun::star::table::CellRangeAddress aRange, [in] ::com::sun::star::table::TableOrientation nOrientation);
12807 void autoOutline([in] ::com::sun::star::table::CellRangeAddress aRange);
12808 void clearOutline();
12809 void hideDetail([in] ::com::sun::star::table::CellRangeAddress aRange);
12810 void showDetail([in] ::com::sun::star::table::CellRangeAddress aRange);
12811 void showLevel([in] short nLevel, [in] ::com::sun::star::table::TableOrientation nOrientation);
12813 published struct TablePageBreakData {
12814 long Position;
12815 boolean ManualBreak;
12817 /** @deprecated */ published interface XSheetPageBreak {
12818 interface ::com::sun::star::uno::XInterface;
12819 sequence< ::com::sun::star::sheet::TablePageBreakData > getColumnPageBreaks();
12820 sequence< ::com::sun::star::sheet::TablePageBreakData > getRowPageBreaks();
12821 void removeAllManualPageBreaks();
12823 published interface XSpreadsheet {
12824 interface ::com::sun::star::sheet::XSheetCellRange;
12825 ::com::sun::star::sheet::XSheetCellCursor createCursor();
12826 ::com::sun::star::sheet::XSheetCellCursor createCursorByRange([in] ::com::sun::star::sheet::XSheetCellRange aRange);
12829 module table {
12830 published interface XTableCharts;
12831 published interface XTableChartsSupplier {
12832 interface ::com::sun::star::uno::XInterface;
12833 ::com::sun::star::table::XTableCharts getCharts();
12836 module util {
12837 published interface XProtectable {
12838 interface ::com::sun::star::uno::XInterface;
12839 void protect([in] string aPassword);
12840 void unprotect([in] string aPassword) raises (::com::sun::star::lang::IllegalArgumentException);
12841 boolean isProtected();
12844 module sheet {
12845 published interface XCalculatable {
12846 interface ::com::sun::star::uno::XInterface;
12847 void calculate();
12848 void calculateAll();
12849 boolean isAutomaticCalculationEnabled();
12850 void enableAutomaticCalculation([in] boolean bEnabled);
12852 /** @deprecated */ published interface XConsolidatable {
12853 interface ::com::sun::star::uno::XInterface;
12854 ::com::sun::star::sheet::XConsolidationDescriptor createConsolidationDescriptor([in] boolean bEmpty);
12855 void consolidate([in] ::com::sun::star::sheet::XConsolidationDescriptor xDescriptor);
12857 published interface XDocumentAuditing {
12858 interface ::com::sun::star::uno::XInterface;
12859 void refreshArrows();
12861 published interface XGoalSeek {
12862 interface ::com::sun::star::uno::XInterface;
12863 ::com::sun::star::sheet::GoalResult seekGoal([in] ::com::sun::star::table::CellAddress aFormulaPosition, [in] ::com::sun::star::table::CellAddress aVariablePosition, [in] string aGoalValue);
12865 published interface XSpreadsheets;
12866 published interface XSpreadsheetDocument {
12867 interface ::com::sun::star::uno::XInterface;
12868 ::com::sun::star::sheet::XSpreadsheets getSheets();
12870 published service SpreadsheetDocument {
12871 service ::com::sun::star::document::OfficeDocument;
12872 /** @deprecated */ [optional] service ::com::sun::star::sheet::SpreadsheetDocumentSettings;
12873 interface ::com::sun::star::lang::XMultiServiceFactory;
12874 interface ::com::sun::star::frame::XModel;
12875 interface ::com::sun::star::document::XActionLockable;
12876 interface ::com::sun::star::document::XLinkTargetSupplier;
12877 interface ::com::sun::star::util::XProtectable;
12878 interface ::com::sun::star::sheet::XSpreadsheetDocument;
12879 interface ::com::sun::star::sheet::XCalculatable;
12880 interface ::com::sun::star::sheet::XDocumentAuditing;
12881 interface ::com::sun::star::sheet::XConsolidatable;
12882 interface ::com::sun::star::sheet::XGoalSeek;
12883 interface ::com::sun::star::drawing::XDrawPagesSupplier;
12884 interface ::com::sun::star::style::XStyleFamiliesSupplier;
12885 interface ::com::sun::star::util::XNumberFormatsSupplier;
12886 [property, readonly] ::com::sun::star::sheet::XNamedRanges NamedRanges;
12887 [property, readonly] ::com::sun::star::sheet::XDatabaseRanges DatabaseRanges;
12888 [property, readonly] ::com::sun::star::sheet::XLabelRanges ColumnLabelRanges;
12889 [property, readonly] ::com::sun::star::sheet::XLabelRanges RowLabelRanges;
12890 [property, readonly] ::com::sun::star::container::XNameAccess SheetLinks;
12891 [property, readonly] ::com::sun::star::sheet::XAreaLinks AreaLinks;
12892 [property, readonly] ::com::sun::star::container::XNameAccess DDELinks;
12894 published service SpreadsheetDrawPage {
12895 interface ::com::sun::star::drawing::XDrawPage;
12896 interface ::com::sun::star::drawing::XShapeGrouper;
12898 published interface XViewPane {
12899 interface ::com::sun::star::uno::XInterface;
12900 long getFirstVisibleColumn();
12901 void setFirstVisibleColumn([in] long nFirstVisibleColumn);
12902 long getFirstVisibleRow();
12903 void setFirstVisibleRow([in] long nFirstVisibleRow);
12904 ::com::sun::star::table::CellRangeAddress getVisibleRange();
12906 published service SpreadsheetViewPane {
12907 interface ::com::sun::star::sheet::XViewPane;
12908 interface ::com::sun::star::sheet::XCellRangeReferrer;
12909 [optional] interface ::com::sun::star::view::XControlAccess;
12911 published service SpreadsheetViewSettings {
12912 interface ::com::sun::star::beans::XPropertySet;
12913 [property] boolean ShowFormulas;
12914 [property] boolean ShowZeroValues;
12915 [property] boolean IsValueHighlightingEnabled;
12916 [property] boolean ShowNotes;
12917 [property] boolean HasVerticalScrollBar;
12918 [property] boolean HasHorizontalScrollBar;
12919 [property] boolean HasSheetTabs;
12920 [property] boolean IsOutlineSymbolsSet;
12921 [property] boolean HasColumnRowHeaders;
12922 [property] boolean ShowGrid;
12923 [property] ::com::sun::star::util::Color GridColor;
12924 [property] boolean ShowHelpLines;
12925 [property] boolean ShowAnchor;
12926 [property] boolean ShowPageBreaks;
12927 [property] short ShowObjects;
12928 [property] short ShowCharts;
12929 [property] short ShowDrawing;
12930 [property] boolean HideSpellMarks;
12931 [property] short ZoomType;
12932 [property] short ZoomValue;
12934 published interface XActivationEventListener;
12935 published interface XActivationBroadcaster {
12936 interface ::com::sun::star::uno::XInterface;
12937 void addActivationEventListener([in] ::com::sun::star::sheet::XActivationEventListener aListener);
12938 void removeActivationEventListener([in] ::com::sun::star::sheet::XActivationEventListener aListener);
12940 published interface XEnhancedMouseClickBroadcaster {
12941 interface ::com::sun::star::uno::XInterface;
12942 void addEnhancedMouseClickHandler([in] ::com::sun::star::awt::XEnhancedMouseClickHandler aListener);
12943 void removeEnhancedMouseClickHandler([in] ::com::sun::star::awt::XEnhancedMouseClickHandler aListener);
12945 published interface XRangeSelectionChangeListener;
12946 published interface XRangeSelectionListener;
12947 published interface XRangeSelection {
12948 interface ::com::sun::star::uno::XInterface;
12949 void startRangeSelection([in] sequence< ::com::sun::star::beans::PropertyValue > aArguments);
12950 void abortRangeSelection();
12951 void addRangeSelectionListener([in] ::com::sun::star::sheet::XRangeSelectionListener aListener);
12952 void removeRangeSelectionListener([in] ::com::sun::star::sheet::XRangeSelectionListener aListener);
12953 void addRangeSelectionChangeListener([in] ::com::sun::star::sheet::XRangeSelectionChangeListener aListener);
12954 void removeRangeSelectionChangeListener([in] ::com::sun::star::sheet::XRangeSelectionChangeListener aListener);
12956 published interface XSpreadsheetView {
12957 interface ::com::sun::star::uno::XInterface;
12958 ::com::sun::star::sheet::XSpreadsheet getActiveSheet();
12959 void setActiveSheet([in] ::com::sun::star::sheet::XSpreadsheet xActiveSheet);
12961 published interface XViewFreezable {
12962 interface ::com::sun::star::uno::XInterface;
12963 boolean hasFrozenPanes();
12964 void freezeAtPosition([in] long nColumns, [in] long nRows);
12966 /** @deprecated */ published interface XViewSplitable {
12967 interface ::com::sun::star::uno::XInterface;
12968 boolean getIsWindowSplit();
12969 long getSplitHorizontal();
12970 long getSplitVertical();
12971 long getSplitColumn();
12972 long getSplitRow();
12973 void splitAtPosition([in] long nPixelX, [in] long nPixelY);
12975 published service SpreadsheetView {
12976 service ::com::sun::star::frame::Controller;
12977 service ::com::sun::star::sheet::SpreadsheetViewSettings;
12978 service ::com::sun::star::sheet::SpreadsheetViewPane;
12979 interface ::com::sun::star::sheet::XSpreadsheetView;
12980 interface ::com::sun::star::container::XIndexAccess;
12981 interface ::com::sun::star::container::XEnumerationAccess;
12982 interface ::com::sun::star::view::XSelectionSupplier;
12983 interface ::com::sun::star::sheet::XViewSplitable;
12984 interface ::com::sun::star::sheet::XViewFreezable;
12985 interface ::com::sun::star::sheet::XRangeSelection;
12986 [optional] interface ::com::sun::star::sheet::XEnhancedMouseClickBroadcaster;
12987 [optional] interface ::com::sun::star::sheet::XActivationBroadcaster;
12989 published constants SpreadsheetViewObjectsMode {
12990 const short HIDE = 1;
12991 const short SHOW = 0;
12993 published service SpreadsheetViewPanesEnumeration {
12994 interface ::com::sun::star::container::XEnumeration;
12996 published interface XCellRangesAccess {
12997 interface ::com::sun::star::uno::XInterface;
12998 ::com::sun::star::table::XCell getCellByPosition([in] long nColumn, [in] long nRow, [in] long nSheet) raises (::com::sun::star::lang::IndexOutOfBoundsException);
12999 ::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);
13000 sequence< ::com::sun::star::table::XCellRange > getCellRangesByName([in] string aRange) raises (::com::sun::star::lang::IllegalArgumentException);
13002 published interface XSpreadsheets {
13003 interface ::com::sun::star::container::XNameContainer;
13004 void insertNewByName([in] string aName, [in] short nPosition);
13005 void moveByName([in] string aName, [in] short nDestination);
13006 void copyByName([in] string aName, [in] string aCopy, [in] short nDestination);
13008 published service Spreadsheets {
13009 interface ::com::sun::star::sheet::XSpreadsheets;
13010 interface ::com::sun::star::container::XIndexAccess;
13011 interface ::com::sun::star::container::XEnumerationAccess;
13012 [optional] interface ::com::sun::star::sheet::XCellRangesAccess;
13014 published service SpreadsheetsEnumeration {
13015 interface ::com::sun::star::container::XEnumeration;
13017 published constants StatusBarFunction {
13018 const short AVERAGE = 1;
13019 const short COUNT = 3;
13020 const short COUNTNUMS = 2;
13021 const short MAX = 4;
13022 const short MIN = 5;
13023 const short NONE = 0;
13024 const short SUM = 9;
13026 published struct SubTotalColumn {
13027 long Column;
13028 ::com::sun::star::sheet::GeneralFunction Function;
13030 published interface XSubTotalDescriptor {
13031 interface ::com::sun::star::uno::XInterface;
13032 void addNew([in] sequence< ::com::sun::star::sheet::SubTotalColumn > aSubTotalColumns, [in] long nGroupColumn);
13033 void clear();
13035 published service SubTotalDescriptor {
13036 interface ::com::sun::star::sheet::XSubTotalDescriptor;
13037 interface ::com::sun::star::container::XEnumerationAccess;
13038 interface ::com::sun::star::container::XIndexAccess;
13039 interface ::com::sun::star::beans::XPropertySet;
13040 [property] boolean InsertPageBreaks;
13041 [property] boolean IsCaseSensitive;
13042 [property] boolean EnableUserSortList;
13043 [property] long UserSortListIndex;
13044 [property] boolean BindFormatsToContent;
13045 [property] boolean EnableSort;
13046 [property] boolean SortAscending;
13047 [property, readonly] long MaxFieldCount;
13049 published interface XSubTotalField {
13050 interface ::com::sun::star::uno::XInterface;
13051 long getGroupColumn();
13052 void setGroupColumn([in] long nGroupColumn);
13053 sequence< ::com::sun::star::sheet::SubTotalColumn > getSubTotalColumns();
13054 void setSubTotalColumns([in] sequence< ::com::sun::star::sheet::SubTotalColumn > aSubTotalColumns);
13056 published service SubTotalField {
13057 interface ::com::sun::star::sheet::XSubTotalField;
13059 published service SubTotalFieldsEnumeration {
13060 interface ::com::sun::star::container::XEnumeration;
13062 published service TableAutoFormat {
13063 interface ::com::sun::star::beans::XPropertySet;
13064 interface ::com::sun::star::container::XIndexAccess;
13065 interface ::com::sun::star::container::XEnumerationAccess;
13066 interface ::com::sun::star::container::XNamed;
13067 [property] boolean IncludeFont;
13068 [property] boolean IncludeJustify;
13069 [property] boolean IncludeBorder;
13070 [property] boolean IncludeBackground;
13071 [property] boolean IncludeNumberFormat;
13072 [property] boolean IncludeWidthAndHeight;
13074 published service TableAutoFormatEnumeration {
13075 interface ::com::sun::star::container::XEnumeration;
13077 published service TableAutoFormatField {
13078 interface ::com::sun::star::beans::XPropertySet;
13079 [property] string CharFontName;
13080 [property, optional] string CharFontNameAsian;
13081 [property, optional] string CharFontNameComplex;
13082 [property] string CharFontStyleName;
13083 [property, optional] string CharFontStyleNameAsian;
13084 [property, optional] string CharFontStyleNameComplex;
13085 [property] string CharFontCharSet;
13086 [property, optional] string CharFontCharSetAsian;
13087 [property, optional] string CharFontCharSetComplex;
13088 [property] string CharFontFamily;
13089 [property, optional] string CharFontFamilyAsian;
13090 [property, optional] string CharFontFamilyComplex;
13091 [property] string CharFontPitch;
13092 [property, optional] string CharFontPitchAsian;
13093 [property, optional] string CharFontPitchComplex;
13094 [property] float CharHeight;
13095 [property, optional] float CharHeightAsian;
13096 [property, optional] float CharHeightComplex;
13097 [property] float CharWeight;
13098 [property, optional] float CharWeightAsian;
13099 [property, optional] float CharWeightComplex;
13100 [property] ::com::sun::star::awt::FontSlant CharPosture;
13101 [property, optional] ::com::sun::star::awt::FontSlant CharPostureAsian;
13102 [property, optional] ::com::sun::star::awt::FontSlant CharPostureComplex;
13103 [property] short CharUnderline;
13104 [property] boolean CharCrossedOut;
13105 [property] boolean CharContoured;
13106 [property] boolean CharShadowed;
13107 [property] ::com::sun::star::util::Color CharColor;
13108 [property] ::com::sun::star::util::Color CellBackColor;
13109 [property] boolean IsCellBackgroundTransparent;
13110 [property, optional] ::com::sun::star::table::ShadowFormat ShadowFormat;
13111 [property, optional] ::com::sun::star::table::CellHoriJustify HoriJustify;
13112 [property, optional] long VertJustify;
13113 [property, optional] boolean IsTextWrapped;
13114 [property, optional] ::com::sun::star::table::CellOrientation Orientation;
13115 [property, optional] long RotateAngle;
13116 [property, optional] long RotateReference;
13117 [property, optional] long ParaTopMargin;
13118 [property, optional] long ParaBottomMargin;
13119 [property, optional] long ParaLeftMargin;
13120 [property, optional] long ParaRightMargin;
13121 [property, optional] ::com::sun::star::table::TableBorder TableBorder;
13122 [property, optional] ::com::sun::star::table::TableBorder2 TableBorder2;
13124 published service TableAutoFormats {
13125 interface ::com::sun::star::container::XNameContainer;
13126 interface ::com::sun::star::container::XIndexAccess;
13127 interface ::com::sun::star::container::XEnumerationAccess;
13129 published service TableAutoFormatsEnumeration {
13130 interface ::com::sun::star::container::XEnumeration;
13133 module style {
13134 published service CellStyle {
13135 service ::com::sun::star::style::Style;
13138 module sheet {
13139 published service TableCellStyle {
13140 service ::com::sun::star::table::CellProperties;
13141 service ::com::sun::star::style::CellStyle;
13142 service ::com::sun::star::style::CharacterProperties;
13143 service ::com::sun::star::style::CharacterPropertiesAsian;
13144 service ::com::sun::star::style::CharacterPropertiesComplex;
13145 service ::com::sun::star::style::ParagraphProperties;
13147 published interface XSheetCondition {
13148 interface ::com::sun::star::uno::XInterface;
13149 ::com::sun::star::sheet::ConditionOperator getOperator();
13150 void setOperator([in] ::com::sun::star::sheet::ConditionOperator nOperator);
13151 string getFormula1();
13152 void setFormula1([in] string aFormula1);
13153 string getFormula2();
13154 void setFormula2([in] string aFormula2);
13155 ::com::sun::star::table::CellAddress getSourcePosition();
13156 void setSourcePosition([in] ::com::sun::star::table::CellAddress aSourcePosition);
13158 published interface XSheetConditionalEntry {
13159 interface ::com::sun::star::uno::XInterface;
13160 string getStyleName();
13161 void setStyleName([in] string aStyleName);
13163 published service TableConditionalEntry {
13164 interface ::com::sun::star::sheet::XSheetCondition;
13165 interface ::com::sun::star::sheet::XSheetConditionalEntry;
13167 published service TableConditionalEntryEnumeration {
13168 interface ::com::sun::star::container::XEnumeration;
13170 published interface XSheetConditionalEntries {
13171 interface ::com::sun::star::container::XIndexAccess;
13172 void addNew([in] sequence< ::com::sun::star::beans::PropertyValue > aConditionalEntry);
13173 void removeByIndex([in] long nIndex);
13174 void clear();
13176 published service TableConditionalFormat {
13177 interface ::com::sun::star::sheet::XSheetConditionalEntries;
13178 interface ::com::sun::star::container::XNameAccess;
13179 interface ::com::sun::star::container::XEnumerationAccess;
13180 interface ::com::sun::star::container::XIndexAccess;
13183 module style {
13184 published enum PageStyleLayout {
13185 ALL = 0,
13186 LEFT = 1,
13187 RIGHT = 2,
13188 MIRRORED = 3
13191 module text {
13192 published interface XTextColumns;
13194 module style {
13195 published service PageProperties {
13196 [property] ::com::sun::star::util::Color BackColor;
13197 [property] string BackGraphicURL;
13198 [property] string BackGraphicFilter;
13199 [property] ::com::sun::star::style::GraphicLocation BackGraphicLocation;
13200 [property] boolean BackTransparent;
13201 [property] long LeftMargin;
13202 [property] long RightMargin;
13203 [property] long TopMargin;
13204 [property] long BottomMargin;
13205 [property] ::com::sun::star::table::BorderLine LeftBorder;
13206 [property] ::com::sun::star::table::BorderLine RightBorder;
13207 [property] ::com::sun::star::table::BorderLine TopBorder;
13208 [property] ::com::sun::star::table::BorderLine BottomBorder;
13209 [property] long LeftBorderDistance;
13210 [property] long RightBorderDistance;
13211 [property] long TopBorderDistance;
13212 [property] long BottomBorderDistance;
13213 [property] ::com::sun::star::table::ShadowFormat ShadowFormat;
13214 [property] boolean IsLandscape;
13215 [property] short NumberingType;
13216 [property] ::com::sun::star::style::PageStyleLayout PageStyleLayout;
13217 [property] string PrinterPaperTray;
13218 [property, optional] boolean RegisterModeActive;
13219 [property, optional] string RegisterParagraphStyle;
13220 [property] ::com::sun::star::awt::Size Size;
13221 [property] long Width;
13222 [property] long Height;
13223 [property, optional] ::com::sun::star::text::XTextColumns TextColumns;
13224 [property] ::com::sun::star::container::XNameContainer UserDefinedAttributes;
13225 [property, maybevoid] ::com::sun::star::util::Color HeaderBackColor;
13226 [property, maybevoid] string HeaderBackGraphicURL;
13227 [property, maybevoid] string HeaderBackGraphicFilter;
13228 [property, maybevoid] ::com::sun::star::style::GraphicLocation HeaderBackGraphicLocation;
13229 [property, maybevoid] long HeaderLeftMargin;
13230 [property, maybevoid] long HeaderRightMargin;
13231 [property, maybevoid] boolean HeaderBackTransparent;
13232 [property, maybevoid] ::com::sun::star::table::BorderLine HeaderLeftBorder;
13233 [property, maybevoid] ::com::sun::star::table::BorderLine HeaderRightBorder;
13234 [property, maybevoid] ::com::sun::star::table::BorderLine HeaderTopBorder;
13235 [property, maybevoid] ::com::sun::star::table::BorderLine HeaderBottomBorder;
13236 [property, maybevoid] long HeaderLeftBorderDistance;
13237 [property, maybevoid] long HeaderRightBorderDistance;
13238 [property, maybevoid] long HeaderTopBorderDistance;
13239 [property, maybevoid] long HeaderBottomBorderDistance;
13240 [property, maybevoid] ::com::sun::star::table::ShadowFormat HeaderShadowFormat;
13241 [property, maybevoid] long HeaderBodyDistance;
13242 [property, maybevoid] boolean HeaderIsShared;
13243 [property, maybevoid, optional] boolean FirstIsShared;
13244 [property, maybevoid] long HeaderHeight;
13245 [property, maybevoid] boolean HeaderIsDynamicHeight;
13246 [property] boolean HeaderIsOn;
13247 [property, maybevoid, optional] ::com::sun::star::text::XText HeaderText;
13248 [property, maybevoid, optional] ::com::sun::star::text::XText HeaderTextLeft;
13249 [property, maybevoid, optional] ::com::sun::star::text::XText HeaderTextRight;
13250 [property, maybevoid] ::com::sun::star::util::Color FooterBackColor;
13251 [property, maybevoid] string FooterBackGraphicURL;
13252 [property, maybevoid] string FooterBackGraphicFilter;
13253 [property, maybevoid] ::com::sun::star::style::GraphicLocation FooterBackGraphicLocation;
13254 [property, maybevoid] long FooterLeftMargin;
13255 [property, maybevoid] long FooterRightMargin;
13256 [property, maybevoid] boolean FooterBackTransparent;
13257 [property, maybevoid] ::com::sun::star::table::BorderLine FooterLeftBorder;
13258 [property, maybevoid] ::com::sun::star::table::BorderLine FooterRightBorder;
13259 [property, maybevoid] ::com::sun::star::table::BorderLine FooterTopBorder;
13260 [property, maybevoid] ::com::sun::star::table::BorderLine FooterBottomBorder;
13261 [property, maybevoid] long FooterLeftBorderDistance;
13262 [property, maybevoid] long FooterRightBorderDistance;
13263 [property, maybevoid] long FooterTopBorderDistance;
13264 [property, maybevoid] long FooterBottomBorderDistance;
13265 [property, maybevoid] ::com::sun::star::table::ShadowFormat FooterShadowFormat;
13266 [property, maybevoid] long FooterBodyDistance;
13267 [property, maybevoid] boolean FooterIsDynamicHeight;
13268 [property, maybevoid] boolean FooterIsShared;
13269 [property, maybevoid] long FooterHeight;
13270 [property] boolean FooterIsOn;
13271 [property, maybevoid, optional] ::com::sun::star::text::XText FooterText;
13272 [property, maybevoid, optional] ::com::sun::star::text::XText FooterTextLeft;
13273 [property, maybevoid, optional] ::com::sun::star::text::XText FooterTextRight;
13274 [property, optional] long FootnoteHeight;
13275 [property, optional] short FootnoteLineWeight;
13276 [property, optional] short FootnoteLineStyle;
13277 [property, optional] ::com::sun::star::util::Color FootnoteLineColor;
13278 [property, optional] byte FootnoteLineRelativeWidth;
13279 [property, optional] short FootnoteLineAdjust;
13280 [property, optional] long FootnoteLineTextDistance;
13281 [property, optional] long FootnoteLineDistance;
13282 [property, optional] short WritingMode;
13283 [property, optional] short GridMode;
13284 [property, optional] ::com::sun::star::util::Color GridColor;
13285 [property, optional] short GridLines;
13286 [property, optional] long GridBaseHeight;
13287 [property, optional] long GridRubyHeight;
13288 [property, optional] boolean GridRubyBelow;
13289 [property, optional] boolean GridPrint;
13290 [property, optional] boolean GridDisplay;
13291 [property, maybevoid, optional] boolean HeaderDynamicSpacing;
13292 [property, maybevoid, optional] boolean FooterDynamicSpacing;
13293 [property] long BorderDistance;
13294 [property, maybevoid] long FooterBorderDistance;
13295 [property, maybevoid] long HeaderBorderDistance;
13297 published service PageStyle {
13298 service ::com::sun::star::style::Style;
13299 service ::com::sun::star::style::PageProperties;
13302 module sheet {
13303 published service TablePageStyle {
13304 service ::com::sun::star::style::PageStyle;
13305 [property] boolean CenterHorizontally;
13306 [property] boolean CenterVertically;
13307 [property] boolean PrintAnnotations;
13308 [property] boolean PrintGrid;
13309 [property] boolean PrintHeaders;
13310 [property] boolean PrintCharts;
13311 [property] boolean PrintObjects;
13312 [property] boolean PrintDrawing;
13313 [property] boolean PrintFormulas;
13314 [property] boolean PrintZeroValues;
13315 [property] boolean PrintDownFirst;
13316 [property] ::com::sun::star::sheet::XHeaderFooterContent LeftPageHeaderContent;
13317 [property] ::com::sun::star::sheet::XHeaderFooterContent LeftPageFooterContent;
13318 [property] ::com::sun::star::sheet::XHeaderFooterContent RightPageHeaderContent;
13319 [property] ::com::sun::star::sheet::XHeaderFooterContent RightPageFooterContent;
13320 [property] short FirstPageNumber;
13321 [property] short PageScale;
13322 [property] short ScaleToPages;
13323 [property, optional] short ScaleToPagesX;
13324 [property, optional] short ScaleToPagesY;
13326 published enum ValidationAlertStyle {
13327 STOP = 0,
13328 WARNING = 1,
13329 INFO = 2,
13330 MACRO = 3
13332 published enum ValidationType {
13333 ANY = 0,
13334 WHOLE = 1,
13335 DECIMAL = 2,
13336 DATE = 3,
13337 TIME = 4,
13338 TEXT_LEN = 5,
13339 LIST = 6,
13340 CUSTOM = 7
13342 published service TableValidation {
13343 interface ::com::sun::star::beans::XPropertySet;
13344 interface ::com::sun::star::sheet::XSheetCondition;
13345 [property] ::com::sun::star::sheet::ValidationType Type;
13346 [property] boolean ShowInputMessage;
13347 [property] string InputTitle;
13348 [property] string InputMessage;
13349 [property] boolean ShowErrorMessage;
13350 [property] string ErrorTitle;
13351 [property] string ErrorMessage;
13352 [property] boolean IgnoreBlankCells;
13353 [property] ::com::sun::star::sheet::ValidationAlertStyle ErrorAlertStyle;
13354 [property, optional] short ShowList;
13356 published service UniqueCellFormatRanges {
13357 interface ::com::sun::star::container::XIndexAccess;
13358 interface ::com::sun::star::container::XEnumerationAccess;
13360 published service UniqueCellFormatRangesEnumeration {
13361 interface ::com::sun::star::container::XEnumeration;
13363 published interface XResultListener;
13364 published interface XVolatileResult {
13365 interface ::com::sun::star::uno::XInterface;
13366 void addResultListener([in] ::com::sun::star::sheet::XResultListener aListener);
13367 void removeResultListener([in] ::com::sun::star::sheet::XResultListener aListener);
13369 published service VolatileResult {
13370 interface ::com::sun::star::sheet::XVolatileResult;
13372 published interface XActivationEventListener {
13373 interface ::com::sun::star::lang::XEventListener;
13374 void activeSpreadsheetChanged([in] ::com::sun::star::sheet::ActivationEvent aEvent);
13376 /** @deprecated */ published interface XFillAcrossSheet {
13377 interface ::com::sun::star::uno::XInterface;
13378 void fillAcrossSheets([in] long nContentFlags);
13380 published interface XRangeSelectionChangeListener {
13381 interface ::com::sun::star::lang::XEventListener;
13382 void descriptorChanged([in] ::com::sun::star::sheet::RangeSelectionEvent aEvent);
13384 published interface XRangeSelectionListener {
13385 interface ::com::sun::star::lang::XEventListener;
13386 void done([in] ::com::sun::star::sheet::RangeSelectionEvent aEvent);
13387 void aborted([in] ::com::sun::star::sheet::RangeSelectionEvent aEvent);
13389 published interface XResultListener {
13390 interface ::com::sun::star::lang::XEventListener;
13391 void modified([in] ::com::sun::star::sheet::ResultEvent aEvent);
13393 /** @deprecated */ published interface XSheetPastable {
13394 interface ::com::sun::star::uno::XInterface;
13395 void paste([in] ::com::sun::star::table::CellAddress aDestination);
13396 void pasteFormat([in] ::com::sun::star::table::CellAddress aDestination, [in] string aFormat);
13397 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);
13399 /** @deprecated */ published interface XViewPanesSupplier {
13400 interface ::com::sun::star::uno::XInterface;
13401 ::com::sun::star::container::XIndexAccess getViewPanes();
13404 module style {
13405 published constants CaseMap {
13406 const short LOWERCASE = 2;
13407 const short NONE = 0;
13408 const short SMALLCAPS = 4;
13409 const short TITLE = 3;
13410 const short UPPERCASE = 1;
13412 published service CharacterStyle {
13413 service ::com::sun::star::style::Style;
13414 service ::com::sun::star::style::CharacterProperties;
13415 [property] float CharDiffHeight;
13416 [property] short CharPropHeight;
13417 [property] float CharDiffHeightAsian;
13418 [property] short CharPropHeightAsian;
13419 [property] float CharDiffHeightComplex;
13420 [property] short CharPropHeightComplex;
13422 published constants FootnoteLineStyle {
13423 const short DASHED = 3;
13424 const short DOTTED = 2;
13425 const short NONE = 0;
13426 const short SOLID = 1;
13428 published constants LineNumberPosition {
13429 const short INSIDE = 2;
13430 const short LEFT = 0;
13431 const short OUTSIDE = 3;
13432 const short RIGHT = 1;
13434 published constants LineSpacingMode {
13435 const short FIX = 3;
13436 const short LEADING = 2;
13437 const short MINIMUM = 1;
13438 const short PROP = 0;
13440 published service NumberingAlignment {
13441 [property] ::com::sun::star::style::HorizontalAlignment Alignment;
13442 [property] short TextMarginDistance;
13443 [property] short TextNumberingDistance;
13444 [property] short Insertion;
13446 published service NumberingLevel {
13447 [property] short NumberingType;
13448 [property] short ParentNumbering;
13449 [property] string Prefix;
13450 [property] string Suffix;
13451 [property] string CharStyleName;
13452 [property] short BulletId;
13453 [property] string BulletFontName;
13454 [property] string GraphicURL;
13455 [property] short StartWith;
13457 published service NumberingRule {
13458 service ::com::sun::star::style::NumberingAlignment;
13459 service ::com::sun::star::style::NumberingLevel;
13461 published constants NumberingType {
13462 const short AIU_FULLWIDTH_JA = 21;
13463 const short AIU_HALFWIDTH_JA = 22;
13464 const short ARABIC = 4;
13465 const short BITMAP = 8;
13466 const short CHARS_ARABIC = 31;
13467 const short CHARS_ARABIC_ABJAD = 54;
13468 const short CHARS_CYRILLIC_LOWER_LETTER_BG = 39;
13469 const short CHARS_CYRILLIC_LOWER_LETTER_N_BG = 41;
13470 const short CHARS_CYRILLIC_LOWER_LETTER_N_RU = 45;
13471 const short CHARS_CYRILLIC_LOWER_LETTER_N_SR = 51;
13472 const short CHARS_CYRILLIC_LOWER_LETTER_RU = 43;
13473 const short CHARS_CYRILLIC_LOWER_LETTER_SR = 49;
13474 const short CHARS_CYRILLIC_UPPER_LETTER_BG = 38;
13475 const short CHARS_CYRILLIC_UPPER_LETTER_N_BG = 40;
13476 const short CHARS_CYRILLIC_UPPER_LETTER_N_RU = 44;
13477 const short CHARS_CYRILLIC_UPPER_LETTER_N_SR = 50;
13478 const short CHARS_CYRILLIC_UPPER_LETTER_RU = 42;
13479 const short CHARS_CYRILLIC_UPPER_LETTER_SR = 48;
13480 const short CHARS_GREEK_LOWER_LETTER = 53;
13481 const short CHARS_GREEK_UPPER_LETTER = 52;
13482 const short CHARS_HEBREW = 33;
13483 const short CHARS_KHMER = 35;
13484 const short CHARS_LAO = 36;
13485 const short CHARS_LOWER_LETTER = 1;
13486 const short CHARS_LOWER_LETTER_N = 10;
13487 const short CHARS_MYANMAR = 47;
13488 const short CHARS_NEPALI = 34;
13489 const short CHARS_PERSIAN = 46;
13490 const short CHARS_PERSIAN_WORD = 55;
13491 const short CHARS_THAI = 32;
13492 const short CHARS_TIBETAN = 37;
13493 const short CHARS_UPPER_LETTER = 0;
13494 const short CHARS_UPPER_LETTER_N = 9;
13495 const short CHAR_SPECIAL = 6;
13496 const short CIRCLE_NUMBER = 14;
13497 const short DI_ZI_ZH = 19;
13498 const short FULLWIDTH_ARABIC = 13;
13499 const short HANGUL_CIRCLED_JAMO_KO = 29;
13500 const short HANGUL_CIRCLED_SYLLABLE_KO = 30;
13501 const short HANGUL_JAMO_KO = 27;
13502 const short HANGUL_SYLLABLE_KO = 28;
13503 const short IROHA_FULLWIDTH_JA = 23;
13504 const short IROHA_HALFWIDTH_JA = 24;
13505 const short NATIVE_NUMBERING = 12;
13506 const short NUMBER_HANGUL_KO = 26;
13507 const short NUMBER_LOWER_ZH = 15;
13508 const short NUMBER_NONE = 5;
13509 const short NUMBER_TRADITIONAL_JA = 20;
13510 const short NUMBER_UPPER_KO = 25;
13511 const short NUMBER_UPPER_ZH = 16;
13512 const short NUMBER_UPPER_ZH_TW = 17;
13513 const short PAGE_DESCRIPTOR = 7;
13514 const short ROMAN_LOWER = 3;
13515 const short ROMAN_UPPER = 2;
13516 const short TIAN_GAN_ZH = 18;
13517 const short TRANSLITERATION = 11;
13520 module xml {
13521 published service ParaUserDefinedAttributesSupplier {
13522 [property] ::com::sun::star::container::XNameContainer ParaUserDefinedAttributes;
13525 module style {
13526 published service ParagraphStyle {
13527 service ::com::sun::star::style::Style;
13528 service ::com::sun::star::style::ParagraphProperties;
13529 [optional] service ::com::sun::star::xml::ParaUserDefinedAttributesSupplier;
13530 [property] long ParaLeftMarginRelative;
13531 [property] long ParaRightMarginRelative;
13532 [property] long ParaTopMarginRelative;
13533 [property] long ParaBottomMarginRelative;
13534 [property] short Category;
13535 [property] float CharDiffHeight;
13536 [property] short CharPropHeight;
13537 [property] float CharDiffHeightAsian;
13538 [property] short CharPropHeightAsian;
13539 [property] float CharDiffHeightComplex;
13540 [property] short CharPropHeightComplex;
13541 [property, optional, readonly] string PageStyleName;
13543 published constants ParagraphStyleCategory {
13544 const short CHAPTER = 1;
13545 const short EXTRA = 4;
13546 const short HTML = 5;
13547 const short INDEX = 3;
13548 const short LIST = 2;
13549 const short TEXT = 0;
13551 published service StyleFamilies {
13552 interface ::com::sun::star::container::XNameAccess;
13553 [optional] interface ::com::sun::star::container::XIndexAccess;
13555 published service StyleFamily {
13556 interface ::com::sun::star::container::XNameAccess;
13557 [optional] interface ::com::sun::star::container::XNameContainer;
13558 [optional] interface ::com::sun::star::container::XIndexAccess;
13560 published interface XStyleLoader {
13561 interface ::com::sun::star::uno::XInterface;
13562 void loadStylesFromURL([in] string URL, [in] sequence< ::com::sun::star::beans::PropertyValue > aOptions) raises (::com::sun::star::io::IOException);
13563 sequence< ::com::sun::star::beans::PropertyValue > getStyleLoaderOptions();
13566 module svg {
13567 /** @deprecated */ published interface XSVGPrinter {
13568 interface ::com::sun::star::uno::XInterface;
13569 boolean startJob([in] ::com::sun::star::xml::sax::XDocumentHandler aHandler, [in] sequence< byte > aJobSetup, [in] string aJobName, [in] unsigned long nCopies, [in] boolean bCollate);
13570 void printPage([in] sequence< byte > aPrintPage);
13571 void endJob();
13573 /** @deprecated */ published interface XSVGWriter {
13574 interface ::com::sun::star::uno::XInterface;
13575 void write([in] ::com::sun::star::xml::sax::XDocumentHandler aHandler, [in] sequence< byte > aMtf);
13578 module system {
13579 published interface XSimpleMailClient;
13580 published interface XSimpleMailClientSupplier {
13581 interface ::com::sun::star::uno::XInterface;
13582 ::com::sun::star::system::XSimpleMailClient querySimpleMailClient();
13584 published service SimpleCommandMail: ::com::sun::star::system::XSimpleMailClientSupplier;
13585 published constants SimpleMailClientFlags {
13586 const long DEFAULTS = 0;
13587 const long NO_LOGON_DIALOG = 2;
13588 const long NO_USER_INTERFACE = 1;
13590 published service SimpleSystemMail: ::com::sun::star::system::XSimpleMailClientSupplier;
13591 published exception SystemShellExecuteException: ::com::sun::star::uno::Exception {
13592 long PosixError;
13594 published interface XSystemShellExecute {
13595 interface ::com::sun::star::uno::XInterface;
13596 void execute([in] string aCommand, [in] string aParameter, [in] long nFlags) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::system::SystemShellExecuteException);
13598 published service SystemShellExecute: ::com::sun::star::system::XSystemShellExecute;
13599 published constants SystemShellExecuteFlags {
13600 const long DEFAULTS = 0;
13601 const long NO_SYSTEM_ERROR_MESSAGE = 1;
13602 const long URIS_ONLY = 2;
13604 published interface XSimpleMailMessage;
13605 published interface XSimpleMailClient {
13606 interface ::com::sun::star::uno::XInterface;
13607 ::com::sun::star::system::XSimpleMailMessage createSimpleMailMessage();
13608 void sendSimpleMailMessage([in] ::com::sun::star::system::XSimpleMailMessage xSimpleMailMessage, [in] long aFlag) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::Exception);
13610 published interface XSimpleMailMessage {
13611 interface ::com::sun::star::uno::XInterface;
13612 void setRecipient([in] string aRecipient);
13613 string getRecipient();
13614 void setCcRecipient([in] sequence< string > aCcRecipient);
13615 sequence< string > getCcRecipient();
13616 void setBccRecipient([in] sequence< string > aBccRecipient);
13617 sequence< string > getBccRecipient();
13618 void setOriginator([in] string aOriginator);
13619 string getOriginator();
13620 void setSubject([in] string aSubject);
13621 string getSubject();
13622 void setAttachement([in] sequence< string > aAttachement) raises (::com::sun::star::lang::IllegalArgumentException);
13623 sequence< string > getAttachement();
13626 module table {
13627 published enum CellVertJustify {
13628 STANDARD = 0,
13629 TOP = 1,
13630 CENTER = 2,
13631 BOTTOM = 3
13633 published struct TableBorderDistances {
13634 short TopDistance;
13635 boolean IsTopDistanceValid;
13636 short BottomDistance;
13637 boolean IsBottomDistanceValid;
13638 short LeftDistance;
13639 boolean IsLeftDistanceValid;
13640 short RightDistance;
13641 boolean IsRightDistanceValid;
13643 published interface XTableChart {
13644 interface ::com::sun::star::uno::XInterface;
13645 boolean getHasColumnHeaders();
13646 void setHasColumnHeaders([in] boolean bHasColumnHeaders);
13647 boolean getHasRowHeaders();
13648 void setHasRowHeaders([in] boolean bHasRowHeaders);
13649 sequence< ::com::sun::star::table::CellRangeAddress > getRanges();
13650 void setRanges([in] sequence< ::com::sun::star::table::CellRangeAddress > aRanges);
13652 published service TableChart {
13653 interface ::com::sun::star::table::XTableChart;
13654 interface ::com::sun::star::document::XEmbeddedObjectSupplier;
13655 interface ::com::sun::star::container::XNamed;
13657 published interface XTableCharts {
13658 interface ::com::sun::star::container::XNameAccess;
13659 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);
13660 void removeByName([in] string aName);
13662 published service TableCharts {
13663 interface ::com::sun::star::table::XTableCharts;
13664 interface ::com::sun::star::container::XIndexAccess;
13665 interface ::com::sun::star::container::XEnumerationAccess;
13667 published service TableChartsEnumeration {
13668 interface ::com::sun::star::container::XEnumeration;
13670 published service TableColumn {
13671 interface ::com::sun::star::table::XCellRange;
13672 interface ::com::sun::star::beans::XPropertySet;
13673 interface ::com::sun::star::container::XNamed;
13674 [property] long Width;
13675 [property] boolean OptimalWidth;
13676 [property] boolean IsVisible;
13677 [property] boolean IsStartOfNewPage;
13679 published interface XTableColumns {
13680 interface ::com::sun::star::container::XIndexAccess;
13681 void insertByIndex([in] long nIndex, [in] long nCount);
13682 void removeByIndex([in] long nIndex, [in] long nCount);
13684 published service TableColumns {
13685 interface ::com::sun::star::table::XTableColumns;
13686 interface ::com::sun::star::container::XEnumerationAccess;
13687 [optional] interface ::com::sun::star::container::XNameAccess;
13689 published service TableColumnsEnumeration {
13690 interface ::com::sun::star::container::XEnumeration;
13692 published service TableRow {
13693 interface ::com::sun::star::table::XCellRange;
13694 interface ::com::sun::star::beans::XPropertySet;
13695 [property] long Height;
13696 [property] boolean OptimalHeight;
13697 [property] boolean IsVisible;
13698 [property] boolean IsStartOfNewPage;
13700 published interface XTableRows {
13701 interface ::com::sun::star::container::XIndexAccess;
13702 void insertByIndex([in] long nIndex, [in] long nCount);
13703 void removeByIndex([in] long nIndex, [in] long nCount);
13705 published service TableRows {
13706 interface ::com::sun::star::table::XTableRows;
13707 interface ::com::sun::star::container::XEnumerationAccess;
13709 published service TableRowsEnumeration {
13710 interface ::com::sun::star::container::XEnumeration;
13713 module task {
13714 published interface XJobListener;
13715 published interface XAsyncJob {
13716 interface ::com::sun::star::uno::XInterface;
13717 void executeAsync([in] sequence< ::com::sun::star::beans::NamedValue > Arguments, [in] ::com::sun::star::task::XJobListener Listener) raises (::com::sun::star::lang::IllegalArgumentException);
13719 published service AsyncJob {
13720 interface ::com::sun::star::task::XAsyncJob;
13721 [optional] interface ::com::sun::star::util::XCloseable;
13723 published enum PasswordRequestMode {
13724 PASSWORD_CREATE = 0,
13725 PASSWORD_ENTER = 1,
13726 PASSWORD_REENTER = 2
13728 published exception PasswordRequest: ::com::sun::star::task::ClassifiedInteractionRequest {
13729 ::com::sun::star::task::PasswordRequestMode Mode;
13731 published exception DocumentMSPasswordRequest: ::com::sun::star::task::PasswordRequest {
13732 string Name;
13734 published exception DocumentPasswordRequest: ::com::sun::star::task::PasswordRequest {
13735 string Name;
13737 published exception ErrorCodeRequest: ::com::sun::star::uno::Exception {
13738 long ErrCode;
13740 published service InteractionHandler: ::com::sun::star::task::XInteractionHandler2 {
13741 createWithParent([in] ::com::sun::star::awt::XWindow parent);
13742 createWithParentAndContext([in] ::com::sun::star::awt::XWindow parent, [in] string context);
13744 published service Job {
13745 interface ::com::sun::star::task::XJob;
13746 [optional] interface ::com::sun::star::util::XCloseable;
13748 published interface XJobExecutor {
13749 interface ::com::sun::star::uno::XInterface;
13750 void trigger([in] string Event);
13752 /** @deprecated */ published service JobExecutor: ::com::sun::star::task::XJobExecutor;
13753 published exception MasterPasswordRequest: ::com::sun::star::task::PasswordRequest {
13755 published exception NoMasterException: ::com::sun::star::uno::RuntimeException {
13756 ::com::sun::star::task::PasswordRequestMode Mode;
13758 published interface XRestartManager {
13759 interface ::com::sun::star::uno::XInterface;
13760 void requestRestart([in] ::com::sun::star::task::XInteractionHandler xInteractionHandler) raises (::com::sun::star::uno::Exception);
13761 boolean isRestartRequested([in] boolean bInitialized) raises (::com::sun::star::uno::Exception);
13763 published exception PDFExportException: ::com::sun::star::uno::Exception {
13764 sequence< long > ErrorCodes;
13766 published interface XMasterPasswordHandling {
13767 interface ::com::sun::star::uno::XInterface;
13768 boolean authorizateWithMasterPassword([in] ::com::sun::star::task::XInteractionHandler xHandler);
13769 boolean changeMasterPassword([in] ::com::sun::star::task::XInteractionHandler xHandler);
13770 void removeMasterPassword();
13771 boolean hasMasterPassword();
13772 boolean allowPersistentStoring([in] boolean bAllow);
13773 boolean isPersistentStoringAllowed();
13775 published interface XMasterPasswordHandling2 {
13776 interface ::com::sun::star::task::XMasterPasswordHandling;
13777 boolean useDefaultMasterPassword([in] ::com::sun::star::task::XInteractionHandler xHandler);
13778 boolean isDefaultMasterPasswordUsed();
13780 published struct UserRecord {
13781 string UserName;
13782 sequence< string > Passwords;
13784 published struct UrlRecord {
13785 string Url;
13786 sequence< ::com::sun::star::task::UserRecord > UserList;
13788 published interface XPasswordContainer {
13789 interface ::com::sun::star::uno::XInterface;
13790 void add([in] string Url, [in] string UserName, [in] sequence< string > Passwords, [in] ::com::sun::star::task::XInteractionHandler Handler);
13791 void addPersistent([in] string Url, [in] string UserName, [in] sequence< string > Passwords, [in] ::com::sun::star::task::XInteractionHandler Handler);
13792 ::com::sun::star::task::UrlRecord find([in] string Url, [in] ::com::sun::star::task::XInteractionHandler Handler);
13793 ::com::sun::star::task::UrlRecord findForName([in] string Url, [in] string UserName, [in] ::com::sun::star::task::XInteractionHandler Handler);
13794 void remove([in] string Url, [in] string UserName);
13795 void removePersistent([in] string Url, [in] string UserName);
13796 void removeAllPersistent();
13797 sequence< ::com::sun::star::task::UrlRecord > getAllPersistent([in] ::com::sun::star::task::XInteractionHandler Handler);
13799 published interface XUrlContainer {
13800 interface ::com::sun::star::uno::XInterface;
13801 void addUrl([in] string Url, [in] boolean MakePersistent);
13802 string findUrl([in] string Url);
13803 void removeUrl([in] string Url);
13804 sequence< string > getUrls([in] boolean OnlyPersistent);
13806 published interface XPasswordContainer2 {
13807 interface ::com::sun::star::task::XPasswordContainer;
13808 interface ::com::sun::star::task::XMasterPasswordHandling2;
13809 interface ::com::sun::star::task::XUrlContainer;
13811 published service PasswordContainer: ::com::sun::star::task::XPasswordContainer2;
13812 published service PasswordContainerInteractionHandler: ::com::sun::star::task::XInteractionHandler;
13813 published exception UnsupportedOverwriteRequest: ::com::sun::star::task::ClassifiedInteractionRequest {
13814 string Name;
13816 published interface XInteractionApprove {
13817 interface ::com::sun::star::task::XInteractionContinuation;
13819 published interface XInteractionDisapprove {
13820 interface ::com::sun::star::task::XInteractionContinuation;
13822 published interface XInteractionPassword {
13823 interface ::com::sun::star::task::XInteractionContinuation;
13824 void setPassword([in] string aPasswd);
13825 string getPassword();
13827 published interface XInteractionPassword2 {
13828 interface ::com::sun::star::task::XInteractionPassword;
13829 void setPasswordToModify([in] string aPasswd);
13830 string getPasswordToModify();
13831 void setRecommendReadOnly([in] boolean bReadOnly);
13832 boolean getRecommendReadOnly();
13834 published interface XJobListener {
13835 interface ::com::sun::star::lang::XEventListener;
13836 void jobFinished([in] ::com::sun::star::task::XAsyncJob Job, [in] any Result);
13838 published interface XStatusIndicator {
13839 interface ::com::sun::star::uno::XInterface;
13840 void start([in] string Text, [in] long Range);
13841 void end();
13842 void setText([in] string Text);
13843 void setValue([in] long Value);
13844 void reset();
13846 /** @deprecated */ published interface XStatusIndicatorSupplier {
13847 interface ::com::sun::star::uno::XInterface;
13848 /** @deprecated */ ::com::sun::star::task::XStatusIndicator getStatusIndicator();
13850 published singleton theJobExecutor: ::com::sun::star::task::XJobExecutor;
13852 module text {
13853 published constants AuthorDisplayFormat {
13854 const short FIRST_NAME = 2;
13855 const short FULL = 0;
13856 const short INITIALS = 3;
13857 const short LAST_NAME = 1;
13859 published interface XAutoTextGroup;
13860 published interface XAutoTextContainer {
13861 interface ::com::sun::star::container::XNameAccess;
13862 ::com::sun::star::text::XAutoTextGroup insertNewByName([in] string aGroupName) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::ElementExistException);
13863 void removeByName([in] string aGroupName) raises (::com::sun::star::container::NoSuchElementException);
13865 published interface XAutoTextContainer2 {
13866 interface ::com::sun::star::text::XAutoTextContainer;
13867 interface ::com::sun::star::container::XIndexAccess;
13869 published service AutoTextContainer: ::com::sun::star::text::XAutoTextContainer2;
13870 /** @deprecated */ published interface XAutoTextEntry {
13871 interface ::com::sun::star::uno::XInterface;
13872 void applyTo([in] ::com::sun::star::text::XTextRange xRange);
13874 published service AutoTextEntry {
13875 interface ::com::sun::star::text::XAutoTextEntry;
13876 interface ::com::sun::star::text::XText;
13878 published interface XAutoTextGroup {
13879 interface ::com::sun::star::container::XNameAccess;
13880 sequence< string > getTitles();
13881 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);
13882 ::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);
13883 void removeByName([in] string aEntryName) raises (::com::sun::star::container::NoSuchElementException);
13885 published service AutoTextGroup {
13886 interface ::com::sun::star::text::XAutoTextGroup;
13887 interface ::com::sun::star::container::XIndexAccess;
13888 interface ::com::sun::star::container::XNamed;
13889 [property, readonly] string FilePath;
13890 [property] string Title;
13892 published interface XTextFrame;
13893 published service BaseFrameProperties {
13894 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
13895 [property] short AnchorPageNo;
13896 [property] ::com::sun::star::text::XTextFrame AnchorFrame;
13897 [property] ::com::sun::star::util::Color BackColor;
13898 [property] string BackGraphicURL;
13899 [property] string BackGraphicFilter;
13900 [property] ::com::sun::star::style::GraphicLocation BackGraphicLocation;
13901 [property] ::com::sun::star::table::BorderLine LeftBorder;
13902 [property] ::com::sun::star::table::BorderLine RightBorder;
13903 [property] ::com::sun::star::table::BorderLine TopBorder;
13904 [property] ::com::sun::star::table::BorderLine BottomBorder;
13905 [property] long BorderDistance;
13906 [property] long LeftBorderDistance;
13907 [property] long RightBorderDistance;
13908 [property] long TopBorderDistance;
13909 [property] long BottomBorderDistance;
13910 [property] boolean BackTransparent;
13911 [property] boolean ContentProtected;
13912 [property] long LeftMargin;
13913 [property] long RightMargin;
13914 [property] long TopMargin;
13915 [property] long BottomMargin;
13916 [property] long Height;
13917 [property] long Width;
13918 [property] short RelativeHeight;
13919 [property] short RelativeWidth;
13920 [property] boolean IsSyncWidthToHeight;
13921 [property] boolean IsSyncHeightToWidth;
13922 [property] short HoriOrient;
13923 [property] long HoriOrientPosition;
13924 [property] short HoriOrientRelation;
13925 [property] short VertOrient;
13926 [property] long VertOrientPosition;
13927 [property] short VertOrientRelation;
13928 [property] string HyperLinkURL;
13929 [property] string HyperLinkTarget;
13930 [property] string HyperLinkName;
13931 [property] boolean Opaque;
13932 [property] boolean PageToggle;
13933 [property] boolean PositionProtected;
13934 [property] boolean Print;
13935 [property] ::com::sun::star::table::ShadowFormat ShadowFormat;
13936 [property] boolean ServerMap;
13937 [property] ::com::sun::star::awt::Size Size;
13938 [property] boolean SizeProtected;
13939 /** @deprecated */ [property] ::com::sun::star::text::WrapTextMode Surround;
13940 [property] boolean SurroundAnchorOnly;
13941 [property, optional] short WrapInfluenceOnPosition;
13942 [property, maybevoid, optional] ::com::sun::star::awt::Size LayoutSize;
13943 [property, optional] string Title;
13944 [property, optional] string Description;
13945 [property, optional] ::com::sun::star::drawing::FillStyle FillStyle;
13946 [property, optional] ::com::sun::star::awt::Gradient FillGradient;
13947 [property, optional] string FillGradientName;
13948 [property, optional] short ShadowTransparence;
13949 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > FrameInteropGrabBag;
13950 [property, optional] short RelativeHeightRelation;
13951 [property, optional] short RelativeWidthRelation;
13953 published service BaseFrame {
13954 service ::com::sun::star::text::BaseFrameProperties;
13955 service ::com::sun::star::text::TextContent;
13956 interface ::com::sun::star::beans::XPropertySet;
13957 interface ::com::sun::star::container::XNamed;
13958 [optional] interface ::com::sun::star::drawing::XShape;
13959 [property] string FrameStyleName;
13961 /** @deprecated */ published interface XDocumentIndex {
13962 interface ::com::sun::star::text::XTextContent;
13963 string getServiceName();
13964 void update();
13966 published interface XTextColumns;
13967 published interface XTextSection;
13968 published service BaseIndex {
13969 interface ::com::sun::star::text::XDocumentIndex;
13970 [optional] interface ::com::sun::star::util::XRefreshable;
13971 [property] string Title;
13972 [property] boolean IsProtected;
13973 [property] string ParaStyleHeading;
13974 [property] string ParaStyleLevel1;
13975 [property, optional] string ParaStyleLevel2;
13976 [property, optional] string ParaStyleLevel3;
13977 [property, optional] string ParaStyleLevel4;
13978 [property, optional] string ParaStyleLevel5;
13979 [property, optional] string ParaStyleLevel6;
13980 [property, optional] string ParaStyleLevel7;
13981 [property, optional] string ParaStyleLevel8;
13982 [property, optional] string ParaStyleLevel9;
13983 [property, optional] string ParaStyleLevel10;
13984 [property, optional] string ParaStyleSeparator;
13985 [property] ::com::sun::star::text::XTextColumns TextColumns;
13986 [property] string BackGraphicURL;
13987 [property] string BackGraphicFilter;
13988 [property] ::com::sun::star::style::GraphicLocation BackGraphicLocation;
13989 [property] ::com::sun::star::util::Color BackColor;
13990 [property] boolean BackTransparent;
13991 [property, optional] ::com::sun::star::container::XIndexReplace LevelFormat;
13992 [property, optional] boolean CreateFromChapter;
13993 [property] ::com::sun::star::text::XTextSection ContentSection;
13994 [property] ::com::sun::star::text::XTextSection HeaderSection;
13996 published service BaseIndexMark {
13997 service ::com::sun::star::text::TextContent;
13998 [property] string AlternativeText;
14000 published service Bibliography {
14001 service ::com::sun::star::text::BaseIndex;
14002 [property] ::com::sun::star::lang::Locale Locale;
14003 [property] string SortAlgorithm;
14005 published constants BibliographyDataField {
14006 const short ADDRESS = 2;
14007 const short ANNOTE = 3;
14008 const short AUTHOR = 4;
14009 const short BIBILIOGRAPHIC_TYPE = 1;
14010 const short BOOKTITLE = 5;
14011 const short CHAPTER = 6;
14012 const short CUSTOM1 = 25;
14013 const short CUSTOM2 = 26;
14014 const short CUSTOM3 = 27;
14015 const short CUSTOM4 = 28;
14016 const short CUSTOM5 = 29;
14017 const short EDITION = 7;
14018 const short EDITOR = 8;
14019 const short HOWPUBLISHED = 9;
14020 const short IDENTIFIER = 0;
14021 const short INSTITUTION = 10;
14022 const short ISBN = 30;
14023 const short JOURNAL = 11;
14024 const short MONTH = 12;
14025 const short NOTE = 13;
14026 const short NUMBER = 14;
14027 const short ORGANIZATIONS = 15;
14028 const short PAGES = 16;
14029 const short PUBLISHER = 17;
14030 const short REPORT_TYPE = 21;
14031 const short SCHOOL = 18;
14032 const short SERIES = 19;
14033 const short TITLE = 20;
14034 const short URL = 24;
14035 const short VOLUME = 22;
14036 const short YEAR = 23;
14038 published constants BibliographyDataType {
14039 const short ARTICLE = 0;
14040 const short BOOK = 1;
14041 const short BOOKLET = 2;
14042 const short CONFERENCE = 3;
14043 const short CUSTOM1 = 17;
14044 const short CUSTOM2 = 18;
14045 const short CUSTOM3 = 19;
14046 const short CUSTOM4 = 20;
14047 const short CUSTOM5 = 21;
14048 const short EMAIL = 15;
14049 const short INBOOK = 4;
14050 const short INCOLLECTION = 5;
14051 const short INPROCEEDINGS = 6;
14052 const short JOURNAL = 7;
14053 const short MANUAL = 8;
14054 const short MASTERSTHESIS = 9;
14055 const short MISC = 10;
14056 const short PHDTHESIS = 11;
14057 const short PROCEEDINGS = 12;
14058 const short TECHREPORT = 13;
14059 const short UNPUBLISHED = 14;
14060 const short WWW = 16;
14062 published service Bookmark {
14063 service ::com::sun::star::text::TextContent;
14064 interface ::com::sun::star::container::XNamed;
14066 published service Bookmarks {
14067 interface ::com::sun::star::container::XNameAccess;
14068 interface ::com::sun::star::container::XIndexAccess;
14070 published interface XTextSection;
14071 published service CellProperties {
14072 service ::com::sun::star::xml::UserDefinedAttributesSupplier;
14073 interface ::com::sun::star::beans::XPropertySet;
14074 [property] string CellName;
14075 [property] ::com::sun::star::util::Color BackColor;
14076 [property] string BackGraphicURL;
14077 [property] string BackGraphicFilter;
14078 [property] ::com::sun::star::style::GraphicLocation BackGraphicLocation;
14079 [property] long NumberFormat;
14080 [property] boolean BackTransparent;
14081 [property] ::com::sun::star::table::BorderLine LeftBorder;
14082 [property] ::com::sun::star::table::BorderLine RightBorder;
14083 [property] ::com::sun::star::table::BorderLine TopBorder;
14084 [property] ::com::sun::star::table::BorderLine BottomBorder;
14085 [property] long LeftBorderDistance;
14086 [property] long RightBorderDistance;
14087 [property] long TopBorderDistance;
14088 [property] long BottomBorderDistance;
14089 [property, readonly] ::com::sun::star::text::XTextSection TextSection;
14090 [property] boolean IsProtected;
14091 [property] short VertOrient;
14093 published service CellRange {
14094 service ::com::sun::star::style::CharacterProperties;
14095 service ::com::sun::star::style::CharacterPropertiesAsian;
14096 service ::com::sun::star::style::CharacterPropertiesComplex;
14097 service ::com::sun::star::style::ParagraphProperties;
14098 [optional] service ::com::sun::star::style::ParagraphPropertiesAsian;
14099 [optional] service ::com::sun::star::style::ParagraphPropertiesComplex;
14100 interface ::com::sun::star::table::XCellRange;
14101 [optional] interface ::com::sun::star::sheet::XCellRangeData;
14102 [optional] interface ::com::sun::star::chart::XChartDataArray;
14103 [property] ::com::sun::star::util::Color BackColor;
14104 [property] string BackGraphicFilter;
14105 [property] ::com::sun::star::style::GraphicLocation BackGraphicLocation;
14106 [property] string BackGraphicURL;
14107 [property] boolean BackTransparent;
14108 [property] boolean ChartColumnAsLabel;
14109 [property] boolean ChartRowAsLabel;
14110 [property] long NumberFormat;
14112 published interface XTextFrame {
14113 interface ::com::sun::star::text::XTextContent;
14114 ::com::sun::star::text::XText getText();
14116 published service TextFrame {
14117 service ::com::sun::star::text::BaseFrame;
14118 interface ::com::sun::star::text::XTextFrame;
14119 [property] long FrameHeightAbsolute;
14120 [property] long FrameWidthAbsolute;
14121 [property] byte FrameWidthPercent;
14122 [property] byte FrameHeightPercent;
14123 [property] boolean FrameIsAutomaticHeight;
14124 [property] short SizeType;
14125 [property, optional] boolean EditInReadonly;
14126 [property, optional] short WidthType;
14127 [property, optional] short WritingMode;
14128 [property, optional] boolean IsFollowingTextFlow;
14129 [property, optional] ::com::sun::star::drawing::TextVerticalAdjust TextVerticalAdjust;
14131 published service ChainedTextFrame {
14132 service ::com::sun::star::text::TextFrame;
14133 [property, maybevoid] string ChainNextName;
14134 [property, maybevoid] string ChainPrevName;
14136 published constants ChapterFormat {
14137 const short DIGIT = 4;
14138 const short NAME = 0;
14139 const short NAME_NUMBER = 2;
14140 const short NO_PREFIX_SUFFIX = 3;
14141 const short NUMBER = 1;
14143 published service ChapterNumberingRule {
14144 service ::com::sun::star::style::NumberingRule;
14145 [property] string HeadingStyleName;
14147 published constants CharacterCompressionType {
14148 const short NONE = 0;
14149 const short PUNCTUATION_AND_KANA = 2;
14150 const short PUNCTUATION_ONLY = 1;
14152 published constants ColumnSeparatorStyle {
14153 const short DASHED = 3;
14154 const short DOTTED = 2;
14155 const short NONE = 0;
14156 const short SOLID = 1;
14158 published service ContentIndex {
14159 service ::com::sun::star::text::BaseIndex;
14160 [property, optional] short Level;
14161 [property, optional] boolean CreateFromOutline;
14162 [property, optional] ::com::sun::star::container::XIndexReplace LevelParagraphStyles;
14163 [property, optional] boolean CreateFromMarks;
14165 published service ContentIndexMark {
14166 service ::com::sun::star::text::TextContent;
14167 service ::com::sun::star::text::BaseIndexMark;
14168 [property] short Level;
14170 published constants ControlCharacter {
14171 const short APPEND_PARAGRAPH = 5;
14172 const short HARD_HYPHEN = 2;
14173 const short HARD_SPACE = 4;
14174 const short LINE_BREAK = 1;
14175 const short PARAGRAPH_BREAK = 0;
14176 const short SOFT_HYPHEN = 3;
14178 /** @deprecated */ published constants DateDisplayFormat {
14179 const short DDMMMMYYYY = 5;
14180 const short DDMMMYYYY = 4;
14181 const short MMDDYY = 2;
14182 const short MMDDYYYY = 3;
14183 const short NNDDMMMMYYYY = 6;
14184 const short NNNNDDMMMMYYYY = 7;
14185 const short STANDARD_LONG = 1;
14186 const short STANDARD_SHORT = 0;
14188 published interface XDefaultNumberingProvider {
14189 interface ::com::sun::star::uno::XInterface;
14190 sequence< ::com::sun::star::container::XIndexAccess > getDefaultOutlineNumberings([in] ::com::sun::star::lang::Locale aLocale);
14191 sequence< ::com::sun::star::beans::PropertyValues > getDefaultContinuousNumberingLevels([in] ::com::sun::star::lang::Locale aLocale);
14193 published service DefaultNumberingProvider: ::com::sun::star::text::XDefaultNumberingProvider;
14194 published service Defaults {
14195 service ::com::sun::star::style::CharacterProperties;
14196 service ::com::sun::star::style::ParagraphProperties;
14197 [optional] service ::com::sun::star::style::CharacterPropertiesAsian;
14198 [optional] service ::com::sun::star::style::CharacterPropertiesComplex;
14199 [optional] service ::com::sun::star::style::ParagraphPropertiesAsian;
14200 [optional] service ::com::sun::star::style::ParagraphPropertiesComplex;
14201 interface ::com::sun::star::beans::XPropertySet;
14202 [property] long TabStopDistance;
14204 published interface XDependentTextField {
14205 interface ::com::sun::star::text::XTextField;
14206 void attachTextFieldMaster([in] ::com::sun::star::beans::XPropertySet xFieldMaster) raises (::com::sun::star::lang::IllegalArgumentException);
14207 ::com::sun::star::beans::XPropertySet getTextFieldMaster();
14209 published service DependentTextField {
14210 service ::com::sun::star::text::TextField;
14211 interface ::com::sun::star::text::XDependentTextField;
14213 published interface XDocumentIndexMark;
14214 published service DocumentIndex {
14215 service ::com::sun::star::text::BaseIndex;
14216 [property, optional] boolean UseAlphabeticalSeparators;
14217 [property, optional] boolean UseKeyAsEntry;
14218 [property, optional] boolean UseCombinedEntries;
14219 [property, optional] boolean IsCaseSensitive;
14220 [property, optional] boolean UsePP;
14221 [property, optional] boolean UseDash;
14222 [property, optional] boolean UseUpperCase;
14223 [property, optional] string MainEntryCharacterStyleName;
14224 [property, readonly] sequence< ::com::sun::star::text::XDocumentIndexMark > DocumentIndexMarks;
14225 [property] ::com::sun::star::lang::Locale Locale;
14226 [property] string SortAlgorithm;
14228 published service DocumentIndexLevelFormat {
14229 interface ::com::sun::star::container::XIndexReplace;
14231 published service DocumentIndexMark {
14232 service ::com::sun::star::text::TextContent;
14233 service ::com::sun::star::text::BaseIndexMark;
14234 [property] string PrimaryKey;
14235 [property] string SecondaryKey;
14236 [property] boolean IsMainEntry;
14238 published service DocumentIndexMarkAsian {
14239 [property] string TextReading;
14240 [property] string PrimaryKeyReading;
14241 [property] string SecondaryKeyReading;
14243 published service DocumentIndexParagraphStyles {
14244 interface ::com::sun::star::container::XIndexReplace;
14246 published service DocumentIndexes {
14247 interface ::com::sun::star::container::XNameAccess;
14248 interface ::com::sun::star::container::XIndexAccess;
14250 published enum NotePrintMode {
14251 NOT = 0,
14252 ONLY = 1,
14253 DOC_END = 2,
14254 PAGE_END = 3
14256 published service PrintSettings {
14257 [property] boolean PrintGraphics;
14258 [property] boolean PrintTables;
14259 [property] boolean PrintDrawings;
14260 [property] boolean PrintLeftPages;
14261 [property] boolean PrintRightPages;
14262 [property] boolean PrintControls;
14263 [property] boolean PrintReversed;
14264 [property] boolean PrintPaperFromSetup;
14265 [property] string PrintFaxName;
14266 [property] ::com::sun::star::text::NotePrintMode PrintAnnotationMode;
14267 [property] boolean PrintProspect;
14268 [property] boolean PrintPageBackground;
14269 [property] boolean PrintBlackFonts;
14270 [property, optional] boolean PrintEmptyPages;
14272 published service DocumentSettings {
14273 service ::com::sun::star::document::Settings;
14274 [optional] service ::com::sun::star::text::PrintSettings;
14275 interface ::com::sun::star::beans::XPropertySet;
14276 [property, optional] boolean ChartAutoUpdate;
14277 [property, optional] boolean AddParaTableSpacing;
14278 [property, optional] boolean AddParaTableSpacingAtStart;
14279 [property, optional] boolean AlignTabStopPosition;
14280 [property, optional] boolean SaveGlobalDocumentLinks;
14281 [property, optional] boolean IsLabelDocument;
14282 [property, optional] boolean UseFormerLineSpacing;
14283 [property, optional] boolean AddParaSpacingToTableCells;
14284 [property, optional] boolean UseFormerObjectPositioning;
14285 [property, optional] boolean ConsiderTextWrapOnObjPos;
14286 [property, optional] boolean MathBaselineAlignment;
14288 published constants DocumentStatistic {
14289 const short CHARS = 3;
14290 const short PAGES = 0;
14291 const short PARAS = 1;
14292 const short WORDS = 2;
14294 published interface XFootnote {
14295 interface ::com::sun::star::text::XTextContent;
14296 string getLabel();
14297 void setLabel([in] string aLabel);
14299 published service Footnote {
14300 interface ::com::sun::star::text::XFootnote;
14301 interface ::com::sun::star::text::XText;
14302 [property, optional, readonly] short ReferenceId;
14304 published service Endnote {
14305 service ::com::sun::star::text::Footnote;
14307 published service FootnoteSettings {
14308 [property] string CharStyleName;
14309 [property] short NumberingType;
14310 [property] string PageStyleName;
14311 [property] string ParaStyleName;
14312 [property] string Prefix;
14313 [property] short StartAt;
14314 [property] string Suffix;
14315 [property, optional] string BeginNotice;
14316 [property, optional] string EndNotice;
14317 [property, optional] short FootnoteCounting;
14318 [property, optional] boolean PositionEndOfDoc;
14319 [property, optional] string AnchorCharStyleName;
14321 published service EndnoteSettings {
14322 service ::com::sun::star::text::FootnoteSettings;
14324 published constants FilenameDisplayFormat {
14325 const short FULL = 0;
14326 const short NAME = 2;
14327 const short NAME_AND_EXT = 3;
14328 const short PATH = 1;
14330 published constants FontEmphasis {
14331 const short ACCENT_ABOVE = 4;
14332 const short ACCENT_BELOW = 14;
14333 const short CIRCLE_ABOVE = 2;
14334 const short CIRCLE_BELOW = 12;
14335 const short DISK_ABOVE = 3;
14336 const short DISK_BELOW = 13;
14337 const short DOT_ABOVE = 1;
14338 const short DOT_BELOW = 11;
14339 const short NONE = 0;
14341 published constants FontRelief {
14342 const short EMBOSSED = 1;
14343 const short ENGRAVED = 2;
14344 const short NONE = 0;
14346 published constants FootnoteNumbering {
14347 const short PER_CHAPTER = 1;
14348 const short PER_DOCUMENT = 2;
14349 const short PER_PAGE = 0;
14351 published service Footnotes {
14352 interface ::com::sun::star::container::XIndexAccess;
14354 published interface XBookmarksSupplier {
14355 interface ::com::sun::star::uno::XInterface;
14356 ::com::sun::star::container::XNameAccess getBookmarks();
14358 published interface XChapterNumberingSupplier {
14359 interface ::com::sun::star::uno::XInterface;
14360 ::com::sun::star::container::XIndexReplace getChapterNumberingRules();
14362 published interface XDocumentIndexesSupplier {
14363 interface ::com::sun::star::uno::XInterface;
14364 ::com::sun::star::container::XIndexAccess getDocumentIndexes();
14366 published interface XEndnotesSupplier {
14367 interface ::com::sun::star::uno::XInterface;
14368 ::com::sun::star::container::XIndexAccess getEndnotes();
14369 ::com::sun::star::beans::XPropertySet getEndnoteSettings();
14371 published interface XFootnotesSupplier {
14372 interface ::com::sun::star::uno::XInterface;
14373 ::com::sun::star::container::XIndexAccess getFootnotes();
14374 ::com::sun::star::beans::XPropertySet getFootnoteSettings();
14376 published interface XPagePrintable {
14377 interface ::com::sun::star::uno::XInterface;
14378 sequence< ::com::sun::star::beans::PropertyValue > getPagePrintSettings();
14379 void setPagePrintSettings([in] sequence< ::com::sun::star::beans::PropertyValue > aSettings);
14380 void printPages([in] sequence< ::com::sun::star::beans::PropertyValue > xOptions) raises (::com::sun::star::lang::IllegalArgumentException);
14382 published interface XReferenceMarksSupplier {
14383 interface ::com::sun::star::uno::XInterface;
14384 ::com::sun::star::container::XNameAccess getReferenceMarks();
14386 published interface XTextDocument {
14387 interface ::com::sun::star::frame::XModel;
14388 ::com::sun::star::text::XText getText();
14389 void reformat();
14391 published interface XTextEmbeddedObjectsSupplier {
14392 interface ::com::sun::star::uno::XInterface;
14393 ::com::sun::star::container::XNameAccess getEmbeddedObjects();
14395 published interface XTextFramesSupplier {
14396 interface ::com::sun::star::uno::XInterface;
14397 ::com::sun::star::container::XNameAccess getTextFrames();
14399 published interface XTextGraphicObjectsSupplier {
14400 interface ::com::sun::star::uno::XInterface;
14401 ::com::sun::star::container::XNameAccess getGraphicObjects();
14403 published interface XTextSectionsSupplier {
14404 interface ::com::sun::star::uno::XInterface;
14405 ::com::sun::star::container::XNameAccess getTextSections();
14407 published interface XTextTablesSupplier {
14408 interface ::com::sun::star::uno::XInterface;
14409 ::com::sun::star::container::XNameAccess getTextTables();
14411 published service GenericTextDocument {
14412 service ::com::sun::star::document::OfficeDocument;
14413 interface ::com::sun::star::lang::XMultiServiceFactory;
14414 interface ::com::sun::star::text::XTextDocument;
14415 interface ::com::sun::star::util::XSearchable;
14416 interface ::com::sun::star::util::XRefreshable;
14417 [optional] interface ::com::sun::star::text::XFootnotesSupplier;
14418 [optional] interface ::com::sun::star::text::XEndnotesSupplier;
14419 [optional] interface ::com::sun::star::util::XReplaceable;
14420 [optional] interface ::com::sun::star::text::XPagePrintable;
14421 [optional] interface ::com::sun::star::text::XReferenceMarksSupplier;
14422 [optional] interface ::com::sun::star::text::XChapterNumberingSupplier;
14423 [optional] interface ::com::sun::star::beans::XPropertySet;
14424 [optional] interface ::com::sun::star::text::XTextGraphicObjectsSupplier;
14425 [optional] interface ::com::sun::star::text::XTextEmbeddedObjectsSupplier;
14426 [optional] interface ::com::sun::star::text::XTextTablesSupplier;
14427 [optional] interface ::com::sun::star::style::XStyleFamiliesSupplier;
14428 [optional] interface ::com::sun::star::text::XBookmarksSupplier;
14429 [optional] interface ::com::sun::star::text::XDocumentIndexesSupplier;
14430 [optional] interface ::com::sun::star::text::XTextFieldsSupplier;
14431 [optional] interface ::com::sun::star::text::XTextFramesSupplier;
14432 [optional] interface ::com::sun::star::text::XTextSectionsSupplier;
14433 [optional] interface ::com::sun::star::util::XNumberFormatsSupplier;
14434 [property, optional] ::com::sun::star::lang::Locale CharLocale;
14435 [property, optional, readonly] long CharacterCount;
14436 [property, optional, readonly] long ParagraphCount;
14437 [property, optional, readonly] long WordCount;
14438 [property, optional] string WordSeparator;
14439 [property, optional] string IndexAutoMarkFileURL;
14440 [property, optional] boolean RecordChanges;
14441 [property, optional] short TwoDigitYear;
14444 module view {
14445 published interface XPrintSettingsSupplier {
14446 interface ::com::sun::star::uno::XInterface;
14447 ::com::sun::star::beans::XPropertySet getPrintSettings();
14449 published interface XViewSettingsSupplier {
14450 interface ::com::sun::star::uno::XInterface;
14451 ::com::sun::star::beans::XPropertySet getViewSettings();
14454 module text {
14455 published service GlobalSettings {
14456 interface ::com::sun::star::view::XPrintSettingsSupplier;
14457 interface ::com::sun::star::view::XViewSettingsSupplier;
14459 published constants HoriOrientation {
14460 const short CENTER = 2;
14461 const short FULL = 6;
14462 const short INSIDE = 4;
14463 const short LEFT = 3;
14464 const short LEFT_AND_WIDTH = 7;
14465 const short NONE = 0;
14466 const short OUTSIDE = 5;
14467 const short RIGHT = 1;
14469 published struct HoriOrientationFormat {
14470 long XPos;
14471 short HorizontalOrientation;
14472 short HorizontalRelation;
14473 boolean PositionToggle;
14475 published enum HorizontalAdjust {
14476 LEFT = 0,
14477 CENTER = 1,
14478 RIGHT = 2
14480 published service IllustrationsIndex {
14481 service ::com::sun::star::text::BaseIndex;
14482 [property, optional] boolean CreateFromLabels;
14483 [property, optional] string LabelCategory;
14484 [property, optional] short LabelDisplayType;
14486 published exception InvalidTextContentException: ::com::sun::star::uno::Exception {
14487 ::com::sun::star::text::XTextContent TextContent;
14489 published constants LabelFollow {
14490 const short LISTTAB = 0;
14491 const short NOTHING = 2;
14492 const short SPACE = 1;
14494 published service LineNumberingProperties {
14495 [property] boolean IsOn;
14496 [property] string CharStyleName;
14497 [property] boolean CountEmptyLines;
14498 [property] boolean CountLinesInFrames;
14499 [property] long Distance;
14500 [property] short Interval;
14501 [property] string SeparatorText;
14502 [property] short SeparatorInterval;
14503 [property] short NumberPosition;
14504 [property] short NumberingType;
14505 [property, optional] boolean RestartAtEachPage;
14507 published interface XMailMergeListener;
14508 published interface XMailMergeBroadcaster {
14509 interface ::com::sun::star::uno::XInterface;
14510 void addMailMergeEventListener([in] ::com::sun::star::text::XMailMergeListener xListener);
14511 void removeMailMergeEventListener([in] ::com::sun::star::text::XMailMergeListener xListener);
14513 published service MailMerge {
14514 service ::com::sun::star::sdb::DataAccessDescriptor;
14515 interface ::com::sun::star::task::XJob;
14516 interface ::com::sun::star::beans::XPropertySet;
14517 [optional] interface ::com::sun::star::util::XCancellable;
14518 [optional] interface ::com::sun::star::text::XMailMergeBroadcaster;
14519 [property] string DataSourceName;
14520 [property] long CommandType;
14521 [property] string Command;
14522 [property] ::com::sun::star::sdbc::XResultSet ResultSet;
14523 [property] ::com::sun::star::sdbc::XConnection ActiveConnection;
14524 [property] sequence< any > Selection;
14525 [property] boolean EscapeProcessing;
14526 [property] string Filter;
14527 [property] string DocumentURL;
14528 [property, readonly] ::com::sun::star::frame::XModel Model;
14529 [property] short OutputType;
14530 [property] boolean SinglePrintJobs;
14531 [property] string OutputURL;
14532 [property] boolean FileNameFromColumn;
14533 [property] string FileNamePrefix;
14534 [property, optional] string OutServerPassword;
14535 [property, optional] string InServerPassword;
14536 [property, optional] string Subject;
14537 [property, optional] string AddressFromColumn;
14538 [property, optional] boolean SendAsHTML;
14539 [property, optional] boolean SendAsAttachment;
14540 [property, optional] string MailBody;
14541 [property, optional] string AttachmentName;
14542 [property, optional] string AttachmentFilter;
14543 [property, optional] sequence< string > CopiesTo;
14544 [property, optional] sequence< string > BlindCopiesTo;
14545 [property, optional] boolean SaveAsSingleFile;
14546 [property, optional] string SaveFilter;
14547 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > PrintOptions;
14549 published struct MailMergeEvent: ::com::sun::star::lang::EventObject {
14550 ::com::sun::star::frame::XModel Model;
14552 published constants MailMergeType {
14553 const short FILE = 2;
14554 const short MAIL = 3;
14555 const short PRINTER = 1;
14556 const short SHELL = 4;
14558 published service NumberingLevel {
14559 [property] short Adjust;
14560 [property, optional] short ParentNumbering;
14561 [property] string Prefix;
14562 [property] string Suffix;
14563 [property, optional] string CharStyleName;
14564 /** @deprecated */ [property, optional] short BulletId;
14565 [property] string BulletChar;
14566 [property] string BulletFontName;
14567 [property, optional] ::com::sun::star::awt::FontDescriptor BulletFont;
14568 [property] string GraphicURL;
14569 [property, optional] ::com::sun::star::awt::XBitmap GraphicBitmap;
14570 [property, optional] ::com::sun::star::awt::Size GraphicSize;
14571 [property, optional] short VertOrient;
14572 [property, optional] short StartWith;
14573 [property] long LeftMargin;
14574 [property, optional] long SymbolTextDistance;
14575 [property] long FirstLineOffset;
14576 [property] short NumberingType;
14577 [property] string HeadingStyleName;
14578 [property, optional] string ParagraphStyleName;
14579 [property, optional] ::com::sun::star::util::Color BulletColor;
14580 [property, optional] short BulletRelSize;
14581 [property, optional] short PositionAndSpaceMode;
14582 [property, optional] short LabelFollowedBy;
14583 [property, optional] long ListtabStopPosition;
14584 [property, optional] long FirstLineIndent;
14585 [property, optional] long IndentAt;
14587 published service NumberingRules {
14588 interface ::com::sun::star::container::XIndexReplace;
14589 [optional] interface ::com::sun::star::beans::XPropertySet;
14590 [property, optional] boolean IsAbsoluteMargins;
14591 [property, optional] boolean IsAutomatic;
14592 [property, optional] boolean IsContinuousNumbering;
14593 [property, optional, readonly] string Name;
14594 [property, optional] boolean NumberingIsOutline;
14595 [property, optional] short NumberingType;
14596 [property, optional, readonly] string DefaultListId;
14598 published service NumberingStyle {
14599 service ::com::sun::star::style::Style;
14600 service ::com::sun::star::text::NumberingRules;
14602 published service ObjectIndex {
14603 service ::com::sun::star::text::BaseIndex;
14604 [property, optional] boolean CreateFromStarMath;
14605 [property, optional] boolean CreateFromStarImage;
14606 [property, optional] boolean CreateFromStarChart;
14607 [property, optional] boolean CreateFromStarCalc;
14608 [property, optional] boolean CreateFromStarDraw;
14609 [property, optional] boolean CreateFromOtherEmbeddedObjects;
14611 published service PageFootnoteInfo {
14612 [property] long FootnoteHeight;
14613 [property] long FootnoteSeparatorLineWidth;
14614 [property] long FootnoteTopDistance;
14615 [property] long FootnoteBottomDistance;
14616 [property] short FootnoteSeparatorLineWidthPercent;
14617 [property] ::com::sun::star::text::HorizontalAdjust FootnoteSeparatorLineAdjust;
14618 [property] short FootnoteSeparatorLinePenWidth;
14620 published enum PageNumberType {
14621 PREV = 0,
14622 CURRENT = 1,
14623 NEXT = 2
14625 published service PagePrintSettings {
14626 [property] short PageRows;
14627 [property] short PageColumns;
14628 [property] long LeftMargin;
14629 [property] long RightMargin;
14630 [property] long TopMargin;
14631 [property] long BottomMargin;
14632 [property] long HoriMargin;
14633 [property] long VertMargin;
14634 [property] boolean IsLandscape;
14636 published struct TableColumnSeparator {
14637 short Position;
14638 boolean IsVisible;
14640 published interface XTextTableCursor;
14641 published interface XTextTable {
14642 interface ::com::sun::star::text::XTextContent;
14643 void initialize([in] long nRows, [in] long nColumns);
14644 ::com::sun::star::table::XTableRows getRows();
14645 ::com::sun::star::table::XTableColumns getColumns();
14646 ::com::sun::star::table::XCell getCellByName([in] string aCellName);
14647 sequence< string > getCellNames();
14648 ::com::sun::star::text::XTextTableCursor createCursorByCellName([in] string aCellName);
14650 published service TextTable {
14651 service ::com::sun::star::text::TextContent;
14652 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
14653 interface ::com::sun::star::text::XTextTable;
14654 interface ::com::sun::star::container::XNamed;
14655 interface ::com::sun::star::table::XCellRange;
14656 interface ::com::sun::star::chart::XChartDataArray;
14657 interface ::com::sun::star::table::XAutoFormattable;
14658 interface ::com::sun::star::util::XSortable;
14659 [optional] interface ::com::sun::star::sheet::XCellRangeData;
14660 [property] ::com::sun::star::style::BreakType BreakType;
14661 [property] long LeftMargin;
14662 [property] long RightMargin;
14663 [property] short HoriOrient;
14664 [property] boolean KeepTogether;
14665 [property] boolean Split;
14666 [property] short PageNumberOffset;
14667 [property] string PageDescName;
14668 [property] short RelativeWidth;
14669 [property] boolean IsWidthRelative;
14670 [property] boolean RepeatHeadline;
14671 [property, optional] long HeaderRowCount;
14672 [property] ::com::sun::star::table::ShadowFormat ShadowFormat;
14673 [property] long TopMargin;
14674 [property] long BottomMargin;
14675 [property] boolean BackTransparent;
14676 [property] long Width;
14677 [property] boolean ChartRowAsLabel;
14678 [property] boolean ChartColumnAsLabel;
14679 [property] ::com::sun::star::table::TableBorder TableBorder;
14680 [property] sequence< ::com::sun::star::text::TableColumnSeparator > TableColumnSeparators;
14681 [property] short TableColumnRelativeSum;
14682 [property] ::com::sun::star::util::Color BackColor;
14683 [property] string BackGraphicURL;
14684 [property] string BackGraphicFilter;
14685 [property] ::com::sun::star::style::GraphicLocation BackGraphicLocation;
14686 [property, optional] boolean CollapsingBorders;
14687 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > TableInteropGrabBag;
14689 published service Paragraph {
14690 service ::com::sun::star::text::TextContent;
14691 [optional] service ::com::sun::star::style::ParagraphProperties;
14692 [optional] service ::com::sun::star::style::ParagraphPropertiesAsian;
14693 [optional] service ::com::sun::star::style::ParagraphPropertiesComplex;
14694 [optional] service ::com::sun::star::style::CharacterProperties;
14695 [optional] service ::com::sun::star::style::CharacterPropertiesAsian;
14696 [optional] service ::com::sun::star::style::CharacterPropertiesComplex;
14697 [optional] service ::com::sun::star::text::TextTable;
14698 interface ::com::sun::star::beans::XPropertySet;
14699 interface ::com::sun::star::beans::XPropertyState;
14700 interface ::com::sun::star::container::XEnumerationAccess;
14701 [optional] interface ::com::sun::star::beans::XTolerantMultiPropertySet;
14703 published service ParagraphEnumeration {
14704 interface ::com::sun::star::container::XEnumeration;
14706 published constants ParagraphVertAlign {
14707 const short AUTOMATIC = 0;
14708 const short BASELINE = 1;
14709 const short BOTTOM = 4;
14710 const short CENTER = 3;
14711 const short TOP = 2;
14713 published constants PlaceholderType {
14714 const short GRAPHIC = 3;
14715 const short OBJECT = 4;
14716 const short TABLE = 1;
14717 const short TEXT = 0;
14718 const short TEXTFRAME = 2;
14720 published constants PositionAndSpaceMode {
14721 const short LABEL_ALIGNMENT = 1;
14722 const short LABEL_WIDTH_AND_POSITION = 0;
14724 published service TextPortion {
14725 service ::com::sun::star::text::TextRange;
14726 [optional] interface ::com::sun::star::container::XContentEnumerationAccess;
14727 [optional] interface ::com::sun::star::beans::XTolerantMultiPropertySet;
14728 [property, readonly] string TextPortionType;
14729 /** @deprecated */ [property, readonly] short ControlCharacter;
14730 [property, optional, readonly] ::com::sun::star::text::XTextContent Bookmark;
14731 [property, optional, readonly] ::com::sun::star::text::XTextContent DocumentIndexMark;
14732 [property, optional, readonly] ::com::sun::star::text::XTextContent ReferenceMark;
14733 [property, optional, readonly] ::com::sun::star::text::XFootnote Footnote;
14734 [property, optional, readonly] ::com::sun::star::text::XTextField TextField;
14735 [property, optional, readonly] ::com::sun::star::text::XTextContent InContentMetadata;
14736 [property, optional, readonly] boolean IsCollapsed;
14737 [property, optional, readonly] boolean IsStart;
14739 published service RedlinePortion {
14740 service ::com::sun::star::text::TextPortion;
14741 [property, readonly] string RedlineAuthor;
14742 [property, readonly] ::com::sun::star::util::DateTime RedlineDateTime;
14743 [property, readonly] string RedlineComment;
14744 [property, readonly] string RedlineType;
14745 [property, readonly] ::com::sun::star::beans::PropertyValues RedlineSuccessorData;
14746 [property, readonly] string RedlineIdentifier;
14747 [property, readonly] boolean IsInHeaderFooter;
14748 [property, readonly] ::com::sun::star::text::XText RedlineText;
14749 [property, readonly] boolean MergeLastPara;
14751 published constants ReferenceFieldPart {
14752 const short CATEGORY_AND_NUMBER = 5;
14753 const short CHAPTER = 1;
14754 const short NUMBER = 8;
14755 const short NUMBER_FULL_CONTEXT = 10;
14756 const short NUMBER_NO_CONTEXT = 9;
14757 const short ONLY_CAPTION = 6;
14758 const short ONLY_SEQUENCE_NUMBER = 7;
14759 const short PAGE = 0;
14760 const short PAGE_DESC = 4;
14761 const short TEXT = 2;
14762 const short UP_DOWN = 3;
14764 published constants ReferenceFieldSource {
14765 const short BOOKMARK = 2;
14766 const short ENDNOTE = 4;
14767 const short FOOTNOTE = 3;
14768 const short REFERENCE_MARK = 0;
14769 const short SEQUENCE_FIELD = 1;
14771 published service ReferenceMark {
14772 interface ::com::sun::star::text::XTextContent;
14773 interface ::com::sun::star::container::XNamed;
14775 published service ReferenceMarks {
14776 interface ::com::sun::star::container::XIndexAccess;
14777 interface ::com::sun::star::container::XNameAccess;
14779 published constants RelOrientation {
14780 const short CHAR = 2;
14781 const short FRAME = 0;
14782 const short FRAME_LEFT = 5;
14783 const short FRAME_RIGHT = 6;
14784 const short PAGE_FRAME = 7;
14785 const short PAGE_LEFT = 3;
14786 const short PAGE_PRINT_AREA = 8;
14787 const short PAGE_RIGHT = 4;
14788 const short PRINT_AREA = 1;
14789 const short TEXT_LINE = 9;
14791 published enum RubyAdjust {
14792 LEFT = 0,
14793 CENTER = 1,
14794 RIGHT = 2,
14795 BLOCK = 3,
14796 INDENT_BLOCK = 4
14798 published struct SectionFileLink {
14799 string FileURL;
14800 string FilterName;
14802 published constants SetVariableType {
14803 const short FORMULA = 2;
14804 const short SEQUENCE = 1;
14805 const short STRING = 3;
14806 const short VAR = 0;
14808 published service Shape {
14809 service ::com::sun::star::drawing::Shape;
14810 [property] short AnchorPageNo;
14811 [property] ::com::sun::star::text::XTextFrame AnchorFrame;
14812 [property, optional] ::com::sun::star::text::TextContentAnchorType AnchorType;
14813 [property] short HoriOrient;
14814 [property] long HoriOrientPosition;
14815 [property] short HoriOrientRelation;
14816 [property] short VertOrient;
14817 [property] long VertOrientPosition;
14818 [property] short VertOrientRelation;
14819 [property] long LeftMargin;
14820 [property] long RightMargin;
14821 [property] long TopMargin;
14822 [property] long BottomMargin;
14823 /** @deprecated */ [property] ::com::sun::star::text::WrapTextMode Surround;
14824 [property] boolean SurroundAnchorOnly;
14825 [property] boolean SurroundContour;
14826 [property] boolean ContourOutside;
14827 [property] boolean Opaque;
14828 [property] ::com::sun::star::text::XTextRange TextRange;
14829 [property, optional] short WrapInfluenceOnPosition;
14830 [property, optional, readonly] ::com::sun::star::drawing::HomogenMatrix3 TransformationInHoriL2R;
14831 [property, optional] short PositionLayoutDir;
14832 [property, optional, readonly] ::com::sun::star::awt::Point StartPositionInHoriL2R;
14833 [property, optional, readonly] ::com::sun::star::awt::Point EndPositionInHoriL2R;
14835 published constants SizeType {
14836 const short FIX = 1;
14837 const short MIN = 2;
14838 const short VARIABLE = 0;
14840 published service TableColumns {
14841 interface ::com::sun::star::table::XTableColumns;
14843 published service TableIndex {
14844 service ::com::sun::star::text::BaseIndex;
14845 [property, optional] boolean CreateFromLabels;
14846 [property, optional] string LabelCategory;
14847 [property, optional] short LabelDisplayType;
14849 published service TableRows {
14850 interface ::com::sun::star::table::XTableRows;
14852 published constants TemplateDisplayFormat {
14853 const short AREA = 4;
14854 const short FULL = 0;
14855 const short NAME = 2;
14856 const short NAME_AND_EXT = 3;
14857 const short PATH = 1;
14858 const short TITLE = 5;
14860 published struct TextColumn {
14861 long Width;
14862 long LeftMargin;
14863 long RightMargin;
14865 published typedef sequence< ::com::sun::star::text::TextColumn > TextColumnSequence;
14866 published interface XTextColumns {
14867 interface ::com::sun::star::uno::XInterface;
14868 long getReferenceValue();
14869 short getColumnCount();
14870 void setColumnCount([in] short nColumns);
14871 sequence< ::com::sun::star::text::TextColumn > getColumns();
14872 void setColumns([in] sequence< ::com::sun::star::text::TextColumn > Columns);
14874 published service TextColumns {
14875 interface ::com::sun::star::text::XTextColumns;
14876 [property, readonly] boolean IsAutomatic;
14877 [property] long AutomaticDistance;
14878 [property] long SeparatorLineWidth;
14879 [property] ::com::sun::star::util::Color SeparatorLineColor;
14880 [property] long SeparatorLineRelativeHeight;
14881 [property] ::com::sun::star::style::VerticalAlignment SeparatorLineVerticalAlignment;
14882 [property] boolean SeparatorLineIsOn;
14883 [property, optional] short SeparatorLineStyle;
14885 published service TextContentCollection {
14886 interface ::com::sun::star::container::XNameAccess;
14887 interface ::com::sun::star::container::XContainer;
14889 published interface XTextCursor {
14890 interface ::com::sun::star::text::XTextRange;
14891 void collapseToStart();
14892 void collapseToEnd();
14893 boolean isCollapsed();
14894 boolean goLeft([in] short nCount, [in] boolean bExpand);
14895 boolean goRight([in] short nCount, [in] boolean bExpand);
14896 void gotoStart([in] boolean bExpand);
14897 void gotoEnd([in] boolean bExpand);
14898 void gotoRange([in] ::com::sun::star::text::XTextRange xRange, [in] boolean bExpand);
14900 published interface XParagraphCursor {
14901 interface ::com::sun::star::text::XTextCursor;
14902 boolean isStartOfParagraph();
14903 boolean isEndOfParagraph();
14904 boolean gotoStartOfParagraph([in] boolean bExpand);
14905 boolean gotoEndOfParagraph([in] boolean bExpand);
14906 boolean gotoNextParagraph([in] boolean bExpand);
14907 boolean gotoPreviousParagraph([in] boolean bExpand);
14909 published interface XSentenceCursor {
14910 interface ::com::sun::star::text::XTextCursor;
14911 boolean isStartOfSentence();
14912 boolean isEndOfSentence();
14913 boolean gotoNextSentence([in] boolean Expand);
14914 boolean gotoPreviousSentence([in] boolean Expand);
14915 boolean gotoStartOfSentence([in] boolean Expand);
14916 boolean gotoEndOfSentence([in] boolean Expand);
14918 published interface XWordCursor {
14919 interface ::com::sun::star::text::XTextCursor;
14920 boolean isStartOfWord();
14921 boolean isEndOfWord();
14922 boolean gotoNextWord([in] boolean bExpand);
14923 boolean gotoPreviousWord([in] boolean bExpand);
14924 boolean gotoEndOfWord([in] boolean bExpand);
14925 boolean gotoStartOfWord([in] boolean bExpand);
14927 published service TextCursor {
14928 service ::com::sun::star::text::TextRange;
14929 interface ::com::sun::star::text::XTextCursor;
14930 interface ::com::sun::star::beans::XPropertySet;
14931 interface ::com::sun::star::beans::XPropertyState;
14932 interface ::com::sun::star::beans::XMultiPropertyStates;
14933 [optional] interface ::com::sun::star::text::XWordCursor;
14934 [optional] interface ::com::sun::star::text::XSentenceCursor;
14935 [optional] interface ::com::sun::star::text::XParagraphCursor;
14936 [optional] interface ::com::sun::star::document::XDocumentInsertable;
14937 [optional] interface ::com::sun::star::util::XSortable;
14939 published service TextDocument {
14940 service ::com::sun::star::text::GenericTextDocument;
14942 published interface XTextViewCursor;
14943 published interface XTextViewCursorSupplier {
14944 interface ::com::sun::star::uno::XInterface;
14945 ::com::sun::star::text::XTextViewCursor getViewCursor();
14948 module view {
14949 published service OfficeDocumentView {
14950 interface ::com::sun::star::view::XSelectionSupplier;
14951 [optional] interface ::com::sun::star::view::XViewSettingsSupplier;
14952 [optional] interface ::com::sun::star::view::XControlAccess;
14955 module text {
14956 published service TextDocumentView {
14957 service ::com::sun::star::view::OfficeDocumentView;
14958 interface ::com::sun::star::view::XViewSettingsSupplier;
14959 interface ::com::sun::star::text::XTextViewCursorSupplier;
14960 [optional] interface ::com::sun::star::beans::XPropertySet;
14961 [property, optional, readonly] long PageCount;
14962 [property, optional, readonly] long LineCount;
14963 [property, optional] boolean IsConstantSpellcheck;
14964 [property, optional] boolean IsHideSpellMarks;
14966 published service TextEmbeddedObject {
14967 service ::com::sun::star::text::BaseFrame;
14968 interface ::com::sun::star::document::XEmbeddedObjectSupplier;
14969 [property] string CLSID;
14970 [property, maybevoid, readonly] ::com::sun::star::frame::XModel Model;
14971 [property, maybevoid, readonly] ::com::sun::star::lang::XComponent Component;
14973 published service TextEmbeddedObjects {
14974 interface ::com::sun::star::container::XNameAccess;
14975 interface ::com::sun::star::container::XIndexAccess;
14977 published service TextFieldEnumeration {
14978 interface ::com::sun::star::container::XEnumeration;
14980 published service TextFieldMaster {
14981 [optional] interface ::com::sun::star::beans::XPropertySet;
14982 [property, optional] string Name;
14983 [property, readonly] sequence< ::com::sun::star::text::XDependentTextField > DependentTextFields;
14984 [property, readonly] string InstanceName;
14986 published service TextFieldMasters {
14987 interface ::com::sun::star::container::XNameAccess;
14989 published service TextFields {
14990 interface ::com::sun::star::container::XEnumerationAccess;
14991 interface ::com::sun::star::util::XRefreshable;
14993 published service TextFrames {
14994 interface ::com::sun::star::container::XNameAccess;
14995 interface ::com::sun::star::container::XIndexAccess;
14996 [optional] interface ::com::sun::star::container::XContainer;
14998 published service TextGraphicObject {
14999 service ::com::sun::star::text::BaseFrame;
15000 [property] ::com::sun::star::container::XIndexContainer ImageMap;
15001 [property] boolean ContentProtected;
15002 [property] boolean SurroundContour;
15003 [property] boolean ContourOutside;
15004 [property, optional] ::com::sun::star::drawing::PointSequenceSequence ContourPolyPolygon;
15005 [property] ::com::sun::star::text::GraphicCrop GraphicCrop;
15006 [property] boolean HoriMirroredOnEvenPages;
15007 [property] boolean HoriMirroredOnOddPages;
15008 [property] boolean VertMirrored;
15009 [property] string GraphicURL;
15010 [property] string GraphicFilter;
15011 [property] ::com::sun::star::awt::Size ActualSize;
15012 [property] short AdjustLuminance;
15013 [property] short AdjustContrast;
15014 [property] short AdjustRed;
15015 [property] short AdjustGreen;
15016 [property] short AdjustBlue;
15017 [property] double Gamma;
15018 [property] boolean GraphicIsInverted;
15019 [property] short Transparency;
15020 [property] ::com::sun::star::drawing::ColorMode GraphicColorMode;
15021 [property, optional] ::com::sun::star::graphic::XGraphic Graphic;
15023 published service TextGraphicObjects {
15024 interface ::com::sun::star::container::XNameAccess;
15025 interface ::com::sun::star::container::XIndexAccess;
15027 published constants TextGridMode {
15028 const short LINES = 1;
15029 const short LINES_AND_CHARS = 2;
15030 const short NONE = 0;
15032 published interface XPageCursor {
15033 interface ::com::sun::star::uno::XInterface;
15034 boolean jumpToFirstPage();
15035 boolean jumpToLastPage();
15036 boolean jumpToPage([in] short nPage);
15037 short getPage();
15038 boolean jumpToNextPage();
15039 boolean jumpToPreviousPage();
15040 boolean jumpToEndOfPage();
15041 boolean jumpToStartOfPage();
15043 published service TextLayoutCursor {
15044 service ::com::sun::star::text::TextCursor;
15045 interface ::com::sun::star::text::XPageCursor;
15047 published service TextPageStyle {
15048 [property] boolean RegisterModeActive;
15049 [property] string RegisterParagraphStyle;
15050 [property] ::com::sun::star::text::XTextColumns TextColumns;
15051 [property] ::com::sun::star::text::XText HeaderText;
15052 [property] ::com::sun::star::text::XText HeaderTextLeft;
15053 [property] ::com::sun::star::text::XText HeaderTextRight;
15054 [property, optional] ::com::sun::star::text::XText HeaderTextFirst;
15055 [property] ::com::sun::star::text::XText FooterText;
15056 [property] ::com::sun::star::text::XText FooterTextLeft;
15057 [property] ::com::sun::star::text::XText FooterTextRight;
15058 [property, optional] ::com::sun::star::text::XText FooterTextFirst;
15059 [property] long FootnoteHeight;
15060 [property] short FootnoteLineWeight;
15061 [property] ::com::sun::star::util::Color FootnoteLineColor;
15062 [property] byte FootnoteLineRelativeWidth;
15063 [property] short FootnoteLineAdjust;
15064 [property] long FootnoteLineTextDistance;
15065 [property] long FootnoteLineDistance;
15067 published service TextPortionEnumeration {
15068 interface ::com::sun::star::container::XEnumeration;
15070 published service TextRanges {
15071 interface ::com::sun::star::container::XIndexAccess;
15073 published interface XTextSection {
15074 interface ::com::sun::star::text::XTextContent;
15075 ::com::sun::star::text::XTextSection getParentSection();
15076 sequence< ::com::sun::star::text::XTextSection > getChildSections();
15078 published service TextSection {
15079 service ::com::sun::star::text::TextContent;
15080 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
15081 interface ::com::sun::star::text::XTextSection;
15082 interface ::com::sun::star::container::XNamed;
15083 interface ::com::sun::star::beans::XPropertySet;
15084 interface ::com::sun::star::beans::XPropertyState;
15085 [property] string Condition;
15086 [property] boolean IsVisible;
15087 [property] boolean IsProtected;
15088 [property] ::com::sun::star::text::SectionFileLink FileLink;
15089 [property] string LinkRegion;
15090 [property] string DDECommandType;
15091 [property] string DDECommandFile;
15092 [property] string DDECommandElement;
15093 [property] string BackGraphicURL;
15094 [property] string BackGraphicFilter;
15095 [property] ::com::sun::star::style::GraphicLocation BackGraphicLocation;
15096 [property] boolean FootnoteIsCollectAtTextEnd;
15097 [property] boolean FootnoteIsRestartNumbering;
15098 [property] short FootnoteRestartNumberingAt;
15099 [property] boolean FootnoteIsOwnNumbering;
15100 [property] short FootnoteNumberingType;
15101 [property] string FootnoteNumberingPrefix;
15102 [property] string FootnoteNumberingSuffix;
15103 [property] boolean EndnoteIsCollectAtTextEnd;
15104 [property] boolean EndnoteIsRestartNumbering;
15105 [property] short EndnoteRestartNumberingAt;
15106 [property] boolean EndnoteIsOwnNumbering;
15107 [property] short EndnoteNumberingType;
15108 [property] string EndnoteNumberingPrefix;
15109 [property] string EndnoteNumberingSuffix;
15110 [property] boolean IsAutomaticUpdate;
15111 [property] ::com::sun::star::text::XTextColumns TextColumns;
15112 [property, optional] long SectionLeftMargin;
15113 [property, optional] long SectionRightMargin;
15115 published service TextSections {
15116 interface ::com::sun::star::container::XIndexAccess;
15117 interface ::com::sun::star::container::XNameAccess;
15119 /** @deprecated */ published service TextSortDescriptor {
15120 service ::com::sun::star::util::SortDescriptor;
15121 [property] char Delimiter;
15122 [property] boolean IsSortInTable;
15123 [property] long SortRowOrColumnNo0;
15124 [property] boolean IsSortNumeric0;
15125 [property] boolean IsSortAscending0;
15126 [property] long SortRowOrColumnNo1;
15127 [property] boolean IsSortNumeric1;
15128 [property] boolean IsSortAscending1;
15129 [property] long SortRowOrColumnNo2;
15130 [property] boolean IsSortNumeric2;
15131 [property] boolean IsSortAscending2;
15133 published service TextSortDescriptor2 {
15134 service ::com::sun::star::table::TableSortDescriptor2;
15135 [property] boolean IsSortInTable;
15136 [property] char Delimiter;
15138 /** @deprecated */ published service TextSortable {
15139 interface ::com::sun::star::util::XSortable;
15141 published interface XTextTableCursor {
15142 interface ::com::sun::star::uno::XInterface;
15143 string getRangeName();
15144 boolean gotoCellByName([in] string aCellName, [in] boolean bExpand);
15145 boolean goLeft([in] short nCount, [in] boolean bExpand);
15146 boolean goRight([in] short nCount, [in] boolean bExpand);
15147 boolean goUp([in] short nCount, [in] boolean bExpand);
15148 boolean goDown([in] short nCount, [in] boolean bExpand);
15149 void gotoStart([in] boolean bExpand);
15150 void gotoEnd([in] boolean bExpand);
15151 boolean mergeRange();
15152 boolean splitRange([in] short nCount, [in] boolean bHorizontal);
15154 published service TextTableCursor {
15155 service ::com::sun::star::style::CharacterProperties;
15156 service ::com::sun::star::style::CharacterPropertiesAsian;
15157 service ::com::sun::star::style::CharacterPropertiesComplex;
15158 service ::com::sun::star::style::ParagraphProperties;
15159 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
15160 interface ::com::sun::star::text::XTextTableCursor;
15161 interface ::com::sun::star::beans::XPropertySet;
15163 published service TextTableRow {
15164 interface ::com::sun::star::beans::XPropertySet;
15165 [property] ::com::sun::star::util::Color BackColor;
15166 [property] boolean BackTransparent;
15167 [property] string BackGraphicURL;
15168 [property] string BackGraphicFilter;
15169 [property] ::com::sun::star::style::GraphicLocation BackGraphicLocation;
15170 [property] sequence< ::com::sun::star::text::TableColumnSeparator > TableColumnSeparators;
15171 [property] long Height;
15172 [property] boolean IsAutoHeight;
15173 [property, maybevoid, optional] boolean IsSplitAllowed;
15174 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > RowInteropGrabBag;
15176 published service TextTables {
15177 interface ::com::sun::star::container::XIndexAccess;
15178 interface ::com::sun::star::container::XNameAccess;
15181 module view {
15182 published interface XScreenCursor {
15183 interface ::com::sun::star::uno::XInterface;
15184 boolean screenDown();
15185 boolean screenUp();
15188 module text {
15189 published service TextViewCursor {
15190 service ::com::sun::star::text::TextLayoutCursor;
15191 interface ::com::sun::star::view::XScreenCursor;
15193 /** @deprecated */ published constants TimeDisplayFormat {
15194 const short HHMM = 1;
15195 const short HHMMAMPM = 4;
15196 const short HHMMSS = 2;
15197 const short HHMMSS00 = 3;
15198 const short HHMMSS00AMPM = 6;
15199 const short HHMMSSAMPM = 5;
15200 const short STANDARD = 0;
15202 published constants UserDataPart {
15203 const short CITY = 7;
15204 const short COMPANY = 0;
15205 const short COUNTRY = 5;
15206 const short EMAIL = 13;
15207 const short FAX = 12;
15208 const short FIRSTNAME = 1;
15209 const short NAME = 2;
15210 const short PHONE_COMPANY = 11;
15211 const short PHONE_PRIVATE = 10;
15212 const short POSITION = 9;
15213 const short SHORTCUT = 3;
15214 const short STATE = 14;
15215 const short STREET = 4;
15216 const short TITLE = 8;
15217 const short ZIP = 6;
15219 published interface XDocumentIndexMark;
15220 published service UserDefinedIndex {
15221 service ::com::sun::star::text::BaseIndex;
15222 [property, optional] ::com::sun::star::container::XIndexReplace LevelParagraphStyles;
15223 [property, optional] boolean CreateFromMarks;
15224 [property, optional] boolean UseLevelFromSource;
15225 [property, optional] boolean CreateFromTables;
15226 [property, optional] boolean CreateFromTextFrames;
15227 [property, optional] boolean CreateFromGraphicObjects;
15228 [property, optional] boolean CreateFromEmbeddedObjects;
15229 [property, readonly] sequence< ::com::sun::star::text::XDocumentIndexMark > DocumentIndexMarks;
15231 published constants UserFieldFormat {
15232 const short NUM = 2;
15233 const short SYSTEM = 0;
15234 const short TEXT = 1;
15236 published service UserIndex {
15237 service ::com::sun::star::text::BaseIndex;
15238 [property, optional] ::com::sun::star::container::XIndexReplace LevelParagraphStyles;
15239 [property, optional] boolean CreateFromMarks;
15240 [property, optional] boolean UseLevelFromSource;
15241 [property, optional] boolean CreateFromTables;
15242 [property, optional] boolean CreateFromTextFrames;
15243 [property, optional] boolean CreateFromGraphicObjects;
15244 [property, optional] boolean CreateFromEmbeddedObjects;
15245 [property] string UserIndexName;
15247 published service UserIndexMark {
15248 service ::com::sun::star::text::TextContent;
15249 service ::com::sun::star::text::BaseIndexMark;
15250 [property] string UserIndexName;
15252 published constants VertOrientation {
15253 const short BOTTOM = 3;
15254 const short CENTER = 2;
15255 const short CHAR_BOTTOM = 6;
15256 const short CHAR_CENTER = 5;
15257 const short CHAR_TOP = 4;
15258 const short LINE_BOTTOM = 9;
15259 const short LINE_CENTER = 8;
15260 const short LINE_TOP = 7;
15261 const short NONE = 0;
15262 const short TOP = 1;
15264 published struct VertOrientationFormat {
15265 long YPos;
15266 short VerticalOrientation;
15267 short VerticalRelation;
15269 published service ViewSettings {
15270 interface ::com::sun::star::beans::XPropertySet;
15271 [property] boolean ShowAnnotations;
15272 [property] boolean ShowBreaks;
15273 [property] boolean ShowDrawings;
15274 [property] boolean ShowFieldCommands;
15275 [property] boolean ShowFootnoteBackground;
15276 [property] boolean ShowGraphics;
15277 [property] boolean ShowHiddenParagraphs;
15278 [property] boolean ShowHiddenText;
15279 [property] boolean ShowRulers;
15280 [property] boolean ShowHoriRuler;
15281 [property] boolean ShowHoriScrollBar;
15282 [property] boolean ShowIndexMarkBackground;
15283 [property] boolean ShowParaBreaks;
15284 [property] boolean ShowProtectedSpaces;
15285 [property] boolean ShowSoftHyphens;
15286 [property] boolean ShowSpaces;
15287 [property] boolean ShowTableBoundaries;
15288 [property] boolean ShowTables;
15289 [property] boolean ShowTabstops;
15290 [property] boolean ShowTextBoundaries;
15291 [property] boolean ShowTextFieldBackground;
15292 [property] boolean ShowVertRuler;
15293 [property] boolean ShowVertScrollBar;
15294 [property] boolean SmoothScrolling;
15295 [property] boolean IsVertRulerRightAligned;
15296 [property] boolean ShowOnlineLayout;
15297 [property] short ZoomType;
15298 [property] short ZoomValue;
15299 [property, optional] boolean IsExecuteHyperlinks;
15300 [property, optional] boolean IsRasterVisible;
15301 [property, optional] boolean IsSnapToRaster;
15302 [property, optional] long RasterSubdivisionX;
15303 [property, optional] long RasterSubdivisionY;
15304 [property, optional] long RasterResolutionX;
15305 [property, optional] long RasterResolutionY;
15306 [property, optional] boolean ShowHiddenCharacters;
15307 [property, optional] boolean ShowNonprintingCharacters;
15308 [property, optional] long HorizontalRulerMetric;
15309 [property, optional] long VerticalRulerMetric;
15310 [property, optional] boolean ShowContentTips;
15311 [property, optional] boolean ShowScrollBarTips;
15313 published constants WritingMode2 {
15314 const short CONTEXT = 4;
15315 const short LR_TB = 0;
15316 /** @deprecated */ const short PAGE = 4;
15317 const short RL_TB = 1;
15318 const short TB_LR = 3;
15319 const short TB_RL = 2;
15321 published interface XBookmarkInsertTool {
15322 interface ::com::sun::star::uno::XInterface;
15323 ::com::sun::star::text::XTextContent insertNewBookmark([in] ::com::sun::star::text::XTextRange xTextRange, [in] string aName);
15325 published interface XDocumentIndexMark {
15326 interface ::com::sun::star::text::XTextContent;
15327 string getMarkEntry();
15328 void setMarkEntry([in] string aIndexEntry);
15330 published interface XEndnotesSettingsSupplier {
15331 interface ::com::sun::star::uno::XInterface;
15332 ::com::sun::star::beans::XPropertySet getEndnotesSettings();
15334 published interface XFootnotesSettingsSupplier {
15335 interface ::com::sun::star::uno::XInterface;
15336 ::com::sun::star::beans::XPropertySet getFootnotesSettings();
15338 published interface XLineNumberingProperties {
15339 interface ::com::sun::star::uno::XInterface;
15340 ::com::sun::star::beans::XPropertySet getLineNumberingProperties();
15342 published interface XMailMergeListener {
15343 interface ::com::sun::star::uno::XInterface;
15344 void notifyMailMergeEvent([in] ::com::sun::star::text::MailMergeEvent aEvent);
15346 published interface XNumberingFormatter {
15347 interface ::com::sun::star::uno::XInterface;
15348 string makeNumberingString([in] sequence< ::com::sun::star::beans::PropertyValue > aProperties, [in] ::com::sun::star::lang::Locale aLocale) raises (::com::sun::star::lang::IllegalArgumentException);
15350 published interface XNumberingRulesSupplier {
15351 interface ::com::sun::star::uno::XInterface;
15352 ::com::sun::star::container::XIndexAccess getNumberingRules();
15354 published interface XNumberingTypeInfo {
15355 interface ::com::sun::star::uno::XInterface;
15356 sequence< short > getSupportedNumberingTypes();
15357 short getNumberingType([in] string NumberingIdentifier);
15358 boolean hasNumberingType([in] string NumberingIdentifier);
15359 string getNumberingIdentifier([in] short NumberingType);
15361 published interface XRedline {
15362 interface ::com::sun::star::uno::XInterface;
15363 void makeRedline([in] string RedlineType, [in] ::com::sun::star::beans::PropertyValues RedlineProperties) raises (::com::sun::star::lang::IllegalArgumentException);
15365 /** @deprecated */ published interface XRelativeTextContentRemove {
15366 interface ::com::sun::star::uno::XInterface;
15367 void removeTextContentBefore([in] ::com::sun::star::text::XTextContent xSuccessor) raises (::com::sun::star::lang::IllegalArgumentException);
15368 void removeTextContentAfter([in] ::com::sun::star::text::XTextContent xPredecessor) raises (::com::sun::star::lang::IllegalArgumentException);
15370 published interface XRubySelection {
15371 interface ::com::sun::star::uno::XInterface;
15372 sequence< ::com::sun::star::beans::PropertyValues > getRubyList([in] boolean Automatic);
15373 void setRubyList([in] sequence< ::com::sun::star::beans::PropertyValues > RubyList, [in] boolean Automatic);
15375 published interface XTextCopy {
15376 interface ::com::sun::star::uno::XInterface;
15377 void copyText([in] ::com::sun::star::text::XTextCopy xSource);
15379 published interface XTextShapesSupplier {
15380 interface ::com::sun::star::uno::XInterface;
15381 ::com::sun::star::container::XIndexAccess getShapes();
15383 published interface XTextViewCursor {
15384 interface ::com::sun::star::text::XTextCursor;
15385 boolean isVisible();
15386 void setVisible([in] boolean bVisible);
15387 ::com::sun::star::awt::Point getPosition();
15389 module fieldmaster {
15390 published service Bibliography {
15391 service ::com::sun::star::text::TextFieldMaster;
15392 [property] boolean IsNumberEntries;
15393 [property] boolean IsSortByPosition;
15394 [property] string BracketBefore;
15395 [property] string BracketAfter;
15396 [property] sequence< ::com::sun::star::beans::PropertyValues > SortKeys;
15397 [property] ::com::sun::star::lang::Locale Locale;
15398 [property] string SortAlgorithm;
15400 published service DDE {
15401 service ::com::sun::star::text::TextFieldMaster;
15402 [property] string DDECommandElement;
15403 [property] string DDECommandFile;
15404 [property] string DDECommandType;
15405 [property] boolean IsAutomaticUpdate;
15406 [property, optional] string Content;
15408 published service Database {
15409 service ::com::sun::star::text::TextFieldMaster;
15410 [property] string DataBaseName;
15411 [property] long CommandType;
15412 [property] string DataTableName;
15413 [property] string DataColumnName;
15414 [property, optional] string DataBaseURL;
15415 [property, optional] string DataBaseResource;
15416 [property, optional] string Name;
15418 published service SetExpression {
15419 service ::com::sun::star::text::TextFieldMaster;
15420 [property] byte ChapterNumberingLevel;
15421 [property] string NumberingSeparator;
15422 [property] short SubType;
15424 published service User {
15425 service ::com::sun::star::text::TextFieldMaster;
15426 [property] boolean IsExpression;
15427 [property] double Value;
15428 [property] string Content;
15431 module textfield {
15432 published service Annotation {
15433 service ::com::sun::star::text::TextField;
15434 [property] string Author;
15435 [property, optional] string Initials;
15436 [property, optional] string Name;
15437 [property] string Content;
15438 [property] ::com::sun::star::util::Date Date;
15439 [property, optional] ::com::sun::star::util::DateTime DateTimeValue;
15441 published service Author {
15442 service ::com::sun::star::text::TextField;
15443 [property, optional] boolean IsFixed;
15444 [property, optional] string Content;
15445 [property, optional] short AuthorFormat;
15446 [property, optional] string CurrentPresentation;
15447 [property, optional] boolean FullName;
15449 published service Bibliography {
15450 service ::com::sun::star::text::DependentTextField;
15451 [property] sequence< ::com::sun::star::beans::PropertyValue > Fields;
15453 published service Chapter {
15454 service ::com::sun::star::text::TextField;
15455 [property] short ChapterFormat;
15456 [property] byte Level;
15458 published service CharacterCount {
15459 service ::com::sun::star::text::TextField;
15460 [property] short NumberingType;
15462 published service CombinedCharacters {
15463 service ::com::sun::star::text::TextField;
15464 [property] string Content;
15466 published service ConditionalText {
15467 service ::com::sun::star::text::TextField;
15468 [property] string TrueContent;
15469 [property] string FalseContent;
15470 [property] string Condition;
15471 [property] boolean IsConditionTrue;
15472 [property, optional] string CurrentPresentation;
15474 published service DDE {
15475 service ::com::sun::star::text::TextField;
15477 published service Database {
15478 service ::com::sun::star::text::DependentTextField;
15479 [property] string Content;
15480 [property] string CurrentPresentation;
15481 [property] boolean DataBaseFormat;
15482 [property] long NumberFormat;
15484 published service DatabaseName {
15485 service ::com::sun::star::text::DependentTextField;
15486 [property] string DataBaseName;
15487 [property] long DataCommandType;
15488 [property] string DataTableName;
15489 [property, optional] string DataBaseURL;
15490 [property, optional] string DataBaseResource;
15492 published service DatabaseNextSet {
15493 service ::com::sun::star::text::DependentTextField;
15494 [property] string DataBaseName;
15495 [property] long DataCommandType;
15496 [property] string DataTableName;
15497 [property] string Condition;
15498 [property, optional] string DataBaseURL;
15499 [property, optional] string DataBaseResource;
15501 published service DatabaseNumberOfSet {
15502 service ::com::sun::star::text::DependentTextField;
15503 [property] string DataBaseName;
15504 [property] long DataCommandType;
15505 [property] string DataTableName;
15506 [property] string Condition;
15507 [property] long SetNumber;
15508 [property, optional] string DataBaseURL;
15509 [property, optional] string DataBaseResource;
15511 published service DatabaseSetNumber {
15512 service ::com::sun::star::text::DependentTextField;
15513 [property] string DataBaseName;
15514 [property] long DataCommandType;
15515 [property] string DataTableName;
15516 [property] short NumberingType;
15517 [property] long SetNumber;
15518 [property, optional] string DataBaseURL;
15519 [property, optional] string DataBaseResource;
15521 published service DateTime {
15522 service ::com::sun::star::text::TextField;
15523 [property, optional] boolean IsFixed;
15524 [property] boolean IsDate;
15525 [property, optional] ::com::sun::star::util::DateTime DateTimeValue;
15526 [property, optional] long NumberFormat;
15527 /** @deprecated */ [property, optional] short DateTimeFormat;
15528 [property, optional] long Adjust;
15529 [property, optional] boolean IsFixedLanguage;
15531 published service DropDown {
15532 service ::com::sun::star::text::TextField;
15533 [property] string Name;
15534 [property] sequence< string > Items;
15535 [property] string SelectedItem;
15537 published service EmbeddedObjectCount {
15538 service ::com::sun::star::text::TextField;
15539 [property] short NumberingType;
15541 published service ExtendedUser {
15542 service ::com::sun::star::text::TextField;
15543 [property] string Content;
15544 [property] string CurrentPresentation;
15545 [property] boolean IsFixed;
15546 [property] short UserDataType;
15548 published service FileName {
15549 service ::com::sun::star::text::TextField;
15550 [property] string CurrentPresentation;
15551 [property] short FileFormat;
15552 [property] boolean IsFixed;
15554 published service GetExpression {
15555 service ::com::sun::star::text::TextField;
15556 [property] string Content;
15557 [property] string CurrentPresentation;
15558 [property] long NumberFormat;
15559 [property] boolean IsShowFormula;
15560 [property] short SubType;
15561 [property, readonly] double Value;
15562 [property] short VariableSubtype;
15563 [property, optional] boolean IsFixedLanguage;
15565 published service GetReference {
15566 service ::com::sun::star::text::TextField;
15567 [property] string CurrentPresentation;
15568 [property] short ReferenceFieldSource;
15569 [property] string SourceName;
15570 [property] short ReferenceFieldPart;
15571 [property] short SequenceNumber;
15573 published service GraphicObjectCount {
15574 service ::com::sun::star::text::TextField;
15575 [property] short NumberingType;
15577 published service HiddenParagraph {
15578 service ::com::sun::star::text::TextField;
15579 [property] string Condition;
15580 [property] boolean IsHidden;
15582 published service HiddenText {
15583 service ::com::sun::star::text::TextField;
15584 [property] string Content;
15585 [property] string Condition;
15586 [property] boolean IsHidden;
15588 published service Input {
15589 service ::com::sun::star::text::TextField;
15590 [property, optional] string Content;
15591 [property, optional] string Hint;
15592 [property, optional] string Help;
15594 published service InputUser {
15595 service ::com::sun::star::text::TextField;
15596 [property, optional] string Content;
15597 [property, optional] string Hint;
15599 published service JumpEdit {
15600 service ::com::sun::star::text::TextField;
15601 [property] string Hint;
15602 [property] string PlaceHolder;
15603 [property] short PlaceHolderType;
15605 published service Macro {
15606 service ::com::sun::star::text::TextField;
15607 [property] string Hint;
15608 [property] string MacroName;
15609 [property] string MacroLibrary;
15611 published service PageCount {
15612 service ::com::sun::star::text::TextField;
15613 [property] short NumberingType;
15615 published service PageNumber {
15616 service ::com::sun::star::text::TextField;
15617 [property] short NumberingType;
15618 [property] short Offset;
15619 [property] ::com::sun::star::text::PageNumberType SubType;
15620 [property] string UserText;
15622 published service ParagraphCount {
15623 service ::com::sun::star::text::TextField;
15624 [property] short NumberingType;
15626 published service ReferencePageGet {
15627 service ::com::sun::star::text::TextField;
15628 [property] short NumberingType;
15630 published service ReferencePageSet {
15631 service ::com::sun::star::text::TextField;
15632 [property] short Offset;
15633 [property] boolean NameOn;
15635 published service Script {
15636 service ::com::sun::star::text::TextField;
15637 [property] string Content;
15638 [property] string ScriptType;
15639 [property] boolean URLContent;
15641 published service SetExpression {
15642 service ::com::sun::star::text::DependentTextField;
15643 [property] string Content;
15644 [property] string CurrentPresentation;
15645 [property] long NumberFormat;
15646 [property] short NumberingType;
15647 [property] boolean IsShowFormula;
15648 [property] string Hint;
15649 [property] boolean IsInput;
15650 [property] boolean IsVisible;
15651 [property] short SequenceValue;
15652 [property] short SubType;
15653 [property] double Value;
15654 [property, readonly] string VariableName;
15655 [property, optional] boolean IsFixedLanguage;
15657 published service TableCount {
15658 service ::com::sun::star::text::TextField;
15659 [property] short NumberingType;
15661 /** @deprecated */ published service TableFormula {
15662 service ::com::sun::star::text::TextField;
15663 [property] string Formula;
15664 [property] string CurrentPresentation;
15665 [property] boolean IsShowFormula;
15666 [property] short NumberFormat;
15668 published service TemplateName {
15669 service ::com::sun::star::text::TextField;
15670 [property] short FileFormat;
15672 published service URL {
15673 service ::com::sun::star::text::TextField;
15674 [property] short Format;
15675 [property] string URL;
15676 [property] string Representation;
15677 [property] string TargetFrame;
15679 published service User {
15680 service ::com::sun::star::text::DependentTextField;
15681 [property, optional] boolean IsShowFormula;
15682 [property, optional] boolean IsVisible;
15683 [property, optional] long NumberFormat;
15684 [property, optional] boolean IsFixedLanguage;
15686 published service WordCount {
15687 service ::com::sun::star::text::TextField;
15688 [property] short NumberingType;
15690 module docinfo {
15691 published service ChangeAuthor {
15692 service ::com::sun::star::text::TextField;
15693 [property] string Author;
15694 [property] string CurrentPresentation;
15695 [property, optional] boolean IsFixed;
15697 published service ChangeDateTime {
15698 service ::com::sun::star::text::TextField;
15699 [property] string CurrentPresentation;
15700 [property, optional] boolean IsFixed;
15701 [property] boolean IsDate;
15702 [property] double DateTimeValue;
15703 [property] long NumberFormat;
15704 [property, optional] boolean IsFixedLanguage;
15706 published service CreateAuthor {
15707 service ::com::sun::star::text::TextField;
15708 [property] string Author;
15709 [property] string CurrentPresentation;
15710 [property, optional] boolean IsFixed;
15712 published service CreateDateTime {
15713 service ::com::sun::star::text::TextField;
15714 [property] string CurrentPresentation;
15715 [property, optional] boolean IsFixed;
15716 [property] boolean IsDate;
15717 [property] double DateTimeValue;
15718 [property] long NumberFormat;
15719 [property, optional] boolean IsFixedLanguage;
15721 published service Custom {
15722 service ::com::sun::star::text::TextField;
15723 [property] string Name;
15724 [property] string CurrentPresentation;
15725 [property] boolean IsFixed;
15727 published service Description {
15728 service ::com::sun::star::text::TextField;
15729 [property] string Content;
15730 [property] string CurrentPresentation;
15731 [property] boolean IsFixed;
15733 published service EditTime {
15734 service ::com::sun::star::text::TextField;
15735 [property] string CurrentPresentation;
15736 [property, optional] boolean IsFixed;
15737 [property] double DateTimeValue;
15738 [property] long NumberFormat;
15739 [property, optional] boolean IsFixedLanguage;
15741 published service Keywords {
15742 service ::com::sun::star::text::TextField;
15743 [property] string Content;
15744 [property] string CurrentPresentation;
15745 [property] boolean IsFixed;
15747 published service PrintAuthor {
15748 service ::com::sun::star::text::TextField;
15749 [property] string Author;
15750 [property] string CurrentPresentation;
15751 [property, optional] boolean IsFixed;
15753 published service PrintDateTime {
15754 service ::com::sun::star::text::TextField;
15755 [property] string CurrentPresentation;
15756 [property, optional] boolean IsFixed;
15757 [property] boolean IsDate;
15758 [property] double DateTimeValue;
15759 [property] long NumberFormat;
15760 [property, optional] boolean IsFixedLanguage;
15762 published service Revision {
15763 service ::com::sun::star::text::TextField;
15764 [property] string Content;
15765 [property] string CurrentPresentation;
15766 [property] boolean IsFixed;
15768 published service Subject {
15769 service ::com::sun::star::text::TextField;
15770 [property] string Content;
15771 [property] string CurrentPresentation;
15772 [property] boolean IsFixed;
15774 published service Title {
15775 service ::com::sun::star::text::TextField;
15776 [property] string Content;
15777 [property] string CurrentPresentation;
15778 [property] boolean IsFixed;
15783 module ucb {
15784 published exception AlreadyInitializedException: ::com::sun::star::uno::Exception {
15786 published interface XAnyCompare;
15787 published interface XAnyCompareFactory {
15788 interface ::com::sun::star::uno::XInterface;
15789 ::com::sun::star::ucb::XAnyCompare createAnyCompareByName([in] string PropertyName);
15791 published service AnyCompareFactory: ::com::sun::star::ucb::XAnyCompareFactory {
15792 createWithLocale([in] ::com::sun::star::lang::Locale aLocale);
15794 published exception AuthenticationRequest: ::com::sun::star::task::ClassifiedInteractionRequest {
15795 string ServerName;
15796 string Diagnostic;
15797 boolean HasRealm;
15798 string Realm;
15799 boolean HasUserName;
15800 string UserName;
15801 boolean HasPassword;
15802 string Password;
15803 boolean HasAccount;
15804 string Account;
15806 published interface XContentIdentifier;
15807 published interface XContentAccess {
15808 interface ::com::sun::star::uno::XInterface;
15809 string queryContentIdentifierString();
15810 ::com::sun::star::ucb::XContentIdentifier queryContentIdentifier();
15811 ::com::sun::star::ucb::XContent queryContent();
15813 published service ContentResultSet {
15814 service ::com::sun::star::sdbc::ResultSet;
15815 interface ::com::sun::star::lang::XComponent;
15816 interface ::com::sun::star::sdbc::XResultSetMetaDataSupplier;
15817 interface ::com::sun::star::sdbc::XResultSet;
15818 interface ::com::sun::star::sdbc::XRow;
15819 interface ::com::sun::star::sdbc::XCloseable;
15820 interface ::com::sun::star::beans::XPropertySet;
15821 interface ::com::sun::star::ucb::XContentAccess;
15822 [property, optional] long CursorTravelMode;
15823 [property, readonly] long RowCount;
15824 [property, readonly] boolean IsRowCountFinal;
15826 published service CachedContentResultSet {
15827 service ::com::sun::star::ucb::ContentResultSet;
15828 [property] long FetchSize;
15829 [property] long FetchDirection;
15831 published interface XContentIdentifierMapping;
15832 published interface XCachedContentResultSetFactory {
15833 interface ::com::sun::star::uno::XInterface;
15834 ::com::sun::star::sdbc::XResultSet createCachedContentResultSet([in] ::com::sun::star::sdbc::XResultSet xSource, [in] ::com::sun::star::ucb::XContentIdentifierMapping xMapping);
15836 published service CachedContentResultSetFactory: ::com::sun::star::ucb::XCachedContentResultSetFactory;
15837 published struct FetchResult {
15838 sequence< any > Rows;
15839 long StartIndex;
15840 boolean Orientation;
15841 short FetchError;
15843 published interface XFetchProvider {
15844 interface ::com::sun::star::uno::XInterface;
15845 ::com::sun::star::ucb::FetchResult fetch([in] long nRowStartPosition, [in] long nRowCount, [in] boolean bDirection);
15847 published interface XFetchProviderForContentAccess {
15848 interface ::com::sun::star::uno::XInterface;
15849 ::com::sun::star::ucb::FetchResult fetchContentIdentifierStrings([in] long nRowStartPosition, [in] long nRowCount, [in] boolean bDirection);
15850 ::com::sun::star::ucb::FetchResult fetchContentIdentifiers([in] long nRowStartPosition, [in] long nRowCount, [in] boolean bDirection);
15851 ::com::sun::star::ucb::FetchResult fetchContents([in] long nRowStartPosition, [in] long nRowCount, [in] boolean bDirection);
15853 published service CachedContentResultSetStub {
15854 service ::com::sun::star::ucb::ContentResultSet;
15855 interface ::com::sun::star::ucb::XFetchProvider;
15856 interface ::com::sun::star::ucb::XFetchProviderForContentAccess;
15858 published interface XCachedContentResultSetStubFactory {
15859 interface ::com::sun::star::uno::XInterface;
15860 ::com::sun::star::sdbc::XResultSet createCachedContentResultSetStub([in] ::com::sun::star::sdbc::XResultSet xSource);
15862 published service CachedContentResultSetStubFactory: ::com::sun::star::ucb::XCachedContentResultSetStubFactory;
15863 published exception ListenerAlreadySetException: ::com::sun::star::uno::Exception {
15865 published exception ServiceNotFoundException: ::com::sun::star::uno::Exception {
15867 published interface XDynamicResultSetListener;
15868 published interface XDynamicResultSet {
15869 interface ::com::sun::star::lang::XComponent;
15870 ::com::sun::star::sdbc::XResultSet getStaticResultSet() raises (::com::sun::star::ucb::ListenerAlreadySetException);
15871 void setListener([in] ::com::sun::star::ucb::XDynamicResultSetListener Listener) raises (::com::sun::star::ucb::ListenerAlreadySetException);
15872 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);
15873 short getCapabilities();
15875 published interface XSourceInitialization {
15876 interface ::com::sun::star::uno::XInterface;
15877 void setSource([in] ::com::sun::star::uno::XInterface Source) raises (::com::sun::star::ucb::AlreadyInitializedException);
15879 published service CachedDynamicResultSet {
15880 interface ::com::sun::star::ucb::XDynamicResultSet;
15881 interface ::com::sun::star::ucb::XSourceInitialization;
15883 published interface XContentIdentifierMapping;
15884 published interface XCachedDynamicResultSetFactory {
15885 interface ::com::sun::star::uno::XInterface;
15886 ::com::sun::star::ucb::XDynamicResultSet createCachedDynamicResultSet([in] ::com::sun::star::ucb::XDynamicResultSet SourceStub, [in] ::com::sun::star::ucb::XContentIdentifierMapping ContentIdentifierMapping);
15888 published service CachedDynamicResultSetFactory: ::com::sun::star::ucb::XCachedDynamicResultSetFactory;
15889 published service CachedDynamicResultSetStub {
15890 interface ::com::sun::star::ucb::XDynamicResultSet;
15891 interface ::com::sun::star::ucb::XSourceInitialization;
15893 published struct NumberedSortingInfo {
15894 long ColumnIndex;
15895 boolean Ascending;
15897 published interface XCachedDynamicResultSetStubFactory {
15898 interface ::com::sun::star::uno::XInterface;
15899 ::com::sun::star::ucb::XDynamicResultSet createCachedDynamicResultSetStub([in] ::com::sun::star::ucb::XDynamicResultSet Source);
15900 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);
15902 published service CachedDynamicResultSetStubFactory: ::com::sun::star::ucb::XCachedDynamicResultSetStubFactory;
15903 published exception IllegalIdentifierException: ::com::sun::star::uno::Exception {
15905 published interface XContentIdentifier;
15906 published interface XContentProvider {
15907 interface ::com::sun::star::uno::XInterface;
15908 ::com::sun::star::ucb::XContent queryContent([in] ::com::sun::star::ucb::XContentIdentifier Identifier) raises (::com::sun::star::ucb::IllegalIdentifierException);
15909 long compareContentIds([in] ::com::sun::star::ucb::XContentIdentifier Id1, [in] ::com::sun::star::ucb::XContentIdentifier Id2);
15911 published interface XProgressHandler;
15912 published service CommandEnvironment: ::com::sun::star::ucb::XCommandEnvironment {
15913 create([in] ::com::sun::star::task::XInteractionHandler InteractionHandler, [in] ::com::sun::star::ucb::XProgressHandler ProgressHandler);
15915 published struct CommandInfo {
15916 string Name;
15917 long Handle;
15918 type ArgType;
15920 published constants CommandInfoChange {
15921 const long COMMAND_INSERTED = 0;
15922 const long COMMAND_REMOVED = 1;
15924 published struct CommandInfoChangeEvent: ::com::sun::star::lang::EventObject {
15925 string Name;
15926 long Handle;
15927 long Reason;
15929 published constants ConnectionMode {
15930 const short OFFLINE = 1;
15931 const short ONLINE = 0;
15933 published constants ContentAction {
15934 const long DELETED = 2;
15935 const long EXCHANGED = 4;
15936 const long INSERTED = 0;
15937 const long REMOVED = 1;
15938 /** @deprecated */ const long SEARCH_MATCHED = 128;
15940 published interface XContentIdentifier;
15941 published struct ContentEvent: ::com::sun::star::lang::EventObject {
15942 long Action;
15943 ::com::sun::star::ucb::XContent Content;
15944 ::com::sun::star::ucb::XContentIdentifier Id;
15946 published constants ContentInfoAttribute {
15947 const short INSERT_WITH_INPUTSTREAM = 1;
15948 const short KIND_DOCUMENT = 2;
15949 const short KIND_FOLDER = 4;
15950 const short KIND_LINK = 8;
15951 const short NONE = 0;
15953 published interface XContentIdentifier;
15954 published interface XContentIdentifierFactory {
15955 interface ::com::sun::star::uno::XInterface;
15956 ::com::sun::star::ucb::XContentIdentifier createContentIdentifier([in] string ContentId);
15958 published interface XParameterizedContentProvider {
15959 interface ::com::sun::star::uno::XInterface;
15960 ::com::sun::star::ucb::XContentProvider registerInstance([in] string Template, [in] string Arguments, [in] boolean ReplaceExisting) raises (::com::sun::star::lang::IllegalArgumentException);
15961 ::com::sun::star::ucb::XContentProvider deregisterInstance([in] string Template, [in] string Arguments) raises (::com::sun::star::lang::IllegalArgumentException);
15963 published service ContentProvider {
15964 interface ::com::sun::star::ucb::XContentProvider;
15965 [optional] interface ::com::sun::star::ucb::XContentIdentifierFactory;
15966 [optional] interface ::com::sun::star::ucb::XParameterizedContentProvider;
15968 published struct ContentProviderInfo {
15969 ::com::sun::star::ucb::XContentProvider ContentProvider;
15970 string Scheme;
15972 published interface XContentProviderSupplier {
15973 interface ::com::sun::star::uno::XInterface;
15974 ::com::sun::star::ucb::XContentProvider getContentProvider();
15976 published service ContentProviderProxy {
15977 interface ::com::sun::star::uno::XInterface;
15978 interface ::com::sun::star::ucb::XContentProviderSupplier;
15979 interface ::com::sun::star::ucb::XContentProvider;
15980 interface ::com::sun::star::ucb::XParameterizedContentProvider;
15982 published interface XContentProviderFactory {
15983 interface ::com::sun::star::uno::XInterface;
15984 ::com::sun::star::ucb::XContentProvider createContentProvider([in] string Service);
15986 published service ContentProviderProxyFactory: ::com::sun::star::ucb::XContentProviderFactory;
15987 published constants ContentResultSetCapability {
15988 const short SORTED = 1;
15990 /** @deprecated */ published interface XContentTransmitter {
15991 interface ::com::sun::star::uno::XInterface;
15992 void transmit([in] string Source, [in] string Destination, [in] long Flags);
15994 /** @deprecated */ published service ContentTransmitter {
15995 interface ::com::sun::star::ucb::XContentTransmitter;
15997 published struct CrossReference {
15998 string Group;
15999 long Id;
16001 published service HierarchyDataSource {
16002 interface ::com::sun::star::lang::XMultiServiceFactory;
16003 interface ::com::sun::star::lang::XComponent;
16005 published service DefaultHierarchyDataSource {
16006 service ::com::sun::star::ucb::HierarchyDataSource;
16008 published struct DocumentHeaderField {
16009 string Name;
16010 string Value;
16012 published enum DocumentStoreMode {
16013 REMOTE = 0,
16014 LOCAL = 1
16016 published exception DuplicateCommandIdentifierException: ::com::sun::star::uno::Exception {
16018 published exception DuplicateProviderException: ::com::sun::star::uno::Exception {
16020 published service DynamicResultSet {
16021 interface ::com::sun::star::ucb::XDynamicResultSet;
16023 /** @deprecated */ published constants Error {
16024 const long ACCOUNT_SYNTAX = 122977;
16025 const long BAD_CCMAIL_EXPORT_PASSWORD = 122909;
16026 const long BAD_INET = 122965;
16027 const long CCMAIL_EXPORT_ERROR = 122905;
16028 const long CCMAIL_EXPORT_NOT_TERMINATING = 122957;
16029 const long CCMAIL_EXPORT_TOO_LONG = 122910;
16030 const long CNTOUT_NO_FROM = 122890;
16031 const long CONFIRM_EMPTY_TRASH = 122952;
16032 const long CONNECT_FAILURE = 122883;
16033 const long COULD_NOT_INIT_COMPONENT = 122961;
16034 const long DELETE_ABORTED = 122892;
16035 const long DO_LOG = 122947;
16036 const long EMPTY_SERVERNAME = 122963;
16037 const long EMPTY_USERNAME = 122964;
16038 const long EXTERNAL_COMMAND_FAILED = 122958;
16039 const long FILE_EXISTS = 122921;
16040 const long FILE_NOT_EXISTS = 122922;
16041 const long FOLDER_EXISTS = 122911;
16042 const long FOLDER_INVALID = 122896;
16043 const long FOLDER_NOT_EXISTS = 122912;
16044 const long FSYS_ACCESS_DENIED = 122926;
16045 const long FSYS_CACHE_INCONSISTENT = 122940;
16046 const long FSYS_CANT_ITERATE = 122937;
16047 const long FSYS_CANT_RESOLVE_CONFLICT = 122936;
16048 const long FSYS_DELETE = 122944;
16049 const long FSYS_INSERT_MEDIUM = 122955;
16050 const long FSYS_INVALID_CHAR = 122924;
16051 const long FSYS_INVALID_DEVICE = 122925;
16052 const long FSYS_IS_MARKED = 122945;
16053 const long FSYS_IS_WILDCARD = 122933;
16054 const long FSYS_LOCK = 122942;
16055 const long FSYS_LOCK_VIOLATION = 122927;
16056 const long FSYS_LOST_ROOT = 122949;
16057 const long FSYS_MISPLACED_CHAR = 122923;
16058 const long FSYS_NOT_A_DIRECTORY = 122932;
16059 const long FSYS_NOT_A_FILE = 122931;
16060 const long FSYS_NOT_SUPPORTED = 122929;
16061 const long FSYS_NO_TARGET = 122953;
16062 const long FSYS_READONLY = 122941;
16063 const long FSYS_RECURSIVE = 122954;
16064 const long FSYS_ROOT_DELETE = 122920;
16065 const long FSYS_UNKNOWN = 122930;
16066 const long FSYS_UNLOCK = 122943;
16067 const long FSYS_UPDATE_NEEDED = 122935;
16068 const long FSYS_VOLUME_FULL = 122928;
16069 const long FTP_DCONFAILURE = 122901;
16070 const long FTP_GENERAL_FAILURE = 122946;
16071 const long FTP_NETWORKERROR = 122898;
16072 const long FTP_NOTNECESSARYCMD = 122899;
16073 const long FTP_PROXY = 122950;
16074 const long FTP_RESOLVERERROR = 122897;
16075 const long FTP_SERVICEUNAVAILABLE = 122900;
16076 const long FTP_TRANSFERABORTED = 122902;
16077 const long HTTP_COOKIE_REQUEST = 122948;
16078 const long ILLEGAL_CCMAIL_EXPORT_FILE = 122907;
16079 const long ILLEGAL_MESSAGE_ID = 122914;
16080 const long IMAP_BAD_SERVER = 122969;
16081 const long IMAP_BAD_TITLE = 122971;
16082 const long IMAP_CONNECTION_CLOSED = 122967;
16083 const long IMAP_NOT_IMAP4 = 122968;
16084 const long IMAP_SERVER_MSG = 122966;
16085 const long IS_RESCHEDULED = 122918;
16086 const long LOGIN_FAILURE_ACCOUNT = 122976;
16087 const long LOGIN_FAILURE_MAILSEND = 122882;
16088 const long LOGIN_FAILURE_NEWSSEND = 122881;
16089 const long LOGIN_FAILURE_RECEIVE = 122880;
16090 const long MESSAGE_NOT_FOUND = 122908;
16091 const long MULTIPLE_NOT_SEARCHABLE = 122939;
16092 const long NONE = 0;
16093 const long NOTAVAILABLE = 122894;
16094 const long NOT_HANDLED = 122960;
16095 const long NO_CCMAIL_EXPORT_FILE = 122906;
16096 const long NO_DOCINFO = 122956;
16097 const long NO_VIM_BBOARDLIST = 122913;
16098 const long NO_VIM_LIBRARY = 122903;
16099 const long ONE_NOT_SEARCHABLE = 122938;
16100 const long PASSWORD_SYNTAX = 122973;
16101 const long QUERY_DELETE = 122893;
16102 const long QUERY_DELETE_CACHE = 122974;
16103 const long RENAMED_WRONG_FILE_FORMAT = 122934;
16104 const long RENAME_FAILED = 122959;
16105 const long REORGANIZE_FILE_LOCKED = 122970;
16106 const long REORGANIZE_NO_DISKSPACE = 122975;
16107 const long SERVERNAME_SYNTAX = 122916;
16108 const long SERVER_CONNECT_FAILURE = 122972;
16109 const long SERVER_PORT_SYNTAX = 122915;
16110 const long SOURCE_SAME_AS_TARGET = 122951;
16111 const long STORAGE_KILLED = 122887;
16112 const long STORAGE_READONLY = 122886;
16113 const long TOO_MANY_GROUPS = 122891;
16114 const long TRANSFER_URL_NOT_SUPPORTED = 122962;
16115 const long UCB_OFFLINE = 122884;
16116 const long UCB_SERVER_ERROR = 122885;
16117 const long UNSUPPORTED_URL = 122889;
16118 const long USERNAME_SYNTAX = 122917;
16119 const long VIM_LIBRARY_CORRUPTED = 122904;
16120 const long VIM_LIBRARY_ERROR = 122895;
16121 const long VIM_NO_FAKE_MESSAGE_ID = 122919;
16122 const long WRONG_FILE_FORMAT = 122888;
16124 published struct ExportStreamInfo {
16125 ::com::sun::star::io::XOutputStream Target;
16126 boolean ForceBodies;
16128 published service FTPContent {
16129 interface ::com::sun::star::lang::XComponent;
16130 interface ::com::sun::star::ucb::XContent;
16131 interface ::com::sun::star::ucb::XContentCreator;
16132 interface ::com::sun::star::ucb::XCommandProcessor;
16133 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16134 interface ::com::sun::star::beans::XPropertyContainer;
16135 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16136 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16137 interface ::com::sun::star::container::XChild;
16139 published service FTPContentProvider {
16140 interface ::com::sun::star::ucb::XContentProvider;
16142 published constants FetchError {
16143 const short ENDOFDATA = 1;
16144 const short EXCEPTION = 2;
16145 const short SUCCESS = 0;
16147 published service FileContent {
16148 interface ::com::sun::star::lang::XComponent;
16149 interface ::com::sun::star::ucb::XContent;
16150 interface ::com::sun::star::ucb::XContentCreator;
16151 interface ::com::sun::star::ucb::XCommandProcessor;
16152 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16153 interface ::com::sun::star::beans::XPropertyContainer;
16154 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16155 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16156 interface ::com::sun::star::container::XChild;
16157 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16159 published interface XFileIdentifierConverter {
16160 interface ::com::sun::star::uno::XInterface;
16161 long getFileProviderLocality([in] string BaseURL);
16162 string getFileURLFromSystemPath([in] string BaseURL, [in] string SystemPath);
16163 string getSystemPathFromFileURL([in] string URL);
16165 published service FileContentProvider {
16166 interface ::com::sun::star::ucb::XContentProvider;
16167 interface ::com::sun::star::ucb::XContentIdentifierFactory;
16168 interface ::com::sun::star::beans::XPropertySet;
16169 interface ::com::sun::star::ucb::XFileIdentifierConverter;
16171 published constants FileSystemNotation {
16172 const long DOS_NOTATION = 2;
16173 const long MAC_NOTATION = 3;
16174 const long UNIX_NOTATION = 1;
16175 const long UNKNOWN_NOTATION = 0;
16177 published enum FolderListCommand {
16178 GET = 0,
16179 GET_SUBSCRIBED = 1,
16180 SET = 2
16182 published struct FolderListEntry {
16183 string Title;
16184 string ID;
16185 boolean Subscribed;
16186 boolean New;
16187 boolean Removed;
16188 boolean Purge;
16190 published struct FolderList {
16191 ::com::sun::star::ucb::FolderListCommand Command;
16192 sequence< ::com::sun::star::ucb::FolderListEntry > List;
16194 published enum TransferCommandOperation {
16195 COPY = 0,
16196 MOVE = 1,
16197 LINK = 2
16199 published struct GlobalTransferCommandArgument {
16200 ::com::sun::star::ucb::TransferCommandOperation Operation;
16201 string SourceURL;
16202 string TargetURL;
16203 string NewTitle;
16204 long NameClash;
16206 published service HelpContent {
16207 interface ::com::sun::star::lang::XComponent;
16208 interface ::com::sun::star::ucb::XContent;
16209 interface ::com::sun::star::ucb::XCommandProcessor;
16210 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16211 interface ::com::sun::star::beans::XPropertyContainer;
16212 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16213 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16214 interface ::com::sun::star::container::XChild;
16215 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16217 published service HelpContentProvider {
16218 interface ::com::sun::star::ucb::XContentProvider;
16220 published service HierarchyContentProvider {
16221 interface ::com::sun::star::ucb::XContentProvider;
16223 published service HierarchyDataReadAccess {
16224 interface ::com::sun::star::container::XNameAccess;
16225 interface ::com::sun::star::container::XHierarchicalNameAccess;
16226 interface ::com::sun::star::util::XChangesNotifier;
16227 interface ::com::sun::star::lang::XComponent;
16229 published service HierarchyDataReadWriteAccess {
16230 service ::com::sun::star::ucb::HierarchyDataReadAccess;
16231 interface ::com::sun::star::container::XNameContainer;
16232 interface ::com::sun::star::lang::XSingleServiceFactory;
16233 interface ::com::sun::star::util::XChangesBatch;
16235 published service HierarchyFolderContent {
16236 interface ::com::sun::star::lang::XComponent;
16237 interface ::com::sun::star::ucb::XContent;
16238 interface ::com::sun::star::ucb::XCommandProcessor;
16239 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16240 interface ::com::sun::star::beans::XPropertyContainer;
16241 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16242 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16243 interface ::com::sun::star::container::XChild;
16244 interface ::com::sun::star::ucb::XContentCreator;
16245 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16247 published service HierarchyLinkContent {
16248 interface ::com::sun::star::lang::XComponent;
16249 interface ::com::sun::star::ucb::XContent;
16250 interface ::com::sun::star::ucb::XCommandProcessor;
16251 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16252 interface ::com::sun::star::beans::XPropertyContainer;
16253 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16254 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16255 interface ::com::sun::star::container::XChild;
16256 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16258 published service HierarchyRootFolderContent {
16259 interface ::com::sun::star::lang::XComponent;
16260 interface ::com::sun::star::ucb::XContent;
16261 interface ::com::sun::star::ucb::XCommandProcessor;
16262 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16263 interface ::com::sun::star::beans::XPropertyContainer;
16264 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16265 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16266 interface ::com::sun::star::container::XChild;
16267 interface ::com::sun::star::ucb::XContentCreator;
16268 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16270 published struct InsertCommandArgument {
16271 ::com::sun::star::io::XInputStream Data;
16272 boolean ReplaceExisting;
16274 published exception InteractiveAppException: ::com::sun::star::task::ClassifiedInteractionRequest {
16275 unsigned long Code;
16277 published exception InteractiveAugmentedIOException: ::com::sun::star::ucb::InteractiveIOException {
16278 sequence< any > Arguments;
16280 published exception InteractiveBadTransferURLException: ::com::sun::star::uno::Exception {
16282 /** @deprecated */ published exception InteractiveFileIOException: ::com::sun::star::ucb::InteractiveIOException {
16283 string FileName;
16285 published exception InteractiveNetworkException: ::com::sun::star::task::ClassifiedInteractionRequest {
16287 published exception InteractiveNetworkConnectException: ::com::sun::star::ucb::InteractiveNetworkException {
16288 string Server;
16290 published exception InteractiveNetworkGeneralException: ::com::sun::star::ucb::InteractiveNetworkException {
16292 published exception InteractiveNetworkOffLineException: ::com::sun::star::ucb::InteractiveNetworkException {
16294 published exception InteractiveNetworkReadException: ::com::sun::star::ucb::InteractiveNetworkException {
16295 string Diagnostic;
16297 published exception InteractiveNetworkResolveNameException: ::com::sun::star::ucb::InteractiveNetworkException {
16298 string Server;
16300 published exception InteractiveNetworkWriteException: ::com::sun::star::ucb::InteractiveNetworkException {
16301 string Diagnostic;
16303 published exception InteractiveWrongMediumException: ::com::sun::star::task::ClassifiedInteractionRequest {
16304 any Medium;
16306 published struct Link {
16307 string Source;
16308 string Destination;
16310 published struct ListAction {
16311 long Position;
16312 long Count;
16313 long ListActionType;
16314 any ActionInfo;
16316 published constants ListActionType {
16317 const long CLEARED = 23;
16318 const long COMPLETED = 27;
16319 const long INSERTED = 21;
16320 const long MOVED = 24;
16321 const long PROPERTIES_CHANGED = 25;
16322 const long REMOVED = 22;
16323 const long WELCOME = 20;
16325 published struct ListEvent: ::com::sun::star::lang::EventObject {
16326 sequence< ::com::sun::star::ucb::ListAction > Changes;
16328 published enum LockDepth {
16329 ZERO = 0,
16330 ONE = 1,
16331 INFINITY = 2
16333 published enum LockScope {
16334 EXCLUSIVE = 0,
16335 SHARED = 1
16337 published enum LockType {
16338 WRITE = 0
16340 published struct LockEntry {
16341 ::com::sun::star::ucb::LockScope Scope;
16342 ::com::sun::star::ucb::LockType Type;
16344 published struct Lock: ::com::sun::star::ucb::LockEntry {
16345 ::com::sun::star::ucb::LockDepth Depth;
16346 any Owner;
16347 hyper Timeout;
16348 sequence< string > LockTokens;
16350 published exception MissingInputStreamException: ::com::sun::star::uno::Exception {
16352 published exception MissingPropertiesException: ::com::sun::star::uno::Exception {
16353 sequence< string > Properties;
16355 published constants NameClash {
16356 const long ASK = 4;
16357 const long ERROR = 0;
16358 /** @deprecated */ const long KEEP = 3;
16359 const long OVERWRITE = 1;
16360 const long RENAME = 2;
16362 published exception NameClashException: ::com::sun::star::task::ClassifiedInteractionRequest {
16363 string Name;
16365 published exception NameClashResolveRequest: ::com::sun::star::task::ClassifiedInteractionRequest {
16366 string TargetFolderURL;
16367 string ClashingName;
16368 string ProposedNewName;
16370 published service ODMAContent {
16371 interface ::com::sun::star::lang::XComponent;
16372 interface ::com::sun::star::ucb::XContent;
16373 interface ::com::sun::star::ucb::XCommandProcessor;
16374 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16375 interface ::com::sun::star::beans::XPropertyContainer;
16376 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16377 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16378 interface ::com::sun::star::container::XChild;
16379 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16381 published service ODMAContentProvider {
16382 interface ::com::sun::star::ucb::XContentProvider;
16384 published struct OpenCommandArgument {
16385 long Mode;
16386 long Priority;
16387 ::com::sun::star::uno::XInterface Sink;
16388 sequence< ::com::sun::star::beans::Property > Properties;
16390 published struct OpenCommandArgument2: ::com::sun::star::ucb::OpenCommandArgument {
16391 sequence< ::com::sun::star::ucb::NumberedSortingInfo > SortingInfo;
16393 published struct OpenCommandArgument3: ::com::sun::star::ucb::OpenCommandArgument2 {
16394 sequence< ::com::sun::star::beans::NamedValue > OpeningFlags;
16396 published constants OpenMode {
16397 const short ALL = 0;
16398 const short DOCUMENT = 2;
16399 const short DOCUMENTS = 3;
16400 const short DOCUMENT_SHARE_DENY_NONE = 4;
16401 const short DOCUMENT_SHARE_DENY_WRITE = 5;
16402 const short FOLDERS = 1;
16404 published enum OutgoingMessageState {
16405 WRITTEN = 0,
16406 PARTIALLY_LOCALLY_SENT = 1,
16407 COMPLETELY_LOCALLY_SENT = 2,
16408 RECOVERABLE_LOCAL_ERROR = 3,
16409 NONRECOVERABLE_LOCAL_ERROR = 4,
16410 EXTERNAL_ERROR = 5,
16411 WAITING_CONFIRMATION = 6,
16412 CONFIRMED = 7
16414 published service PackageContentProvider {
16415 interface ::com::sun::star::ucb::XContentProvider;
16417 published service PackageFolderContent {
16418 interface ::com::sun::star::lang::XComponent;
16419 interface ::com::sun::star::ucb::XContent;
16420 interface ::com::sun::star::ucb::XCommandProcessor;
16421 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16422 interface ::com::sun::star::beans::XPropertyContainer;
16423 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16424 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16425 interface ::com::sun::star::container::XChild;
16426 interface ::com::sun::star::ucb::XContentCreator;
16427 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16429 published service PackageStreamContent {
16430 interface ::com::sun::star::lang::XComponent;
16431 interface ::com::sun::star::ucb::XContent;
16432 interface ::com::sun::star::ucb::XCommandProcessor;
16433 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16434 interface ::com::sun::star::beans::XPropertyContainer;
16435 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16436 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16437 interface ::com::sun::star::container::XChild;
16438 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16440 published interface XPropertySetRegistry;
16441 published interface XPersistentPropertySet {
16442 interface ::com::sun::star::beans::XPropertySet;
16443 ::com::sun::star::ucb::XPropertySetRegistry getRegistry();
16444 string getKey();
16446 published service PersistentPropertySet {
16447 interface ::com::sun::star::ucb::XPersistentPropertySet;
16448 interface ::com::sun::star::container::XNamed;
16449 interface ::com::sun::star::beans::XPropertyContainer;
16450 interface ::com::sun::star::beans::XPropertyAccess;
16452 published struct PostCommandArgument {
16453 ::com::sun::star::io::XInputStream Source;
16454 ::com::sun::star::uno::XInterface Sink;
16456 published struct PostCommandArgument2: ::com::sun::star::ucb::PostCommandArgument {
16457 string MediaType;
16458 string Referer;
16460 published enum Priority {
16461 HIGHEST = 0,
16462 HIGH = 1,
16463 NORMAL = 2,
16464 LOW = 3,
16465 LOWEST = 4
16467 published service PropertiesManager: ::com::sun::star::beans::XPropertySetInfo;
16468 published interface XPropertySetRegistry {
16469 interface ::com::sun::star::uno::XInterface;
16470 ::com::sun::star::ucb::XPersistentPropertySet openPropertySet([in] string key, [in] boolean create);
16471 void removePropertySet([in] string key);
16473 published service PropertySetRegistry {
16474 interface ::com::sun::star::ucb::XPropertySetRegistry;
16475 interface ::com::sun::star::container::XNameAccess;
16477 published enum PropertyValueState {
16478 UNPROCESSED = 0,
16479 PROCESSED = 1,
16480 INVALID_NAME = 2,
16481 INVALID_TYPE = 3
16483 published struct PropertyValueInfo: ::com::sun::star::beans::PropertyValue {
16484 ::com::sun::star::ucb::PropertyValueState ValueState;
16486 published struct RecipientInfo {
16487 string ProtocolType;
16488 ::com::sun::star::ucb::OutgoingMessageState State;
16489 string To;
16490 string CC;
16491 string BCC;
16492 string Newsgroups;
16493 string Server;
16494 string Username;
16495 string Password;
16496 string VIMPostOfficePath;
16497 string ProtocolErrorString;
16498 long ProtocolErrorNumber;
16499 long SendTries;
16501 published service RemoteAccessContentProvider {
16502 service ::com::sun::star::ucb::ContentProvider;
16503 interface ::com::sun::star::ucb::XParameterizedContentProvider;
16505 published interface XRemoteContentProviderDoneListener;
16506 published interface XRemoteContentProviderAcceptor {
16507 interface ::com::sun::star::uno::XInterface;
16508 boolean addRemoteContentProvider([in] string Identifier, [in] ::com::sun::star::lang::XMultiServiceFactory Factory, [in] sequence< string > Templates, [in] ::com::sun::star::ucb::XRemoteContentProviderDoneListener DoneListener);
16509 boolean removeRemoteContentProvider([in] string Identifier);
16511 published interface XContentProviderManager;
16512 /** @deprecated */ published interface XRemoteContentProviderActivator {
16513 interface ::com::sun::star::uno::XInterface;
16514 ::com::sun::star::ucb::XContentProviderManager activateRemoteContentProviders();
16516 published service RemoteContentProviderAcceptor {
16517 interface ::com::sun::star::ucb::XRemoteContentProviderAcceptor;
16518 /** @deprecated */ [optional] interface ::com::sun::star::ucb::XRemoteContentProviderActivator;
16520 published enum RemoteContentProviderChangeAction {
16521 ADDED = 0,
16522 REMOVED = 1
16524 published struct RemoteContentProviderChangeEvent: ::com::sun::star::lang::EventObject {
16525 string Identifier;
16526 ::com::sun::star::ucb::RemoteContentProviderChangeAction Action;
16528 /** @deprecated */ published service RemoteProxyContentProvider {
16529 interface ::com::sun::star::ucb::XContentProvider;
16530 [optional] interface ::com::sun::star::ucb::XContentIdentifierFactory;
16531 [optional] interface ::com::sun::star::ucb::XParameterizedContentProvider;
16533 published exception ResultSetException: ::com::sun::star::sdbc::SQLException {
16535 published struct RuleTerm {
16536 string Property;
16537 any Operand;
16538 short Operator;
16539 boolean CaseSensitive;
16540 boolean RegularExpression;
16542 published struct Rule {
16543 sequence< ::com::sun::star::ucb::RuleTerm > Terms;
16544 string Parameter;
16545 short Action;
16547 published constants RuleAction {
16548 const short COPY = 8;
16549 const short DELETE = 9;
16550 const short FORWARD = 11;
16551 const short HIDE = 2;
16552 const short LINK = 10;
16553 const short MARK = 3;
16554 const short MARKREAD = 5;
16555 const short MARKUNREAD = 6;
16556 const short MOVE = 7;
16557 const short NONE = 0;
16558 const short SHOW = 1;
16559 const short UNMARK = 4;
16561 published constants RuleOperator {
16562 const short CONTAINS = 1;
16563 const short CONTAINSNOT = 2;
16564 const short EQUAL = 5;
16565 const short GREATEREQUAL = 3;
16566 const short LESSEQUAL = 4;
16567 const short NOTEQUAL = 6;
16568 const short VALUE_FALSE = 8;
16569 const short VALUE_TRUE = 7;
16571 published struct RuleSet {
16572 sequence< ::com::sun::star::ucb::Rule > Rules;
16573 boolean HandleFolder;
16575 published struct SearchCriterium {
16576 sequence< ::com::sun::star::ucb::RuleTerm > Terms;
16578 published enum SearchRecursion {
16579 NONE = 0,
16580 ONE_LEVEL = 1,
16581 DEEP = 2
16583 published struct SearchInfo {
16584 sequence< ::com::sun::star::ucb::SearchCriterium > Criteria;
16585 ::com::sun::star::ucb::SearchRecursion Recursion;
16586 boolean IncludeBase;
16587 boolean RespectFolderViewRestrictions;
16588 boolean RespectDocViewRestrictions;
16589 boolean FollowIndirections;
16591 published struct SearchCommandArgument {
16592 ::com::sun::star::ucb::SearchInfo Info;
16593 sequence< ::com::sun::star::beans::Property > Properties;
16595 published struct SendInfo {
16596 string ProtocolType;
16597 string Value;
16599 published struct SendMediaTypes {
16600 string ProtocolType;
16601 sequence< string > Value;
16603 published interface XSimpleFileAccess {
16604 interface ::com::sun::star::uno::XInterface;
16605 void copy([in] string SourceURL, [in] string DestURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16606 void move([in] string SourceURL, [in] string DestURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16607 void kill([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16608 boolean isFolder([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16609 boolean isReadOnly([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16610 void setReadOnly([in] string FileURL, [in] boolean bReadOnly) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16611 void createFolder([in] string NewFolderURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16612 long getSize([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16613 string getContentType([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16614 ::com::sun::star::util::DateTime getDateTimeModified([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16615 sequence< string > getFolderContents([in] string FolderURL, [in] boolean bIncludeFolders) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16616 boolean exists([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16617 ::com::sun::star::io::XInputStream openFileRead([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16618 ::com::sun::star::io::XOutputStream openFileWrite([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16619 ::com::sun::star::io::XStream openFileReadWrite([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16620 void setInteractionHandler([in] ::com::sun::star::task::XInteractionHandler Handler);
16622 published interface XSimpleFileAccess2 {
16623 interface ::com::sun::star::ucb::XSimpleFileAccess;
16624 void writeFile([in] string FileURL, [in] ::com::sun::star::io::XInputStream data) raises (::com::sun::star::uno::Exception);
16626 published interface XSimpleFileAccess3 {
16627 interface ::com::sun::star::ucb::XSimpleFileAccess2;
16628 boolean isHidden([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16629 void setHidden([in] string FileURL, [in] boolean bHidden) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16631 published service SimpleFileAccess: ::com::sun::star::ucb::XSimpleFileAccess3;
16632 published interface XSortedDynamicResultSetFactory {
16633 interface ::com::sun::star::uno::XInterface;
16634 ::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);
16636 published service SortedDynamicResultSetFactory: ::com::sun::star::ucb::XSortedDynamicResultSetFactory;
16637 published struct SortingInfo {
16638 string PropertyName;
16639 boolean Ascending;
16641 published interface XPropertySetRegistryFactory {
16642 interface ::com::sun::star::uno::XInterface;
16643 ::com::sun::star::ucb::XPropertySetRegistry createPropertySetRegistry([in] string URL);
16645 published service Store: ::com::sun::star::ucb::XPropertySetRegistryFactory;
16646 published enum SynchronizePolicy {
16647 SERVER_IS_MASTER = 0,
16648 CLIENT_IS_MASTER = 1,
16649 NONE_IS_MASTER = 2
16651 published struct TransferInfo {
16652 boolean MoveData;
16653 string SourceURL;
16654 string NewTitle;
16655 long NameClash;
16657 published struct TransferResult {
16658 string Source;
16659 string Target;
16660 any Result;
16662 published interface XContentProviderManager {
16663 interface ::com::sun::star::uno::XInterface;
16664 ::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);
16665 void deregisterContentProvider([in] ::com::sun::star::ucb::XContentProvider Provider, [in] string Scheme);
16666 sequence< ::com::sun::star::ucb::ContentProviderInfo > queryContentProviders();
16667 ::com::sun::star::ucb::XContentProvider queryContentProvider([in] string Identifier);
16669 published interface XUniversalContentBroker {
16670 interface ::com::sun::star::lang::XComponent;
16671 interface ::com::sun::star::ucb::XContentProvider;
16672 interface ::com::sun::star::ucb::XContentProviderManager;
16673 interface ::com::sun::star::ucb::XContentIdentifierFactory;
16674 interface ::com::sun::star::ucb::XCommandProcessor2;
16676 published service UniversalContentBroker: ::com::sun::star::ucb::XUniversalContentBroker {
16677 create();
16679 published exception UnsupportedCommandException: ::com::sun::star::uno::Exception {
16681 published exception UnsupportedDataSinkException: ::com::sun::star::uno::Exception {
16682 ::com::sun::star::uno::XInterface Sink;
16684 published exception UnsupportedNameClashException: ::com::sun::star::uno::Exception {
16685 long NameClash;
16687 published exception UnsupportedOpenModeException: ::com::sun::star::uno::Exception {
16688 short Mode;
16690 published enum VerificationMode {
16691 ALWAYS = 0,
16692 ONCE = 1,
16693 NEVER = 2
16695 published service WebDAVContentProvider {
16696 interface ::com::sun::star::ucb::XContentProvider;
16698 published service WebDAVDocumentContent {
16699 interface ::com::sun::star::lang::XComponent;
16700 interface ::com::sun::star::ucb::XContent;
16701 interface ::com::sun::star::ucb::XCommandProcessor;
16702 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16703 interface ::com::sun::star::beans::XPropertyContainer;
16704 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16705 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16706 interface ::com::sun::star::container::XChild;
16707 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16709 published service WebDAVFolderContent {
16710 interface ::com::sun::star::lang::XComponent;
16711 interface ::com::sun::star::ucb::XContent;
16712 interface ::com::sun::star::ucb::XCommandProcessor;
16713 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16714 interface ::com::sun::star::beans::XPropertyContainer;
16715 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16716 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16717 interface ::com::sun::star::container::XChild;
16718 interface ::com::sun::star::ucb::XContentCreator;
16719 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16721 published struct WelcomeDynamicResultSetStruct {
16722 ::com::sun::star::sdbc::XResultSet Old;
16723 ::com::sun::star::sdbc::XResultSet New;
16725 published interface XAnyCompare {
16726 interface ::com::sun::star::uno::XInterface;
16727 short compare([in] any Any1, [in] any Any2);
16729 published interface XCommandInfo {
16730 interface ::com::sun::star::uno::XInterface;
16731 sequence< ::com::sun::star::ucb::CommandInfo > getCommands();
16732 ::com::sun::star::ucb::CommandInfo getCommandInfoByName([in] string Name) raises (::com::sun::star::ucb::UnsupportedCommandException);
16733 ::com::sun::star::ucb::CommandInfo getCommandInfoByHandle([in] long Handle) raises (::com::sun::star::ucb::UnsupportedCommandException);
16734 boolean hasCommandByName([in] string Name);
16735 boolean hasCommandByHandle([in] long Handle);
16737 published interface XCommandInfoChangeListener {
16738 interface ::com::sun::star::lang::XEventListener;
16739 void commandInfoChange([in] ::com::sun::star::ucb::CommandInfoChangeEvent evt);
16741 published interface XContentEventListener {
16742 interface ::com::sun::star::lang::XEventListener;
16743 void contentEvent([in] ::com::sun::star::ucb::ContentEvent evt);
16745 published interface XContentIdentifier {
16746 interface ::com::sun::star::uno::XInterface;
16747 string getContentIdentifier();
16748 string getContentProviderScheme();
16750 published interface XContentIdentifierMapping {
16751 interface ::com::sun::star::uno::XInterface;
16752 string mapContentIdentifierString([in] string Source);
16753 ::com::sun::star::ucb::XContentIdentifier mapContentIdentifier([in] ::com::sun::star::ucb::XContentIdentifier Source);
16754 ::com::sun::star::ucb::XContent mapContent([in] ::com::sun::star::ucb::XContent Source);
16755 boolean mapRow([inout] sequence< any > Value);
16757 /** @deprecated */ published interface XDataContainer {
16758 interface ::com::sun::star::container::XIndexContainer;
16759 string getContentType();
16760 void setContentType([in] string aType);
16761 sequence< byte > getData();
16762 void setData([in] sequence< byte > aData);
16763 /** @deprecated */ string getDataURL();
16764 /** @deprecated */ void setDataURL([in] string aURL);
16766 published interface XDynamicResultSetListener {
16767 interface ::com::sun::star::lang::XEventListener;
16768 void notify([in] ::com::sun::star::ucb::ListEvent Changes);
16770 published interface XInteractionHandlerSupplier {
16771 interface ::com::sun::star::uno::XInterface;
16772 boolean hasInteractionHandler();
16774 published interface XInteractionReplaceExistingData {
16775 interface ::com::sun::star::task::XInteractionContinuation;
16777 published interface XInteractionSupplyAuthentication {
16778 interface ::com::sun::star::task::XInteractionContinuation;
16779 boolean canSetRealm();
16780 void setRealm([in] string Realm);
16781 boolean canSetUserName();
16782 void setUserName([in] string UserName);
16783 boolean canSetPassword();
16784 void setPassword([in] string Password);
16785 sequence< ::com::sun::star::ucb::RememberAuthentication > getRememberPasswordModes([out] ::com::sun::star::ucb::RememberAuthentication Default);
16786 void setRememberPassword([in] ::com::sun::star::ucb::RememberAuthentication Remember);
16787 boolean canSetAccount();
16788 void setAccount([in] string Account);
16789 sequence< ::com::sun::star::ucb::RememberAuthentication > getRememberAccountModes([out] ::com::sun::star::ucb::RememberAuthentication Default);
16790 void setRememberAccount([in] ::com::sun::star::ucb::RememberAuthentication Remember);
16792 published interface XInteractionSupplyName {
16793 interface ::com::sun::star::task::XInteractionContinuation;
16794 void setName([in] string Name);
16796 published interface XProgressHandler {
16797 interface ::com::sun::star::uno::XInterface;
16798 void push([in] any Status);
16799 void update([in] any Status);
16800 void pop();
16802 published interface XPropertyMatcher {
16803 interface ::com::sun::star::uno::XInterface;
16804 boolean matches([in] ::com::sun::star::ucb::XCommandProcessor Properties, [in] ::com::sun::star::ucb::XCommandEnvironment Environment);
16806 published interface XPropertyMatcherFactory {
16807 interface ::com::sun::star::uno::XInterface;
16808 ::com::sun::star::ucb::XPropertyMatcher createPropertyMatcher([in] sequence< ::com::sun::star::ucb::SearchCriterium > Criteria);
16810 published interface XRecycler {
16811 interface ::com::sun::star::uno::XInterface;
16812 void trashContent([in] ::com::sun::star::ucb::XCommandProcessor Properties, [in] ::com::sun::star::ucb::XContentIdentifier Identifier);
16814 published interface XRemoteContentProviderChangeListener {
16815 interface ::com::sun::star::lang::XEventListener;
16816 void remoteContentProviderChange([in] ::com::sun::star::ucb::RemoteContentProviderChangeEvent Event);
16818 published interface XRemoteContentProviderChangeNotifier {
16819 interface ::com::sun::star::uno::XInterface;
16820 void addRemoteContentProviderChangeListener([in] ::com::sun::star::ucb::XRemoteContentProviderChangeListener Listener);
16821 void removeRemoteContentProviderChangeListener([in] ::com::sun::star::ucb::XRemoteContentProviderChangeListener Listener);
16823 published interface XRemoteContentProviderConnectionControl {
16824 interface ::com::sun::star::uno::XInterface;
16825 void enableConnectionControl([in] ::com::sun::star::ucb::XRemoteContentProviderAcceptor Acceptor, [in] ::com::sun::star::uno::XInterface Token);
16827 published interface XRemoteContentProviderDistributor {
16828 interface ::com::sun::star::uno::XInterface;
16829 boolean connectToRemoteAcceptor([in] string Url, [in] string Identifier) raises (::com::sun::star::connection::NoConnectException, ::com::sun::star::connection::ConnectionSetupException, ::com::sun::star::lang::IllegalArgumentException);
16830 boolean disconnectFromRemoteAcceptor([in] string Url);
16831 void disconnectFromAll();
16833 published interface XRemoteContentProviderDoneListener {
16834 interface ::com::sun::star::uno::XInterface;
16835 void doneWithRemoteContentProviders([in] ::com::sun::star::ucb::XRemoteContentProviderAcceptor Acceptor);
16837 published interface XRemoteContentProviderSupplier {
16838 interface ::com::sun::star::uno::XInterface;
16839 ::com::sun::star::lang::XMultiServiceFactory queryRemoteContentProvider([in] string Identifier);
16842 module ui {
16843 published service ActionTrigger {
16844 [property] string Text;
16845 [property] string CommandURL;
16846 [property, optional] string HelpURL;
16847 [property] ::com::sun::star::awt::XBitmap Image;
16848 [property] ::com::sun::star::container::XIndexContainer SubContainer;
16850 published service ActionTriggerContainer {
16851 interface ::com::sun::star::container::XIndexContainer;
16852 interface ::com::sun::star::lang::XMultiServiceFactory;
16853 [optional] interface ::com::sun::star::container::XEnumerationAccess;
16854 [optional] interface ::com::sun::star::container::XContainer;
16856 published service ActionTriggerSeparator {
16857 [property, optional] short SeparatorType;
16859 published constants ActionTriggerSeparatorType {
16860 const short LINE = 0;
16861 const short LINEBREAK = 2;
16862 const short SPACE = 1;
16864 published struct ContextMenuExecuteEvent {
16865 ::com::sun::star::awt::XWindow SourceWindow;
16866 ::com::sun::star::awt::Point ExecutePosition;
16867 ::com::sun::star::container::XIndexContainer ActionTriggerContainer;
16868 ::com::sun::star::view::XSelectionSupplier Selection;
16870 published enum ContextMenuInterceptorAction {
16871 IGNORED = 0,
16872 CANCELLED = 1,
16873 EXECUTE_MODIFIED = 2,
16874 CONTINUE_MODIFIED = 3
16876 published interface XContextMenuInterceptor {
16877 interface ::com::sun::star::uno::XInterface;
16878 ::com::sun::star::ui::ContextMenuInterceptorAction notifyContextMenuExecute([in] ::com::sun::star::ui::ContextMenuExecuteEvent aEvent);
16880 module dialogs {
16881 published constants CommonFilePickerElementIds {
16882 const short CONTROL_FILEVIEW = 4;
16883 const short EDIT_FILEURL = 5;
16884 const short EDIT_FILEURL_LABEL = 7;
16885 const short LISTBOX_FILTER = 3;
16886 const short LISTBOX_FILTER_LABEL = 6;
16887 const short PUSHBUTTON_CANCEL = 2;
16888 const short PUSHBUTTON_OK = 1;
16890 published constants ControlActions {
16891 const short ADD_ITEM = 1;
16892 const short ADD_ITEMS = 2;
16893 const short DELETE_ITEM = 3;
16894 const short DELETE_ITEMS = 4;
16895 const short GET_HELP_URL = 101;
16896 const short GET_ITEMS = 6;
16897 const short GET_SELECTED_ITEM = 7;
16898 const short GET_SELECTED_ITEM_INDEX = 8;
16899 const short SET_HELP_URL = 100;
16900 const short SET_SELECT_ITEM = 5;
16902 published exception ExecutableDialogException: ::com::sun::star::uno::Exception {
16904 published constants ExecutableDialogResults {
16905 const short CANCEL = 0;
16906 const short OK = 1;
16908 published constants ExtendedFilePickerElementIds {
16909 const short CHECKBOX_AUTOEXTENSION = 100;
16910 const short CHECKBOX_FILTEROPTIONS = 102;
16911 const short CHECKBOX_LINK = 104;
16912 const short CHECKBOX_PASSWORD = 101;
16913 const short CHECKBOX_PREVIEW = 105;
16914 const short CHECKBOX_READONLY = 103;
16915 const short CHECKBOX_SELECTION = 110;
16916 const short LISTBOX_FILTER_SELECTOR = 210;
16917 const short LISTBOX_IMAGE_TEMPLATE = 109;
16918 const short LISTBOX_IMAGE_TEMPLATE_LABEL = 209;
16919 const short LISTBOX_TEMPLATE = 108;
16920 const short LISTBOX_TEMPLATE_LABEL = 208;
16921 const short LISTBOX_VERSION = 107;
16922 const short LISTBOX_VERSION_LABEL = 207;
16923 const short PUSHBUTTON_PLAY = 106;
16925 published interface XFilePicker {
16926 interface ::com::sun::star::ui::dialogs::XExecutableDialog;
16927 void setMultiSelectionMode([in] boolean bMode);
16928 void setDefaultName([in] string aName);
16929 void setDisplayDirectory([in] string aDirectory) raises (::com::sun::star::lang::IllegalArgumentException);
16930 string getDisplayDirectory();
16931 sequence< string > getFiles();
16933 published interface XFilePickerListener;
16934 published interface XFilePickerNotifier {
16935 interface ::com::sun::star::uno::XInterface;
16936 void addFilePickerListener([in] ::com::sun::star::ui::dialogs::XFilePickerListener xListener);
16937 void removeFilePickerListener([in] ::com::sun::star::ui::dialogs::XFilePickerListener xListener);
16939 published interface XFilePreview {
16940 interface ::com::sun::star::uno::XInterface;
16941 sequence< short > getSupportedImageFormats();
16942 ::com::sun::star::util::Color getTargetColorDepth();
16943 long getAvailableWidth();
16944 long getAvailableHeight();
16945 void setImage([in] short aImageFormat, [in] any aImage) raises (::com::sun::star::lang::IllegalArgumentException);
16946 boolean setShowState([in] boolean bShowState);
16947 boolean getShowState();
16949 published interface XFilterGroupManager {
16950 interface ::com::sun::star::uno::XInterface;
16951 void appendFilterGroup([in] string sGroupTitle, [in] sequence< ::com::sun::star::beans::StringPair > aFilters) raises (::com::sun::star::lang::IllegalArgumentException);
16953 published interface XFilterManager {
16954 interface ::com::sun::star::uno::XInterface;
16955 void appendFilter([in] string aTitle, [in] string aFilter) raises (::com::sun::star::lang::IllegalArgumentException);
16956 void setCurrentFilter([in] string aTitle) raises (::com::sun::star::lang::IllegalArgumentException);
16957 string getCurrentFilter();
16959 published interface XFilePicker3 {
16960 interface ::com::sun::star::ui::dialogs::XFilePicker;
16961 interface ::com::sun::star::ui::dialogs::XFilePickerNotifier;
16962 interface ::com::sun::star::ui::dialogs::XFilterManager;
16963 interface ::com::sun::star::ui::dialogs::XFilterGroupManager;
16964 interface ::com::sun::star::util::XCancellable;
16965 interface ::com::sun::star::lang::XComponent;
16966 [optional] interface ::com::sun::star::ui::dialogs::XFilePreview;
16968 published service FilePicker: ::com::sun::star::ui::dialogs::XFilePicker3 {
16969 createWithMode([in] short Mode);
16971 published struct FilePickerEvent: ::com::sun::star::lang::EventObject {
16972 short ElementId;
16974 published constants FilePreviewImageFormats {
16975 const short BITMAP = 1;
16977 published interface XFolderPicker {
16978 interface ::com::sun::star::ui::dialogs::XExecutableDialog;
16979 void setDisplayDirectory([in] string aDirectory) raises (::com::sun::star::lang::IllegalArgumentException);
16980 string getDisplayDirectory();
16981 string getDirectory();
16982 void setDescription([in] string aDescription);
16984 published interface XFolderPicker2 {
16985 interface ::com::sun::star::ui::dialogs::XFolderPicker;
16986 interface ::com::sun::star::util::XCancellable;
16988 published service FolderPicker: ::com::sun::star::ui::dialogs::XFolderPicker2;
16989 /** @deprecated */ published constants ListboxControlActions {
16990 const short ADD_ITEM = 1;
16991 const short ADD_ITEMS = 2;
16992 const short DELETE_ITEM = 3;
16993 const short DELETE_ITEMS = 4;
16994 const short GET_ITEMS = 6;
16995 const short GET_SELECTED_ITEM = 7;
16996 const short SET_SELECT_ITEM = 5;
16998 published constants TemplateDescription {
16999 const short FILEOPEN_LINK_PREVIEW = 9;
17000 const short FILEOPEN_LINK_PREVIEW_IMAGE_TEMPLATE = 6;
17001 const short FILEOPEN_PLAY = 7;
17002 const short FILEOPEN_READONLY_VERSION = 8;
17003 const short FILEOPEN_SIMPLE = 0;
17004 const short FILESAVE_AUTOEXTENSION = 10;
17005 const short FILESAVE_AUTOEXTENSION_PASSWORD = 2;
17006 const short FILESAVE_AUTOEXTENSION_PASSWORD_FILTEROPTIONS = 3;
17007 const short FILESAVE_AUTOEXTENSION_SELECTION = 4;
17008 const short FILESAVE_AUTOEXTENSION_TEMPLATE = 5;
17009 const short FILESAVE_SIMPLE = 1;
17011 published interface XControlAccess {
17012 interface ::com::sun::star::uno::XInterface;
17013 void setControlProperty([in] string aControlName, [in] string aControlProperty, [in] any aValue) raises (::com::sun::star::lang::IllegalArgumentException);
17014 any getControlProperty([in] string aControlName, [in] string aControlProperty) raises (::com::sun::star::lang::IllegalArgumentException);
17016 published interface XControlInformation {
17017 interface ::com::sun::star::uno::XInterface;
17018 sequence< string > getSupportedControls();
17019 boolean isControlSupported([in] string aControlName);
17020 sequence< string > getSupportedControlProperties([in] string aControlName) raises (::com::sun::star::lang::IllegalArgumentException);
17021 boolean isControlPropertySupported([in] string aControlName, [in] string aControlProperty) raises (::com::sun::star::lang::IllegalArgumentException);
17023 published interface XFilePickerControlAccess {
17024 interface ::com::sun::star::ui::dialogs::XFilePicker;
17025 void setValue([in] short ControlId, [in] short aControlAction, [in] any aValue);
17026 any getValue([in] short aControlId, [in] short aControlAction);
17027 void setLabel([in] short aControlId, [in] string aLabel);
17028 string getLabel([in] short aControlId);
17029 void enableControl([in] short ControlId, [in] boolean bEnable);
17031 published interface XFilePickerListener {
17032 interface ::com::sun::star::lang::XEventListener;
17033 void fileSelectionChanged([in] ::com::sun::star::ui::dialogs::FilePickerEvent aEvent);
17034 void directoryChanged([in] ::com::sun::star::ui::dialogs::FilePickerEvent aEvent);
17035 string helpRequested([in] ::com::sun::star::ui::dialogs::FilePickerEvent aEvent);
17036 void controlStateChanged([in] ::com::sun::star::ui::dialogs::FilePickerEvent aEvent);
17037 void dialogSizeChanged();
17039 published service XSLTFilterDialog: ::com::sun::star::ui::dialogs::XExecutableDialog;
17042 module util {
17043 published struct AtomClassRequest {
17044 long atomClass;
17045 sequence< long > atoms;
17047 published struct AtomDescription {
17048 long atom;
17049 string description;
17051 published struct ChangesEvent: ::com::sun::star::lang::EventObject {
17052 any Base;
17053 ::com::sun::star::util::ChangesSet Changes;
17055 published enum DataEditorEventType {
17056 DONE = 0,
17057 CANCELED = 1
17059 published struct DataEditorEvent: ::com::sun::star::lang::EventObject {
17060 ::com::sun::star::util::DataEditorEventType Type;
17062 published struct DateTimeRange {
17063 unsigned long StartNanoSeconds;
17064 unsigned short StartSeconds;
17065 unsigned short StartMinutes;
17066 unsigned short StartHours;
17067 unsigned short StartDay;
17068 unsigned short StartMonth;
17069 short StartYear;
17070 unsigned long EndNanoSeconds;
17071 unsigned short EndSeconds;
17072 unsigned short EndMinutes;
17073 unsigned short EndHours;
17074 unsigned short EndDay;
17075 unsigned short EndMonth;
17076 short EndYear;
17077 boolean IsUTC;
17079 published interface XJobManager {
17080 interface ::com::sun::star::uno::XInterface;
17081 void registerJob([in] ::com::sun::star::util::XCancellable Job);
17082 void releaseJob([in] ::com::sun::star::util::XCancellable Job);
17083 void cancelAllJobs();
17085 published typedef short Language;
17086 published exception MalformedNumberFormatException: ::com::sun::star::uno::Exception {
17087 long CheckPos;
17089 published constants MeasureUnit {
17090 const short APPFONT = 17;
17091 const short CM = 3;
17092 const short FOOT = 13;
17093 const short INCH = 7;
17094 const short INCH_1000TH = 4;
17095 const short INCH_100TH = 5;
17096 const short INCH_10TH = 6;
17097 const short KM = 11;
17098 const short M = 10;
17099 const short MILE = 14;
17100 const short MM = 2;
17101 const short MM_100TH = 0;
17102 const short MM_10TH = 1;
17103 const short PERCENT = 15;
17104 const short PICA = 12;
17105 const short PIXEL = 16;
17106 const short POINT = 8;
17107 const short SYSFONT = 18;
17108 const short TWIP = 9;
17110 published struct ModeChangeEvent: ::com::sun::star::lang::EventObject {
17111 string NewMode;
17113 published exception NotNumericException: ::com::sun::star::uno::Exception {
17115 published constants NumberFormat {
17116 const short ALL = 0;
17117 const short CURRENCY = 8;
17118 const short DATE = 2;
17119 const short DATETIME = 6;
17120 const short DEFINED = 1;
17121 const short FRACTION = 64;
17122 const short LOGICAL = 1024;
17123 const short NUMBER = 16;
17124 const short PERCENT = 128;
17125 const short SCIENTIFIC = 32;
17126 const short TEXT = 256;
17127 const short TIME = 4;
17128 const short UNDEFINED = 2048;
17130 published service NumberFormatProperties {
17131 [property, readonly] string FormatString;
17132 [property, readonly] ::com::sun::star::lang::Locale Locale;
17133 [property, readonly] short Type;
17134 [property] string Comment;
17136 published service NumberFormatSettings {
17137 interface ::com::sun::star::beans::XPropertySet;
17138 [property] ::com::sun::star::util::Date NullDate;
17139 [property] short StandardDecimals;
17140 [property] boolean NoZero;
17141 [property] short TwoDigitDateStart;
17143 published interface XNumberFormatTypes {
17144 interface ::com::sun::star::uno::XInterface;
17145 long getStandardIndex([in] ::com::sun::star::lang::Locale nLocale);
17146 long getStandardFormat([in] short nType, [in] ::com::sun::star::lang::Locale nLocale);
17147 long getFormatIndex([in] short nIndex, [in] ::com::sun::star::lang::Locale nLocale);
17148 boolean isTypeCompatible([in] short nOldType, [in] short nNewType);
17149 long getFormatForLocale([in] long nKey, [in] ::com::sun::star::lang::Locale nLocale);
17151 published interface XNumberFormats {
17152 interface ::com::sun::star::uno::XInterface;
17153 ::com::sun::star::beans::XPropertySet getByKey([in] long nKey);
17154 sequence< long > queryKeys([in] short nType, [in] ::com::sun::star::lang::Locale nLocale, [in] boolean bCreate);
17155 long queryKey([in] string aFormat, [in] ::com::sun::star::lang::Locale nLocale, [in] boolean bScan);
17156 long addNew([in] string aFormat, [in] ::com::sun::star::lang::Locale nLocale) raises (::com::sun::star::util::MalformedNumberFormatException);
17157 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);
17158 void removeByKey([in] long nKey);
17159 string generateFormat([in] long nBaseKey, [in] ::com::sun::star::lang::Locale nLocale, [in] boolean bThousands, [in] boolean bRed, [in] short nDecimals, [in] short nLeading);
17161 published service NumberFormats {
17162 interface ::com::sun::star::util::XNumberFormats;
17163 interface ::com::sun::star::util::XNumberFormatTypes;
17165 published service NumberFormatsSupplier: ::com::sun::star::util::XNumberFormatsSupplier {
17166 createWithLocale([in] ::com::sun::star::lang::Locale Locale);
17167 createWithDefaultLocale();
17169 published interface XNumberFormatPreviewer {
17170 interface ::com::sun::star::uno::XInterface;
17171 string convertNumberToPreviewString([in] string aFormat, [in] double fValue, [in] ::com::sun::star::lang::Locale nLocale, [in] boolean bAllowEnglish) raises (::com::sun::star::util::MalformedNumberFormatException);
17172 ::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);
17174 published interface XNumberFormatter {
17175 interface ::com::sun::star::uno::XInterface;
17176 void attachNumberFormatsSupplier([in] ::com::sun::star::util::XNumberFormatsSupplier xSupplier);
17177 ::com::sun::star::util::XNumberFormatsSupplier getNumberFormatsSupplier();
17178 long detectNumberFormat([in] long nKey, [in] string aString) raises (::com::sun::star::util::NotNumericException);
17179 double convertStringToNumber([in] long nKey, [in] string aString) raises (::com::sun::star::util::NotNumericException);
17180 string convertNumberToString([in] long nKey, [in] double fValue);
17181 ::com::sun::star::util::Color queryColorForNumber([in] long nKey, [in] double fValue, [in] ::com::sun::star::util::Color aDefaultColor);
17182 string formatString([in] long nKey, [in] string aString);
17183 ::com::sun::star::util::Color queryColorForString([in] long nKey, [in] string aString, [in] ::com::sun::star::util::Color aDefaultColor);
17184 string getInputString([in] long nKey, [in] double fValue);
17186 published interface XNumberFormatter2 {
17187 interface ::com::sun::star::util::XNumberFormatter;
17188 interface ::com::sun::star::util::XNumberFormatPreviewer;
17190 published service NumberFormatter: ::com::sun::star::util::XNumberFormatter2;
17191 published interface XOfficeInstallationDirectories {
17192 interface ::com::sun::star::uno::XInterface;
17193 string getOfficeInstallationDirectoryURL();
17194 string getOfficeUserDataDirectoryURL();
17195 string makeRelocatableURL([in] string URL);
17196 string makeAbsoluteURL([in] string URL);
17198 /** @deprecated */ published service OfficeInstallationDirectories {
17199 interface ::com::sun::star::util::XOfficeInstallationDirectories;
17201 published interface XPathSettings {
17202 interface ::com::sun::star::beans::XPropertySet;
17203 [attribute] string Addin;
17204 [attribute] string AutoCorrect;
17205 [attribute] string AutoText;
17206 [attribute] string Backup;
17207 [attribute] string Basic;
17208 [attribute] string Bitmap;
17209 [attribute] string Config;
17210 [attribute] string Dictionary;
17211 [attribute] string Favorite;
17212 [attribute] string Filter;
17213 [attribute] string Gallery;
17214 [attribute] string Graphic;
17215 [attribute] string Help;
17216 [attribute] string Linguistic;
17217 [attribute] string Module;
17218 [attribute] string Palette;
17219 [attribute] string Plugin;
17220 [attribute] string Storage;
17221 [attribute] string Temp;
17222 [attribute] string Template;
17223 [attribute] string UIConfig;
17224 [attribute] string UserConfig;
17225 /** @deprecated */ [attribute] string UserDictionary;
17226 [attribute] string Work;
17227 [attribute] string BasePathShareLayer;
17228 [attribute] string BasePathUserLayer;
17230 /** @deprecated */ published service PathSettings: ::com::sun::star::util::XPathSettings;
17231 published interface XStringSubstitution {
17232 interface ::com::sun::star::uno::XInterface;
17233 string substituteVariables([in] string aText, [in] boolean bSubstRequired) raises (::com::sun::star::container::NoSuchElementException);
17234 string reSubstituteVariables([in] string aText);
17235 string getSubstituteVariableValue([in] string variable) raises (::com::sun::star::container::NoSuchElementException);
17237 published service PathSubstitution: ::com::sun::star::util::XStringSubstitution;
17238 published interface XSearchDescriptor {
17239 interface ::com::sun::star::beans::XPropertySet;
17240 string getSearchString();
17241 void setSearchString([in] string aString);
17243 published service SearchDescriptor {
17244 interface ::com::sun::star::util::XSearchDescriptor;
17245 interface ::com::sun::star::beans::XPropertySet;
17246 [property] boolean SearchBackwards;
17247 [property] boolean SearchCaseSensitive;
17248 [property] boolean SearchWords;
17249 [property] boolean SearchRegularExpression;
17250 [property] boolean SearchStyles;
17251 [property] boolean SearchSimilarity;
17252 [property] boolean SearchSimilarityRelax;
17253 [property] short SearchSimilarityRemove;
17254 [property] short SearchSimilarityAdd;
17255 [property] short SearchSimilarityExchange;
17257 published interface XReplaceDescriptor {
17258 interface ::com::sun::star::util::XSearchDescriptor;
17259 string getReplaceString();
17260 void setReplaceString([in] string aReplaceString);
17262 published service ReplaceDescriptor {
17263 service ::com::sun::star::util::SearchDescriptor;
17264 interface ::com::sun::star::util::XReplaceDescriptor;
17266 published enum SearchAlgorithms {
17267 ABSOLUTE = 0,
17268 REGEXP = 1,
17269 APPROXIMATE = 2
17271 published constants SearchFlags {
17272 /** @deprecated */ const long ALL_IGNORE_CASE = 1;
17273 const long LEV_RELAXED = 65536;
17274 const long NORM_WORD_ONLY = 16;
17275 /** @deprecated */ const long REG_EXTENDED = 256;
17276 /** @deprecated */ const long REG_NEWLINE = 1024;
17277 /** @deprecated */ const long REG_NOSUB = 512;
17278 const long REG_NOT_BEGINOFLINE = 2048;
17279 const long REG_NOT_ENDOFLINE = 4096;
17281 published struct SearchOptions {
17282 ::com::sun::star::util::SearchAlgorithms algorithmType;
17283 long searchFlag;
17284 string searchString;
17285 string replaceString;
17286 ::com::sun::star::lang::Locale Locale;
17287 long changedChars;
17288 long deletedChars;
17289 long insertedChars;
17290 long transliterateFlags;
17292 published struct SearchResult {
17293 long subRegExpressions;
17294 sequence< long > startOffset;
17295 sequence< long > endOffset;
17297 /** @deprecated */ published service Sortable {
17298 interface ::com::sun::star::util::XSortable;
17300 published interface XTextSearch {
17301 interface ::com::sun::star::uno::XInterface;
17302 void setOptions([in] ::com::sun::star::util::SearchOptions options);
17303 ::com::sun::star::util::SearchResult searchForward([in] string searchStr, [in] long startPos, [in] long endPos);
17304 ::com::sun::star::util::SearchResult searchBackward([in] string searchStr, [in] long startPos, [in] long endPos);
17306 published service TextSearch: ::com::sun::star::util::XTextSearch;
17307 published interface XURLTransformer {
17308 interface ::com::sun::star::uno::XInterface;
17309 boolean parseStrict([inout] ::com::sun::star::util::URL aURL);
17310 boolean parseSmart([inout] ::com::sun::star::util::URL aURL, [in] string sSmartProtocol);
17311 boolean assemble([inout] ::com::sun::star::util::URL aURL);
17312 string getPresentation([in] ::com::sun::star::util::URL aURL, [in] boolean bWithPassword);
17314 published service URLTransformer: ::com::sun::star::util::XURLTransformer;
17315 published interface XStringWidth;
17316 published interface XStringAbbreviation {
17317 interface ::com::sun::star::uno::XInterface;
17318 string abbreviateString([in] ::com::sun::star::util::XStringWidth xStringWidth, [in] long nWidth, [in] string aString);
17320 published interface XAtomServer {
17321 interface ::com::sun::star::uno::XInterface;
17322 sequence< ::com::sun::star::util::AtomDescription > getClass([in] long atomClass);
17323 sequence< sequence< ::com::sun::star::util::AtomDescription > > getClasses([in] sequence< long > atomClasses);
17324 sequence< string > getAtomDescriptions([in] sequence< ::com::sun::star::util::AtomClassRequest > atoms);
17325 sequence< ::com::sun::star::util::AtomDescription > getRecentAtoms([in] long atomClass, [in] long atom);
17326 long getAtom([in] long atomClass, [in] string description, [in] boolean create);
17328 published interface XChainable {
17329 interface ::com::sun::star::uno::XInterface;
17330 ::com::sun::star::util::XChainable getPredecessor();
17331 ::com::sun::star::util::XChainable getSuccessor();
17332 void setSuccessor([in] ::com::sun::star::util::XChainable xChainable) raises (::com::sun::star::lang::IllegalArgumentException);
17333 boolean isChainable([in] ::com::sun::star::util::XChainable xChainable);
17335 published interface XChangesListener {
17336 interface ::com::sun::star::lang::XEventListener;
17337 void changesOccurred([in] ::com::sun::star::util::ChangesEvent Event);
17339 published interface XChangesSet {
17340 interface ::com::sun::star::container::XElementAccess;
17341 sequence< ::com::sun::star::util::ElementChange > getAllChanges();
17343 published interface XCloseListener {
17344 interface ::com::sun::star::lang::XEventListener;
17345 void queryClosing([in] ::com::sun::star::lang::EventObject Source, [in] boolean GetsOwnership) raises (::com::sun::star::util::CloseVetoException);
17346 void notifyClosing([in] ::com::sun::star::lang::EventObject Source);
17348 published interface XDataEditorListener;
17349 published interface XDataEditor {
17350 interface ::com::sun::star::uno::XInterface;
17351 void show();
17352 void setModel([in] ::com::sun::star::uno::XInterface model);
17353 ::com::sun::star::uno::XInterface getModel();
17354 void addDataEditorListener([in] ::com::sun::star::util::XDataEditorListener listener);
17355 void removeDataEditorListener([in] ::com::sun::star::util::XDataEditorListener listener);
17357 published interface XDataEditorListener {
17358 interface ::com::sun::star::uno::XInterface;
17359 void updateDataEditorState([in] ::com::sun::star::util::DataEditorEvent event);
17361 published interface XFlushListener {
17362 interface ::com::sun::star::lang::XEventListener;
17363 void flushed([in] ::com::sun::star::lang::EventObject rEvent);
17365 published interface XLinkUpdate {
17366 interface ::com::sun::star::uno::XInterface;
17367 void updateLinks();
17369 published interface XModeChangeApproveListener {
17370 interface ::com::sun::star::lang::XEventListener;
17371 void approveModeChange([in] ::com::sun::star::util::ModeChangeEvent rSource) raises (::com::sun::star::util::VetoException);
17373 published interface XModeChangeListener;
17374 published interface XModeChangeBroadcaster {
17375 interface ::com::sun::star::uno::XInterface;
17376 void addModeChangeListener([in] ::com::sun::star::util::XModeChangeListener rxListener);
17377 void removeModeChangeListener([in] ::com::sun::star::util::XModeChangeListener rxListener);
17378 void addModeChangeApproveListener([in] ::com::sun::star::util::XModeChangeApproveListener rxListener) raises (::com::sun::star::lang::NoSupportException);
17379 void removeModeChangeApproveListener([in] ::com::sun::star::util::XModeChangeApproveListener rxListener) raises (::com::sun::star::lang::NoSupportException);
17381 published interface XModeChangeListener {
17382 interface ::com::sun::star::lang::XEventListener;
17383 void modeChanged([in] ::com::sun::star::util::ModeChangeEvent rSource);
17385 published interface XModifyListener {
17386 interface ::com::sun::star::lang::XEventListener;
17387 void modified([in] ::com::sun::star::lang::EventObject aEvent);
17389 published interface XPropertyReplace {
17390 interface ::com::sun::star::util::XReplaceDescriptor;
17391 boolean getValueSearch();
17392 void setValueSearch([in] boolean bValueSearch);
17393 sequence< ::com::sun::star::beans::PropertyValue > getSearchAttributes();
17394 void setSearchAttributes([in] sequence< ::com::sun::star::beans::PropertyValue > aSearchAttribs) raises (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::IllegalArgumentException);
17395 sequence< ::com::sun::star::beans::PropertyValue > getReplaceAttributes();
17396 void setReplaceAttributes([in] sequence< ::com::sun::star::beans::PropertyValue > aSearchAttribs) raises (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::IllegalArgumentException);
17398 published interface XRefreshListener {
17399 interface ::com::sun::star::lang::XEventListener;
17400 void refreshed([in] ::com::sun::star::lang::EventObject rEvent);
17402 published interface XStringWidth {
17403 interface ::com::sun::star::uno::XInterface;
17404 long queryStringWidth([in] string aString);
17406 published interface XUniqueIDFactory {
17407 interface ::com::sun::star::uno::XInterface;
17408 string createUniqueID();
17410 published singleton theOfficeInstallationDirectories: ::com::sun::star::util::XOfficeInstallationDirectories;
17411 published singleton thePathSettings: ::com::sun::star::util::XPathSettings;
17413 module view {
17414 published constants DocumentZoomType {
17415 const short BY_VALUE = 3;
17416 const short ENTIRE_PAGE = 2;
17417 const short OPTIMAL = 0;
17418 const short PAGE_WIDTH = 1;
17419 const short PAGE_WIDTH_EXACT = 4;
17421 published enum PaperFormat {
17422 A3 = 0,
17423 A4 = 1,
17424 A5 = 2,
17425 B4 = 3,
17426 B5 = 4,
17427 LETTER = 5,
17428 LEGAL = 6,
17429 TABLOID = 7,
17430 USER = 8
17432 published enum PrintableState {
17433 JOB_STARTED = 0,
17434 JOB_COMPLETED = 1,
17435 JOB_SPOOLED = 2,
17436 JOB_ABORTED = 3,
17437 JOB_FAILED = 4,
17438 JOB_SPOOLING_FAILED = 5
17440 published struct PrintJobEvent: ::com::sun::star::lang::EventObject {
17441 ::com::sun::star::view::PrintableState State;
17443 published service PrintOptions {
17444 [property] short CopyCount;
17445 [property] string FileName;
17446 [property] boolean Collate;
17447 /** @deprecated */ [property] boolean Sort;
17448 [property] string Pages;
17449 [property, optional] boolean Wait;
17450 [property, optional] short DuplexMode;
17451 [property, optional] string PrinterName;
17453 published service PrintSettings {
17454 [property] boolean PrintBlackFonts;
17455 [property] boolean PrintControls;
17456 [property] boolean PrintDrawings;
17457 [property] boolean PrintGraphics;
17458 [property] boolean PrintLeftPages;
17459 [property] boolean PrintRightPages;
17460 [property] boolean PrintTables;
17461 [property] boolean PrintReversed;
17462 [property] boolean PrintProspect;
17463 [property] boolean PrintPageBackground;
17464 [property] short PrintAnnotationMode;
17466 published struct PrintableStateEvent: ::com::sun::star::lang::EventObject {
17467 ::com::sun::star::view::PrintableState State;
17469 published service PrinterDescriptor {
17470 [property] string Name;
17471 [property] ::com::sun::star::view::PaperOrientation PaperOrientation;
17472 [property] ::com::sun::star::view::PaperFormat PaperFormat;
17473 [property] ::com::sun::star::awt::Size PaperSize;
17474 [property, readonly] boolean IsBusy;
17475 [property, readonly] boolean CanSetPaperOrientation;
17476 [property, readonly] boolean CanSetPaperFormat;
17477 [property, readonly] boolean CanSetPaperSize;
17479 published service RenderDescriptor {
17480 [property] ::com::sun::star::awt::Size PageSize;
17482 published service RenderOptions {
17483 [property] ::com::sun::star::awt::XDevice RenderDevice;
17484 [property, optional] boolean IsFirstPage;
17485 [property, optional] boolean IsLastPage;
17486 [property, optional] boolean IsSkipEmptyPages;
17487 [property, optional] string PageRange;
17489 published service ViewSettings {
17490 interface ::com::sun::star::beans::XPropertySet;
17491 [property, optional] boolean ShowHoriRuler;
17492 [property, optional] boolean ShowHoriScrollBar;
17493 [property, optional] short ZoomValue;
17494 [property, optional] boolean ShowVertRuler;
17495 [property, optional] boolean ShowVertScrollBar;
17497 published interface XLineCursor {
17498 interface ::com::sun::star::uno::XInterface;
17499 boolean isAtStartOfLine();
17500 boolean isAtEndOfLine();
17501 void gotoEndOfLine([in] boolean bExpand);
17502 void gotoStartOfLine([in] boolean bExpand);
17504 published interface XPrintJob {
17505 interface ::com::sun::star::uno::XInterface;
17506 sequence< ::com::sun::star::beans::PropertyValue > getPrintOptions();
17507 sequence< ::com::sun::star::beans::PropertyValue > getPrinter();
17508 ::com::sun::star::view::XPrintable getPrintable();
17509 void cancelJob();
17511 published interface XPrintJobListener {
17512 interface ::com::sun::star::lang::XEventListener;
17513 void printJobEvent([in] ::com::sun::star::view::PrintJobEvent Event);
17515 published interface XPrintableListener;
17516 published interface XPrintableBroadcaster {
17517 interface ::com::sun::star::uno::XInterface;
17518 void addPrintableListener([in] ::com::sun::star::view::XPrintableListener xListener);
17519 void removePrintableListener([in] ::com::sun::star::view::XPrintableListener xListener);
17521 published interface XPrintableListener {
17522 interface ::com::sun::star::lang::XEventListener;
17523 void stateChanged([in] ::com::sun::star::view::PrintableStateEvent Event);
17525 published interface XRenderable {
17526 interface ::com::sun::star::uno::XInterface;
17527 long getRendererCount([in] any aSelection, [in] sequence< ::com::sun::star::beans::PropertyValue > xOptions) raises (::com::sun::star::lang::IllegalArgumentException);
17528 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);
17529 void render([in] long nRenderer, [in] any aSelection, [in] sequence< ::com::sun::star::beans::PropertyValue > xOptions) raises (::com::sun::star::lang::IllegalArgumentException);
17531 published interface XViewCursor {
17532 interface ::com::sun::star::uno::XInterface;
17533 boolean goDown([in] short nCount, [in] boolean bExpand);
17534 boolean goUp([in] short nCount, [in] boolean bExpand);
17535 boolean goLeft([in] short nCount, [in] boolean bExpand);
17536 boolean goRight([in] short nCount, [in] boolean bExpand);
17539 module xml {
17540 published service AttributeContainer {
17541 interface ::com::sun::star::container::XNameContainer;
17543 published struct AttributeData {
17544 string Namespace;
17545 string Type;
17546 string Value;
17548 published interface XExportFilter {
17549 interface ::com::sun::star::uno::XInterface;
17550 boolean exporter([in] sequence< ::com::sun::star::beans::PropertyValue > aSourceData, [in] sequence< string > msUserData) raises (::com::sun::star::lang::IllegalArgumentException);
17552 published service ExportFilter {
17553 interface ::com::sun::star::xml::sax::XDocumentHandler;
17554 interface ::com::sun::star::xml::XExportFilter;
17556 published interface XImportFilter {
17557 interface ::com::sun::star::uno::XInterface;
17558 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);
17560 published service ImportFilter {
17561 interface ::com::sun::star::xml::XImportFilter;
17563 published service NamespaceContainer {
17564 interface ::com::sun::star::container::XNameContainer;
17566 published service TextUserDefinedAttributesSupplier {
17567 [property] ::com::sun::star::container::XNameContainer TextUserDefinedAttributes;
17569 published service XMLExportFilter {
17570 service ::com::sun::star::document::ExportFilter;
17572 published service XMLImportFilter {
17573 service ::com::sun::star::document::ImportFilter;
17574 interface ::com::sun::star::xml::sax::XDocumentHandler;
17576 module sax {
17577 published struct InputSource {
17578 ::com::sun::star::io::XInputStream aInputStream;
17579 string sEncoding;
17580 string sPublicId;
17581 string sSystemId;
17583 published interface XDTDHandler;
17584 published interface XEntityResolver;
17585 published interface XErrorHandler;
17586 published interface XParser {
17587 interface ::com::sun::star::uno::XInterface;
17588 void parseStream([in] ::com::sun::star::xml::sax::InputSource aInputSource) raises (::com::sun::star::xml::sax::SAXException, ::com::sun::star::io::IOException);
17589 void setDocumentHandler([in] ::com::sun::star::xml::sax::XDocumentHandler xHandler);
17590 void setErrorHandler([in] ::com::sun::star::xml::sax::XErrorHandler xHandler);
17591 void setDTDHandler([in] ::com::sun::star::xml::sax::XDTDHandler xHandler);
17592 void setEntityResolver([in] ::com::sun::star::xml::sax::XEntityResolver xResolver);
17593 void setLocale([in] ::com::sun::star::lang::Locale locale);
17595 published service Parser: ::com::sun::star::xml::sax::XParser;
17596 published exception SAXInvalidCharacterException: ::com::sun::star::xml::sax::SAXException {
17598 published exception SAXParseException: ::com::sun::star::xml::sax::SAXException {
17599 string PublicId;
17600 string SystemId;
17601 long LineNumber;
17602 long ColumnNumber;
17604 published interface XExtendedDocumentHandler {
17605 interface ::com::sun::star::xml::sax::XDocumentHandler;
17606 void startCDATA() raises (::com::sun::star::xml::sax::SAXException);
17607 void endCDATA() raises (::com::sun::star::xml::sax::SAXException);
17608 void comment([in] string sComment) raises (::com::sun::star::xml::sax::SAXException);
17609 void allowLineBreak() raises (::com::sun::star::xml::sax::SAXException);
17610 void unknown([in] string sString) raises (::com::sun::star::xml::sax::SAXException);
17612 published interface XAttributeList {
17613 interface ::com::sun::star::uno::XInterface;
17614 short getLength();
17615 string getNameByIndex([in] short i);
17616 string getTypeByIndex([in] short i);
17617 string getTypeByName([in] string aName);
17618 string getValueByIndex([in] short i);
17619 string getValueByName([in] string aName);
17621 published interface XDTDHandler {
17622 interface ::com::sun::star::uno::XInterface;
17623 void notationDecl([in] string sName, [in] string sPublicId, [in] string sSystemId);
17624 void unparsedEntityDecl([in] string sName, [in] string sPublicId, [in] string sSystemId, [in] string sNotationName);
17626 published interface XEntityResolver {
17627 interface ::com::sun::star::uno::XInterface;
17628 ::com::sun::star::xml::sax::InputSource resolveEntity([in] string sPublicId, [in] string sSystemId);
17630 published interface XErrorHandler {
17631 interface ::com::sun::star::uno::XInterface;
17632 void error([in] any aSAXParseException) raises (::com::sun::star::xml::sax::SAXException);
17633 void fatalError([in] any aSAXParseException) raises (::com::sun::star::xml::sax::SAXException);
17634 void warning([in] any aSAXParseException) raises (::com::sun::star::xml::sax::SAXException);
17636 published interface XLocator {
17637 interface ::com::sun::star::uno::XInterface;
17638 long getColumnNumber();
17639 long getLineNumber();
17640 string getPublicId();
17641 string getSystemId();