LanguageTool: don't crash if REST protocol isn't set
[LibreOffice.git] / offapi / type_reference / offapi.idl
blobb6fe108e88bfe29452bae3d86fc87f4207e6c455
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();
672 module graphic {
673 published interface XGraphic;
675 module awt {
676 published interface XPopupMenu {
677 interface ::com::sun::star::awt::XMenu;
678 void insertSeparator([in] short nItemPos);
679 void setDefaultItem([in] short nItemId);
680 short getDefaultItem();
681 void checkItem([in] short nItemId, [in] boolean bCheck);
682 boolean isItemChecked([in] short nItemId);
683 short execute([in] ::com::sun::star::awt::XWindowPeer Parent, [in] ::com::sun::star::awt::Rectangle Position, [in] short Direction);
684 boolean isInExecute();
685 void endExecute();
686 void setAcceleratorKeyEvent([in] short nItemId, [in] ::com::sun::star::awt::KeyEvent aKeyEvent);
687 ::com::sun::star::awt::KeyEvent getAcceleratorKeyEvent([in] short nItemId);
688 void setItemImage([in] short nItemId, [in] ::com::sun::star::graphic::XGraphic xGraphic, [in] boolean bScale);
689 ::com::sun::star::graphic::XGraphic getItemImage([in] short nItemId);
691 published service PopupMenu: ::com::sun::star::awt::XPopupMenu;
692 published constants PopupMenuDirection {
693 const short EXECUTE_DEFAULT = 0;
694 const short EXECUTE_DOWN = 1;
695 const short EXECUTE_LEFT = 4;
696 const short EXECUTE_RIGHT = 8;
697 const short EXECUTE_UP = 2;
699 published constants PosSize {
700 const short HEIGHT = 8;
701 const short POS = 3;
702 const short POSSIZE = 15;
703 const short SIZE = 12;
704 const short WIDTH = 4;
705 const short X = 1;
706 const short Y = 2;
708 published exception PrinterException: ::com::sun::star::uno::Exception {
710 published interface XInfoPrinter;
711 published interface XPrinter;
712 published interface XPrinterServer {
713 interface ::com::sun::star::uno::XInterface;
714 sequence< string > getPrinterNames();
715 ::com::sun::star::awt::XPrinter createPrinter([in] string printerName);
716 ::com::sun::star::awt::XInfoPrinter createInfoPrinter([in] string printerName);
718 published enum PushButtonType {
719 STANDARD = 0,
720 OK = 1,
721 CANCEL = 2,
722 HELP = 3
724 published enum RasterOperation {
725 OVERPAINT = 0,
726 XOR = 1,
727 ZEROBITS = 2,
728 ALLBITS = 3,
729 INVERT = 4
731 published constants ScrollBarOrientation {
732 const long HORIZONTAL = 0;
733 const long VERTICAL = 1;
735 published struct Selection {
736 long Min;
737 long Max;
739 published struct SimpleFontMetric {
740 short Ascent;
741 short Descent;
742 short Leading;
743 short Slant;
744 char FirstChar;
745 char LastChar;
747 published struct SpinEvent: ::com::sun::star::lang::EventObject {
748 short dummy1;
750 published constants Style {
751 const short DIALOG = 1;
752 const short FRAME = 0;
754 /** @deprecated */ published struct SystemDependentXWindow {
755 long WindowHandle;
756 hyper DisplayPointer;
758 published constants SystemPointer {
759 const long ARROW = 0;
760 const long CHAIN = 70;
761 const long CHAIN_NOTALLOWED = 71;
762 const long CHART = 65;
763 const long COPYDATA = 41;
764 const long COPYDATALINK = 44;
765 const long COPYFILE = 46;
766 const long COPYFILELINK = 49;
767 const long COPYFILES = 51;
768 const long CROOK = 36;
769 const long CROP = 37;
770 const long CROSS = 5;
771 const long DETECTIVE = 66;
772 const long DRAW_ARC = 57;
773 const long DRAW_BEZIER = 56;
774 const long DRAW_CAPTION = 64;
775 const long DRAW_CIRCLECUT = 59;
776 const long DRAW_CONNECT = 62;
777 const long DRAW_ELLIPSE = 60;
778 const long DRAW_FREEHAND = 61;
779 const long DRAW_LINE = 53;
780 const long DRAW_PIE = 58;
781 const long DRAW_POLYGON = 55;
782 const long DRAW_RECT = 54;
783 const long DRAW_TEXT = 63;
784 const long ESIZE = 10;
785 const long FILL = 31;
786 const long HAND = 27;
787 const long HELP = 4;
788 const long HSHEAR = 33;
789 const long HSIZEBAR = 25;
790 const long HSPLIT = 23;
791 const long INVISIBLE = 1;
792 const long LINKDATA = 42;
793 const long LINKFILE = 47;
794 const long MAGNIFY = 30;
795 const long MIRROR = 35;
796 const long MOVE = 6;
797 const long MOVEBEZIERWEIGHT = 39;
798 const long MOVEDATA = 40;
799 const long MOVEDATALINK = 43;
800 const long MOVEFILE = 45;
801 const long MOVEFILELINK = 48;
802 const long MOVEFILES = 50;
803 const long MOVEPOINT = 38;
804 const long NESIZE = 12;
805 const long NOTALLOWED = 52;
806 const long NSIZE = 7;
807 const long NWSIZE = 11;
808 const long PEN = 29;
809 const long PIVOT_COL = 67;
810 const long PIVOT_FIELD = 69;
811 const long PIVOT_ROW = 68;
812 const long REFHAND = 28;
813 const long ROTATE = 32;
814 const long SESIZE = 14;
815 const long SSIZE = 8;
816 const long SWSIZE = 13;
817 const long TEXT = 3;
818 const long VSHEAR = 34;
819 const long VSIZEBAR = 26;
820 const long VSPLIT = 24;
821 const long WAIT = 2;
822 const long WINDOW_ESIZE = 18;
823 const long WINDOW_NESIZE = 20;
824 const long WINDOW_NSIZE = 15;
825 const long WINDOW_NWSIZE = 19;
826 const long WINDOW_SESIZE = 22;
827 const long WINDOW_SSIZE = 16;
828 const long WINDOW_SWSIZE = 21;
829 const long WINDOW_WSIZE = 17;
830 const long WSIZE = 9;
832 published interface XControlContainer;
833 published interface XTabControllerModel;
834 published interface XTabController {
835 interface ::com::sun::star::uno::XInterface;
836 void setModel([in] ::com::sun::star::awt::XTabControllerModel Model);
837 ::com::sun::star::awt::XTabControllerModel getModel();
838 void setContainer([in] ::com::sun::star::awt::XControlContainer Container);
839 ::com::sun::star::awt::XControlContainer getContainer();
840 sequence< ::com::sun::star::awt::XControl > getControls();
841 void autoTabOrder();
842 void activateTabOrder();
843 void activateFirst();
844 void activateLast();
846 published service TabController: ::com::sun::star::awt::XTabController;
847 published interface XTabControllerModel {
848 interface ::com::sun::star::uno::XInterface;
849 boolean getGroupControl();
850 void setGroupControl([in] boolean GroupControl);
851 void setControlModels([in] sequence< ::com::sun::star::awt::XControlModel > Controls);
852 sequence< ::com::sun::star::awt::XControlModel > getControlModels();
853 void setGroup([in] sequence< ::com::sun::star::awt::XControlModel > Group, [in] string GroupName);
854 long getGroupCount();
855 void getGroup([in] long nGroup, [out] sequence< ::com::sun::star::awt::XControlModel > Group, [out] string Name);
856 void getGroupByName([in] string Name, [out] sequence< ::com::sun::star::awt::XControlModel > Group);
858 published service TabControllerModel {
859 interface ::com::sun::star::awt::XTabControllerModel;
860 interface ::com::sun::star::io::XPersistObject;
862 published constants TextAlign {
863 const long CENTER = 1;
864 const long LEFT = 0;
865 const long RIGHT = 2;
867 published struct TextEvent: ::com::sun::star::lang::EventObject {
868 short dummy1;
871 module datatransfer {
872 module clipboard {
873 published interface XClipboard;
875 module dnd {
876 published interface XDragGestureRecognizer;
877 published interface XDragSource;
878 published interface XDropTarget;
881 module awt {
882 published interface XDataTransferProviderAccess {
883 interface ::com::sun::star::uno::XInterface;
884 ::com::sun::star::datatransfer::dnd::XDragGestureRecognizer getDragGestureRecognizer([in] ::com::sun::star::awt::XWindow window);
885 ::com::sun::star::datatransfer::dnd::XDragSource getDragSource([in] ::com::sun::star::awt::XWindow window);
886 ::com::sun::star::datatransfer::dnd::XDropTarget getDropTarget([in] ::com::sun::star::awt::XWindow window);
887 ::com::sun::star::datatransfer::clipboard::XClipboard getClipboard([in] string clipboardName);
889 published interface XKeyHandler;
890 published interface XTopWindow;
891 published interface XTopWindowListener;
892 /** @deprecated */ published interface XExtendedToolkit {
893 interface ::com::sun::star::uno::XInterface;
894 long getTopWindowCount();
895 ::com::sun::star::awt::XTopWindow getTopWindow([in] long nIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
896 ::com::sun::star::awt::XTopWindow getActiveTopWindow();
897 void addTopWindowListener([in] ::com::sun::star::awt::XTopWindowListener xListener);
898 void removeTopWindowListener([in] ::com::sun::star::awt::XTopWindowListener xListener);
899 void addKeyHandler([in] ::com::sun::star::awt::XKeyHandler xHandler);
900 void removeKeyHandler([in] ::com::sun::star::awt::XKeyHandler xHandler);
901 void addFocusListener([in] ::com::sun::star::awt::XFocusListener xListener);
902 void removeFocusListener([in] ::com::sun::star::awt::XFocusListener xListener);
903 void fireFocusGained([in] ::com::sun::star::uno::XInterface source);
904 void fireFocusLost([in] ::com::sun::star::uno::XInterface source);
906 published interface XMessageBox;
907 published interface XMessageBoxFactory {
908 interface ::com::sun::star::uno::XInterface;
909 ::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);
911 /** @deprecated */ published interface XReschedule {
912 interface ::com::sun::star::uno::XInterface;
913 void reschedule();
915 published interface XSystemChildFactory {
916 interface ::com::sun::star::uno::XInterface;
917 ::com::sun::star::awt::XWindowPeer createSystemChild([in] any Parent, [in] sequence< byte > ProcessId, [in] short SystemType);
919 published enum WindowClass {
920 TOP = 0,
921 MODALTOP = 1,
922 CONTAINER = 2,
923 SIMPLE = 3
925 published struct WindowDescriptor {
926 ::com::sun::star::awt::WindowClass Type;
927 string WindowServiceName;
928 ::com::sun::star::awt::XWindowPeer Parent;
929 short ParentIndex;
930 ::com::sun::star::awt::Rectangle Bounds;
931 long WindowAttributes;
933 published interface XDevice;
934 published interface XRegion;
935 published interface XToolkit {
936 interface ::com::sun::star::uno::XInterface;
937 ::com::sun::star::awt::XWindowPeer getDesktopWindow();
938 ::com::sun::star::awt::Rectangle getWorkArea();
939 ::com::sun::star::awt::XWindowPeer createWindow([in] ::com::sun::star::awt::WindowDescriptor Descriptor) raises (::com::sun::star::lang::IllegalArgumentException);
940 sequence< ::com::sun::star::awt::XWindowPeer > createWindows([in] sequence< ::com::sun::star::awt::WindowDescriptor > Descriptors) raises (::com::sun::star::lang::IllegalArgumentException);
941 ::com::sun::star::awt::XDevice createScreenCompatibleDevice([in] long Width, [in] long Height);
942 ::com::sun::star::awt::XRegion createRegion();
944 published interface XToolkit2 {
945 interface ::com::sun::star::awt::XToolkit;
946 interface ::com::sun::star::awt::XDataTransferProviderAccess;
947 interface ::com::sun::star::awt::XSystemChildFactory;
948 interface ::com::sun::star::awt::XMessageBoxFactory;
949 interface ::com::sun::star::awt::XExtendedToolkit;
950 interface ::com::sun::star::awt::XReschedule;
952 published service Toolkit: ::com::sun::star::awt::XToolkit2;
953 published interface XActionListener;
954 published interface XButton {
955 interface ::com::sun::star::uno::XInterface;
956 void addActionListener([in] ::com::sun::star::awt::XActionListener l);
957 void removeActionListener([in] ::com::sun::star::awt::XActionListener l);
958 void setLabel([in] string Label);
959 void setActionCommand([in] string Command);
961 published interface XLayoutConstrains {
962 interface ::com::sun::star::uno::XInterface;
963 ::com::sun::star::awt::Size getMinimumSize();
964 ::com::sun::star::awt::Size getPreferredSize();
965 ::com::sun::star::awt::Size calcAdjustedSize([in] ::com::sun::star::awt::Size aNewSize);
967 published service UnoControlButton {
968 service ::com::sun::star::awt::UnoControl;
969 interface ::com::sun::star::awt::XButton;
970 interface ::com::sun::star::awt::XLayoutConstrains;
973 module style {
974 published enum VerticalAlignment {
975 TOP = 0,
976 MIDDLE = 1,
977 BOTTOM = 2
980 module awt {
981 published service UnoControlButtonModel {
982 service ::com::sun::star::awt::UnoControlModel;
983 [property, optional] short Align;
984 [property] ::com::sun::star::util::Color BackgroundColor;
985 [property] boolean DefaultButton;
986 [property] boolean Enabled;
987 [property, optional] boolean FocusOnClick;
988 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
989 [property] short FontEmphasisMark;
990 [property] short FontRelief;
991 [property] string HelpText;
992 [property] string HelpURL;
993 [property] short ImageAlign;
994 [property, optional] short ImagePosition;
995 [property] string ImageURL;
996 [property, optional, transient] ::com::sun::star::graphic::XGraphic Graphic;
997 [property] string Label;
998 [property, optional] boolean MultiLine;
999 [property] boolean Printable;
1000 [property] short PushButtonType;
1001 [property, optional] boolean Repeat;
1002 [property, optional] long RepeatDelay;
1003 [property] short State;
1004 [property] boolean Tabstop;
1005 [property] ::com::sun::star::util::Color TextColor;
1006 [property] ::com::sun::star::util::Color TextLineColor;
1007 [property, optional] boolean Toggle;
1008 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1010 published interface XItemListener;
1011 published interface XCheckBox {
1012 interface ::com::sun::star::uno::XInterface;
1013 void addItemListener([in] ::com::sun::star::awt::XItemListener l);
1014 void removeItemListener([in] ::com::sun::star::awt::XItemListener l);
1015 short getState();
1016 void setState([in] short n);
1017 void setLabel([in] string Label);
1018 void enableTriState([in] boolean b);
1020 published service UnoControlCheckBox {
1021 service ::com::sun::star::awt::UnoControl;
1022 interface ::com::sun::star::awt::XCheckBox;
1023 interface ::com::sun::star::awt::XLayoutConstrains;
1025 published service UnoControlCheckBoxModel {
1026 service ::com::sun::star::awt::UnoControlModel;
1027 [property, optional] short Align;
1028 [property, optional] long BackgroundColor;
1029 [property] boolean Enabled;
1030 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1031 [property] short FontEmphasisMark;
1032 [property] short FontRelief;
1033 [property] string HelpText;
1034 [property] string HelpURL;
1035 [property, optional] short ImagePosition;
1036 [property, optional] string ImageURL;
1037 [property, optional, transient] ::com::sun::star::graphic::XGraphic Graphic;
1038 [property] string Label;
1039 [property, optional] boolean MultiLine;
1040 [property] boolean Printable;
1041 [property] short State;
1042 [property] boolean Tabstop;
1043 [property] ::com::sun::star::util::Color TextColor;
1044 [property] ::com::sun::star::util::Color TextLineColor;
1045 [property] boolean TriState;
1046 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1047 [property, optional] short VisualEffect;
1048 [property, optional] short WritingMode;
1050 published interface XTextListener;
1051 published interface XTextComponent {
1052 interface ::com::sun::star::uno::XInterface;
1053 void addTextListener([in] ::com::sun::star::awt::XTextListener l);
1054 void removeTextListener([in] ::com::sun::star::awt::XTextListener l);
1055 void setText([in] string aText);
1056 void insertText([in] ::com::sun::star::awt::Selection Sel, [in] string Text);
1057 string getText();
1058 string getSelectedText();
1059 void setSelection([in] ::com::sun::star::awt::Selection aSelection);
1060 ::com::sun::star::awt::Selection getSelection();
1061 boolean isEditable();
1062 void setEditable([in] boolean bEditable);
1063 void setMaxTextLen([in] short nLen);
1064 short getMaxTextLen();
1066 published interface XTextLayoutConstrains {
1067 interface ::com::sun::star::uno::XInterface;
1068 ::com::sun::star::awt::Size getMinimumSize([in] short nCols, [in] short nLines);
1069 void getColumnsAndLines([out] short nCols, [out] short nLines);
1071 published service UnoControlEdit {
1072 service ::com::sun::star::awt::UnoControl;
1073 interface ::com::sun::star::awt::XTextComponent;
1074 interface ::com::sun::star::awt::XLayoutConstrains;
1075 interface ::com::sun::star::awt::XTextLayoutConstrains;
1077 published interface XComboBox {
1078 interface ::com::sun::star::uno::XInterface;
1079 void addItemListener([in] ::com::sun::star::awt::XItemListener l);
1080 void removeItemListener([in] ::com::sun::star::awt::XItemListener l);
1081 void addActionListener([in] ::com::sun::star::awt::XActionListener l);
1082 void removeActionListener([in] ::com::sun::star::awt::XActionListener l);
1083 void addItem([in] string aItem, [in] short nPos);
1084 void addItems([in] sequence< string > aItems, [in] short nPos);
1085 void removeItems([in] short nPos, [in] short nCount);
1086 short getItemCount();
1087 string getItem([in] short nPos);
1088 sequence< string > getItems();
1089 short getDropDownLineCount();
1090 void setDropDownLineCount([in] short nLines);
1092 published service UnoControlComboBox {
1093 service ::com::sun::star::awt::UnoControlEdit;
1094 interface ::com::sun::star::awt::XComboBox;
1096 interface XItemListListener;
1097 interface XItemList {
1098 interface ::com::sun::star::uno::XInterface;
1099 [attribute, readonly] long ItemCount;
1100 void insertItem([in] long Position, [in] string ItemText, [in] string ItemImageURL) raises (::com::sun::star::lang::IndexOutOfBoundsException);
1101 void insertItemText([in] long Position, [in] string ItemText) raises (::com::sun::star::lang::IndexOutOfBoundsException);
1102 void insertItemImage([in] long Position, [in] string ItemImageURL) raises (::com::sun::star::lang::IndexOutOfBoundsException);
1103 void removeItem([in] long Position) raises (::com::sun::star::lang::IndexOutOfBoundsException);
1104 void removeAllItems();
1105 void setItemText([in] long Position, [in] string ItemText) raises (::com::sun::star::lang::IndexOutOfBoundsException);
1106 void setItemImage([in] long Position, [in] string ItemImageURL) raises (::com::sun::star::lang::IndexOutOfBoundsException);
1107 void setItemTextAndImage([in] long Position, [in] string ItemText, [in] string ItemImageURL) raises (::com::sun::star::lang::IndexOutOfBoundsException);
1108 void setItemData([in] long Position, [in] any ItemData) raises (::com::sun::star::lang::IndexOutOfBoundsException);
1109 string getItemText([in] long Position) raises (::com::sun::star::lang::IndexOutOfBoundsException);
1110 string getItemImage([in] long Position) raises (::com::sun::star::lang::IndexOutOfBoundsException);
1111 ::com::sun::star::beans::Pair< string, string > getItemTextAndImage([in] long Position) raises (::com::sun::star::lang::IndexOutOfBoundsException);
1112 any getItemData([in] long Position) raises (::com::sun::star::lang::IndexOutOfBoundsException);
1113 sequence< ::com::sun::star::beans::Pair< string, string > > getAllItems();
1114 void addItemListListener([in] ::com::sun::star::awt::XItemListListener Listener);
1115 void removeItemListListener([in] ::com::sun::star::awt::XItemListListener Listener);
1117 published service UnoControlComboBoxModel {
1118 service ::com::sun::star::awt::UnoControlModel;
1119 [optional] interface ::com::sun::star::awt::XItemList;
1120 [property, optional] short Align;
1121 [property] boolean Autocomplete;
1122 [property] ::com::sun::star::util::Color BackgroundColor;
1123 [property] short Border;
1124 [property, optional] long BorderColor;
1125 [property] boolean Dropdown;
1126 [property] boolean Enabled;
1127 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1128 [property] short FontEmphasisMark;
1129 [property] short FontRelief;
1130 [property] string HelpText;
1131 [property] string HelpURL;
1132 [property, optional] boolean HideInactiveSelection;
1133 [property] short LineCount;
1134 [property] short MaxTextLen;
1135 [property] boolean Printable;
1136 [property] boolean ReadOnly;
1137 [property] sequence< string > StringItemList;
1138 [property] boolean Tabstop;
1139 [property] string Text;
1140 [property] ::com::sun::star::util::Color TextColor;
1141 [property] ::com::sun::star::util::Color TextLineColor;
1142 [property, optional] short WritingMode;
1143 [property, optional] short MouseWheelBehavior;
1144 [property, optional] sequence< any > TypedItemList;
1146 published interface XControlContainer {
1147 interface ::com::sun::star::uno::XInterface;
1148 void setStatusText([in] string StatusText);
1149 sequence< ::com::sun::star::awt::XControl > getControls();
1150 ::com::sun::star::awt::XControl getControl([in] string aName);
1151 void addControl([in] string Name, [in] ::com::sun::star::awt::XControl Control);
1152 void removeControl([in] ::com::sun::star::awt::XControl Control);
1154 published interface XUnoControlContainer {
1155 interface ::com::sun::star::uno::XInterface;
1156 void setTabControllers([in] sequence< ::com::sun::star::awt::XTabController > TabControllers);
1157 sequence< ::com::sun::star::awt::XTabController > getTabControllers();
1158 void addTabController([in] ::com::sun::star::awt::XTabController TabController);
1159 void removeTabController([in] ::com::sun::star::awt::XTabController TabController);
1161 published service UnoControlContainer {
1162 service ::com::sun::star::awt::UnoControl;
1163 interface ::com::sun::star::awt::XUnoControlContainer;
1164 interface ::com::sun::star::awt::XControlContainer;
1165 interface ::com::sun::star::container::XContainer;
1167 published service UnoControlContainerModel {
1168 service ::com::sun::star::awt::UnoControlModel;
1169 [property] ::com::sun::star::util::Color BackgroundColor;
1170 [property] boolean Enabled;
1171 [property] short Border;
1172 [property, optional] long BorderColor;
1173 [property] boolean Printable;
1174 [property] string Text;
1175 [property] string HelpText;
1176 [property] string HelpURL;
1178 published interface XCurrencyField {
1179 interface ::com::sun::star::uno::XInterface;
1180 void setValue([in] double Value);
1181 double getValue();
1182 void setMin([in] double Value);
1183 double getMin();
1184 void setMax([in] double Value);
1185 double getMax();
1186 void setFirst([in] double Value);
1187 double getFirst();
1188 void setLast([in] double Value);
1189 double getLast();
1190 void setSpinSize([in] double Value);
1191 double getSpinSize();
1192 void setDecimalDigits([in] short nDigits);
1193 short getDecimalDigits();
1194 void setStrictFormat([in] boolean bStrict);
1195 boolean isStrictFormat();
1197 published interface XSpinListener;
1198 published interface XSpinField {
1199 interface ::com::sun::star::uno::XInterface;
1200 void addSpinListener([in] ::com::sun::star::awt::XSpinListener l);
1201 void removeSpinListener([in] ::com::sun::star::awt::XSpinListener l);
1202 void up();
1203 void down();
1204 void first();
1205 void last();
1206 void enableRepeat([in] boolean bRepeat);
1208 published service UnoControlCurrencyField {
1209 service ::com::sun::star::awt::UnoControlEdit;
1210 interface ::com::sun::star::awt::XCurrencyField;
1211 [optional] interface ::com::sun::star::awt::XSpinField;
1213 published service UnoControlCurrencyFieldModel {
1214 service ::com::sun::star::awt::UnoControlModel;
1215 [property] ::com::sun::star::util::Color BackgroundColor;
1216 [property] short Border;
1217 [property, optional] long BorderColor;
1218 [property] string CurrencySymbol;
1219 [property] short DecimalAccuracy;
1220 [property] boolean Enabled;
1221 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1222 [property] short FontEmphasisMark;
1223 [property] short FontRelief;
1224 [property] string HelpText;
1225 [property] string HelpURL;
1226 [property, optional] boolean HideInactiveSelection;
1227 [property] boolean PrependCurrencySymbol;
1228 [property] boolean Printable;
1229 [property] boolean ReadOnly;
1230 [property, optional] boolean Repeat;
1231 [property, optional] long RepeatDelay;
1232 [property] boolean ShowThousandsSeparator;
1233 [property] boolean Spin;
1234 [property] boolean StrictFormat;
1235 [property] boolean Tabstop;
1236 [property] ::com::sun::star::util::Color TextColor;
1237 [property] ::com::sun::star::util::Color TextLineColor;
1238 [property] double Value;
1239 [property] double ValueMax;
1240 [property] double ValueMin;
1241 [property] double ValueStep;
1242 [property, optional] short WritingMode;
1243 [property, optional] short MouseWheelBehavior;
1244 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1247 module util {
1248 published struct Date {
1249 unsigned short Day;
1250 unsigned short Month;
1251 short Year;
1254 module awt {
1255 published interface XDateField {
1256 interface ::com::sun::star::uno::XInterface;
1257 void setDate([in] ::com::sun::star::util::Date Date);
1258 ::com::sun::star::util::Date getDate();
1259 void setMin([in] ::com::sun::star::util::Date Date);
1260 ::com::sun::star::util::Date getMin();
1261 void setMax([in] ::com::sun::star::util::Date Date);
1262 ::com::sun::star::util::Date getMax();
1263 void setFirst([in] ::com::sun::star::util::Date Date);
1264 ::com::sun::star::util::Date getFirst();
1265 void setLast([in] ::com::sun::star::util::Date Date);
1266 ::com::sun::star::util::Date getLast();
1267 void setLongFormat([in] boolean bLong);
1268 boolean isLongFormat();
1269 void setEmpty();
1270 boolean isEmpty();
1271 void setStrictFormat([in] boolean bStrict);
1272 boolean isStrictFormat();
1274 published service UnoControlDateField {
1275 service ::com::sun::star::awt::UnoControlEdit;
1276 interface ::com::sun::star::awt::XDateField;
1277 [optional] interface ::com::sun::star::awt::XSpinField;
1279 published service UnoControlDateFieldModel {
1280 service ::com::sun::star::awt::UnoControlModel;
1281 [property] ::com::sun::star::util::Color BackgroundColor;
1282 [property] short Border;
1283 [property, optional] long BorderColor;
1284 [property] ::com::sun::star::util::Date Date;
1285 [property] short DateFormat;
1286 [property] ::com::sun::star::util::Date DateMax;
1287 [property] ::com::sun::star::util::Date DateMin;
1288 [property] boolean DateShowCentury;
1289 [property] boolean Dropdown;
1290 [property] boolean Enabled;
1291 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1292 [property] short FontEmphasisMark;
1293 [property] short FontRelief;
1294 [property] string HelpText;
1295 [property] string HelpURL;
1296 [property, optional] boolean HideInactiveSelection;
1297 [property] boolean Printable;
1298 [property] boolean ReadOnly;
1299 [property, optional] boolean Repeat;
1300 [property, optional] long RepeatDelay;
1301 [property] boolean Spin;
1302 [property] boolean StrictFormat;
1303 [property] boolean Tabstop;
1304 [property, optional] string Text;
1305 [property] ::com::sun::star::util::Color TextColor;
1306 [property] ::com::sun::star::util::Color TextLineColor;
1307 [property, optional] short WritingMode;
1308 [property, optional] short MouseWheelBehavior;
1309 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1311 published interface XDialog {
1312 interface ::com::sun::star::uno::XInterface;
1313 void setTitle([in] string Title);
1314 string getTitle();
1315 short execute();
1316 void endExecute();
1318 published interface XDialog2 {
1319 interface ::com::sun::star::awt::XDialog;
1320 void endDialog([in] long Result);
1321 void setHelpId([in] string Id);
1323 published interface XTopWindow {
1324 interface ::com::sun::star::uno::XInterface;
1325 void addTopWindowListener([in] ::com::sun::star::awt::XTopWindowListener xListener);
1326 void removeTopWindowListener([in] ::com::sun::star::awt::XTopWindowListener xListener);
1327 void toFront();
1328 void toBack();
1329 void setMenuBar([in] ::com::sun::star::awt::XMenuBar xMenu);
1331 published interface XUnoControlDialog {
1332 interface ::com::sun::star::awt::XControlContainer;
1333 interface ::com::sun::star::awt::XControl;
1334 interface ::com::sun::star::awt::XWindow;
1335 interface ::com::sun::star::awt::XTopWindow;
1336 interface ::com::sun::star::awt::XDialog2;
1338 published service UnoControlDialog: ::com::sun::star::awt::XUnoControlDialog;
1339 published service UnoControlDialogModel {
1340 service ::com::sun::star::awt::UnoControlModel;
1341 interface ::com::sun::star::lang::XMultiServiceFactory;
1342 interface ::com::sun::star::container::XContainer;
1343 interface ::com::sun::star::container::XNameContainer;
1344 [property] ::com::sun::star::util::Color BackgroundColor;
1345 [property] boolean Closeable;
1346 [property] boolean Enabled;
1347 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1348 [property] short FontEmphasisMark;
1349 [property] short FontRelief;
1350 [property] string HelpText;
1351 [property] string HelpURL;
1352 [property] boolean Moveable;
1353 [property] boolean Sizeable;
1354 [property] ::com::sun::star::util::Color TextColor;
1355 [property] ::com::sun::star::util::Color TextLineColor;
1356 [property] string Title;
1357 [property, optional] boolean DesktopAsParent;
1358 [property, optional] string ImageURL;
1359 [property, optional, transient] ::com::sun::star::graphic::XGraphic Graphic;
1360 [property, optional] boolean HScroll;
1361 [property, optional] boolean VScroll;
1362 [property, optional] long ScrollLeft;
1363 [property, optional] long ScrollTop;
1364 [property, optional] long ScrollWidth;
1365 [property, optional] long ScrollHeight;
1367 published service UnoControlEditModel {
1368 service ::com::sun::star::awt::UnoControlModel;
1369 [property] short Align;
1370 [property, optional] boolean AutoHScroll;
1371 [property, optional] boolean AutoVScroll;
1372 [property] ::com::sun::star::util::Color BackgroundColor;
1373 [property] short Border;
1374 [property, optional] long BorderColor;
1375 [property, optional] short EchoChar;
1376 [property] boolean Enabled;
1377 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1378 [property] short FontEmphasisMark;
1379 [property] short FontRelief;
1380 [property] boolean HardLineBreaks;
1381 [property] string HelpText;
1382 [property] string HelpURL;
1383 [property, optional] boolean HideInactiveSelection;
1384 [property] boolean HScroll;
1385 [property, optional] short LineEndFormat;
1386 [property] short MaxTextLen;
1387 [property] boolean MultiLine;
1388 [property, optional] boolean PaintTransparent;
1389 [property] boolean Printable;
1390 [property] boolean ReadOnly;
1391 [property] boolean Tabstop;
1392 [property] string Text;
1393 [property] ::com::sun::star::util::Color TextColor;
1394 [property] ::com::sun::star::util::Color TextLineColor;
1395 [property] boolean VScroll;
1396 [property, optional] short WritingMode;
1397 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1399 published service UnoControlFileControl {
1400 service ::com::sun::star::awt::UnoControlEdit;
1402 published service UnoControlFileControlModel {
1403 service ::com::sun::star::awt::UnoControlModel;
1404 [property] ::com::sun::star::util::Color BackgroundColor;
1405 [property] short Border;
1406 [property, optional] long BorderColor;
1407 [property] boolean Enabled;
1408 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1409 [property] short FontEmphasisMark;
1410 [property] short FontRelief;
1411 [property] string HelpText;
1412 [property] string HelpURL;
1413 [property, optional] boolean HideInactiveSelection;
1414 [property] boolean Printable;
1415 [property, optional] boolean ReadOnly;
1416 [property] boolean Tabstop;
1417 [property] string Text;
1418 [property] ::com::sun::star::util::Color TextColor;
1419 [property] ::com::sun::star::util::Color TextLineColor;
1420 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1422 published service UnoControlFixedLine {
1423 service ::com::sun::star::awt::UnoControl;
1425 published service UnoControlFixedLineModel {
1426 service ::com::sun::star::awt::UnoControlModel;
1427 [property] boolean Enabled;
1428 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1429 [property] short FontEmphasisMark;
1430 [property] short FontRelief;
1431 [property] string HelpText;
1432 [property] string HelpURL;
1433 [property] string Label;
1434 [property] long Orientation;
1435 [property] boolean Printable;
1436 [property] ::com::sun::star::util::Color TextColor;
1437 [property] ::com::sun::star::util::Color TextLineColor;
1439 published interface XFixedText {
1440 interface ::com::sun::star::uno::XInterface;
1441 void setText([in] string Text);
1442 string getText();
1443 void setAlignment([in] short nAlign);
1444 short getAlignment();
1446 published service UnoControlFixedText {
1447 service ::com::sun::star::awt::UnoControl;
1448 interface ::com::sun::star::awt::XFixedText;
1449 interface ::com::sun::star::awt::XLayoutConstrains;
1451 published service UnoControlFixedTextModel {
1452 service ::com::sun::star::awt::UnoControlModel;
1453 [property] short Align;
1454 [property] ::com::sun::star::util::Color BackgroundColor;
1455 [property] short Border;
1456 [property, optional] long BorderColor;
1457 [property] boolean Enabled;
1458 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1459 [property] short FontEmphasisMark;
1460 [property] short FontRelief;
1461 [property] string HelpText;
1462 [property] string HelpURL;
1463 [property] string Label;
1464 [property] boolean MultiLine;
1465 [property] boolean Printable;
1466 [property] ::com::sun::star::util::Color TextColor;
1467 [property] ::com::sun::star::util::Color TextLineColor;
1468 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1469 [property, optional] boolean NoLabel;
1471 published service UnoControlFormattedField {
1472 service ::com::sun::star::awt::UnoControlEdit;
1473 [optional] interface ::com::sun::star::awt::XSpinField;
1476 module util {
1477 published interface XNumberFormatsSupplier;
1479 module awt {
1480 published service UnoControlFormattedFieldModel {
1481 service ::com::sun::star::awt::UnoControlModel;
1482 [property] short Align;
1483 [property] ::com::sun::star::util::Color BackgroundColor;
1484 [property] short Border;
1485 [property, optional] long BorderColor;
1486 [property] any EffectiveDefault;
1487 [property] double EffectiveMax;
1488 [property] double EffectiveMin;
1489 [property] double EffectiveValue;
1490 [property] boolean Enabled;
1491 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1492 [property] short FontEmphasisMark;
1493 [property] short FontRelief;
1494 [property] long FormatKey;
1495 [property] ::com::sun::star::util::XNumberFormatsSupplier FormatsSupplier;
1496 [property] string HelpText;
1497 [property] string HelpURL;
1498 [property, optional] boolean HideInactiveSelection;
1499 [property] short MaxTextLen;
1500 [property] boolean Printable;
1501 [property] boolean ReadOnly;
1502 [property, optional] boolean Repeat;
1503 [property, optional] long RepeatDelay;
1504 [property] boolean Spin;
1505 [property, optional] boolean StrictFormat;
1506 [property] boolean Tabstop;
1507 [property] string Text;
1508 [property] ::com::sun::star::util::Color TextColor;
1509 [property] ::com::sun::star::util::Color TextLineColor;
1510 [property] boolean TreatAsNumber;
1511 [property, optional] short WritingMode;
1512 [property, optional] short MouseWheelBehavior;
1513 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1515 published service UnoControlGroupBox {
1516 service ::com::sun::star::awt::UnoControl;
1518 published service UnoControlGroupBoxModel {
1519 service ::com::sun::star::awt::UnoControlModel;
1520 [property] boolean Enabled;
1521 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1522 [property] short FontEmphasisMark;
1523 [property] short FontRelief;
1524 [property] string HelpText;
1525 [property] string HelpURL;
1526 [property] string Label;
1527 [property] boolean Printable;
1528 [property] ::com::sun::star::util::Color TextColor;
1529 [property] ::com::sun::star::util::Color TextLineColor;
1530 [property, optional] short WritingMode;
1532 published service UnoControlImageControl {
1533 service ::com::sun::star::awt::UnoControl;
1534 interface ::com::sun::star::awt::XLayoutConstrains;
1536 published service UnoControlImageControlModel {
1537 service ::com::sun::star::awt::UnoControlModel;
1538 [property] ::com::sun::star::util::Color BackgroundColor;
1539 [property] short Border;
1540 [property, optional] long BorderColor;
1541 [property] boolean Enabled;
1542 [property] string HelpText;
1543 [property] string HelpURL;
1544 [property] string ImageURL;
1545 [property, optional, transient] ::com::sun::star::graphic::XGraphic Graphic;
1546 [property] boolean Printable;
1547 [property] boolean ScaleImage;
1548 [property, optional] short ScaleMode;
1549 [property, optional] boolean Tabstop;
1551 published interface XListBox {
1552 interface ::com::sun::star::uno::XInterface;
1553 void addItemListener([in] ::com::sun::star::awt::XItemListener l);
1554 void removeItemListener([in] ::com::sun::star::awt::XItemListener l);
1555 void addActionListener([in] ::com::sun::star::awt::XActionListener l);
1556 void removeActionListener([in] ::com::sun::star::awt::XActionListener l);
1557 void addItem([in] string aItem, [in] short nPos);
1558 void addItems([in] sequence< string > aItems, [in] short nPos);
1559 void removeItems([in] short nPos, [in] short nCount);
1560 short getItemCount();
1561 string getItem([in] short nPos);
1562 sequence< string > getItems();
1563 short getSelectedItemPos();
1564 sequence< short > getSelectedItemsPos();
1565 string getSelectedItem();
1566 sequence< string > getSelectedItems();
1567 void selectItemPos([in] short nPos, [in] boolean bSelect);
1568 void selectItemsPos([in] sequence< short > aPositions, [in] boolean bSelect);
1569 void selectItem([in] string aItem, [in] boolean bSelect);
1570 boolean isMutipleMode();
1571 void setMultipleMode([in] boolean bMulti);
1572 short getDropDownLineCount();
1573 void setDropDownLineCount([in] short nLines);
1574 void makeVisible([in] short nEntry);
1576 published service UnoControlListBox {
1577 service ::com::sun::star::awt::UnoControl;
1578 interface ::com::sun::star::awt::XListBox;
1579 interface ::com::sun::star::awt::XLayoutConstrains;
1580 interface ::com::sun::star::awt::XTextLayoutConstrains;
1582 published service UnoControlListBoxModel {
1583 service ::com::sun::star::awt::UnoControlModel;
1584 [optional] interface ::com::sun::star::awt::XItemList;
1585 [property, optional] short Align;
1586 [property] ::com::sun::star::util::Color BackgroundColor;
1587 [property] short Border;
1588 [property, optional] long BorderColor;
1589 [property] boolean Dropdown;
1590 [property] boolean Enabled;
1591 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1592 [property] short FontEmphasisMark;
1593 [property] short FontRelief;
1594 [property] string HelpText;
1595 [property] string HelpURL;
1596 [property] short LineCount;
1597 [property] boolean MultiSelection;
1598 [property] boolean Printable;
1599 [property] boolean ReadOnly;
1600 [property] sequence< short > SelectedItems;
1601 [property] sequence< string > StringItemList;
1602 [property] boolean Tabstop;
1603 [property] ::com::sun::star::util::Color TextColor;
1604 [property] ::com::sun::star::util::Color TextLineColor;
1605 [property, optional] short WritingMode;
1606 [property, optional] short MouseWheelBehavior;
1607 [property, maybevoid, optional] short ItemSeparatorPos;
1608 [property, optional] sequence< any > TypedItemList;
1610 published interface XNumericField {
1611 interface ::com::sun::star::uno::XInterface;
1612 void setValue([in] double Value);
1613 double getValue();
1614 void setMin([in] double Value);
1615 double getMin();
1616 void setMax([in] double Value);
1617 double getMax();
1618 void setFirst([in] double Value);
1619 double getFirst();
1620 void setLast([in] double Value);
1621 double getLast();
1622 void setSpinSize([in] double Value);
1623 double getSpinSize();
1624 void setDecimalDigits([in] short nDigits);
1625 short getDecimalDigits();
1626 void setStrictFormat([in] boolean bStrict);
1627 boolean isStrictFormat();
1629 published service UnoControlNumericField {
1630 service ::com::sun::star::awt::UnoControlEdit;
1631 interface ::com::sun::star::awt::XNumericField;
1632 [optional] interface ::com::sun::star::awt::XSpinField;
1634 published service UnoControlNumericFieldModel {
1635 service ::com::sun::star::awt::UnoControlModel;
1636 [property] ::com::sun::star::util::Color BackgroundColor;
1637 [property] short Border;
1638 [property, optional] long BorderColor;
1639 [property] short DecimalAccuracy;
1640 [property] boolean Enabled;
1641 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1642 [property] short FontEmphasisMark;
1643 [property] short FontRelief;
1644 [property] string HelpText;
1645 [property] string HelpURL;
1646 [property, optional] boolean HideInactiveSelection;
1647 [property] boolean Printable;
1648 [property] boolean ReadOnly;
1649 [property, optional] boolean Repeat;
1650 [property, optional] long RepeatDelay;
1651 [property] boolean ShowThousandsSeparator;
1652 [property] boolean Spin;
1653 [property] boolean StrictFormat;
1654 [property] boolean Tabstop;
1655 [property] ::com::sun::star::util::Color TextColor;
1656 [property] ::com::sun::star::util::Color TextLineColor;
1657 [property] double Value;
1658 [property] double ValueMax;
1659 [property] double ValueMin;
1660 [property] double ValueStep;
1661 [property, optional] short WritingMode;
1662 [property, optional] short MouseWheelBehavior;
1663 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1665 published interface XPatternField {
1666 interface ::com::sun::star::uno::XInterface;
1667 void setMasks([in] string EditMask, [in] string LiteralMask);
1668 void getMasks([out] string EditMask, [out] string LiteralMask);
1669 void setString([in] string Str);
1670 string getString();
1671 void setStrictFormat([in] boolean bStrict);
1672 boolean isStrictFormat();
1674 published service UnoControlPatternField {
1675 service ::com::sun::star::awt::UnoControlEdit;
1676 interface ::com::sun::star::awt::XPatternField;
1677 [optional] interface ::com::sun::star::awt::XSpinField;
1679 published service UnoControlPatternFieldModel {
1680 service ::com::sun::star::awt::UnoControlModel;
1681 [property] ::com::sun::star::util::Color BackgroundColor;
1682 [property] short Border;
1683 [property, optional] long BorderColor;
1684 [property] string EditMask;
1685 [property] boolean Enabled;
1686 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1687 [property] short FontEmphasisMark;
1688 [property] short FontRelief;
1689 [property] string HelpText;
1690 [property] string HelpURL;
1691 [property, optional] boolean HideInactiveSelection;
1692 [property] string LiteralMask;
1693 [property] short MaxTextLen;
1694 [property] boolean Printable;
1695 [property] boolean ReadOnly;
1696 [property] boolean StrictFormat;
1697 [property] boolean Tabstop;
1698 [property] string Text;
1699 [property] ::com::sun::star::util::Color TextColor;
1700 [property] ::com::sun::star::util::Color TextLineColor;
1701 [property, optional] short WritingMode;
1702 [property, optional] short MouseWheelBehavior;
1703 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1705 published interface XProgressBar {
1706 interface ::com::sun::star::uno::XInterface;
1707 void setForegroundColor([in] ::com::sun::star::util::Color Color);
1708 void setBackgroundColor([in] ::com::sun::star::util::Color Color);
1709 void setRange([in] long Min, [in] long Max);
1710 void setValue([in] long Value);
1711 long getValue();
1713 published service UnoControlProgressBar {
1714 service ::com::sun::star::awt::UnoControl;
1715 interface ::com::sun::star::awt::XProgressBar;
1717 published service UnoControlProgressBarModel {
1718 service ::com::sun::star::awt::UnoControlModel;
1719 [property] ::com::sun::star::util::Color BackgroundColor;
1720 [property] short Border;
1721 [property, optional] long BorderColor;
1722 [property] boolean Enabled;
1723 [property] ::com::sun::star::util::Color FillColor;
1724 [property] string HelpText;
1725 [property] string HelpURL;
1726 [property] boolean Printable;
1727 [property] long ProgressValue;
1728 [property] long ProgressValueMax;
1729 [property] long ProgressValueMin;
1731 published interface XRadioButton {
1732 interface ::com::sun::star::uno::XInterface;
1733 void addItemListener([in] ::com::sun::star::awt::XItemListener l);
1734 void removeItemListener([in] ::com::sun::star::awt::XItemListener l);
1735 boolean getState();
1736 void setState([in] boolean b);
1737 void setLabel([in] string Label);
1739 published service UnoControlRadioButton {
1740 service ::com::sun::star::awt::UnoControl;
1741 interface ::com::sun::star::awt::XRadioButton;
1742 interface ::com::sun::star::awt::XLayoutConstrains;
1744 published service UnoControlRadioButtonModel {
1745 service ::com::sun::star::awt::UnoControlModel;
1746 [property, optional] short Align;
1747 [property, optional] long BackgroundColor;
1748 [property] boolean Enabled;
1749 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1750 [property] short FontEmphasisMark;
1751 [property] short FontRelief;
1752 [property] string HelpText;
1753 [property] string HelpURL;
1754 [property, optional] short ImagePosition;
1755 [property, optional] string ImageURL;
1756 [property, optional, transient] ::com::sun::star::graphic::XGraphic Graphic;
1757 [property] string Label;
1758 [property, optional] boolean MultiLine;
1759 [property] boolean Printable;
1760 [property] short State;
1761 [property] boolean Tabstop;
1762 [property] ::com::sun::star::util::Color TextColor;
1763 [property] ::com::sun::star::util::Color TextLineColor;
1764 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1765 [property, optional] short VisualEffect;
1766 [property, optional] short WritingMode;
1768 published interface XAdjustmentListener;
1769 published interface XScrollBar {
1770 interface ::com::sun::star::uno::XInterface;
1771 void addAdjustmentListener([in] ::com::sun::star::awt::XAdjustmentListener l);
1772 void removeAdjustmentListener([in] ::com::sun::star::awt::XAdjustmentListener l);
1773 void setValue([in] long n);
1774 void setValues([in] long nValue, [in] long nVisible, [in] long nMax);
1775 long getValue();
1776 void setMaximum([in] long n);
1777 long getMaximum();
1778 void setLineIncrement([in] long n);
1779 long getLineIncrement();
1780 void setBlockIncrement([in] long n);
1781 long getBlockIncrement();
1782 void setVisibleSize([in] long n);
1783 long getVisibleSize();
1784 void setOrientation([in] long n);
1785 long getOrientation();
1787 published service UnoControlScrollBar {
1788 service ::com::sun::star::awt::UnoControl;
1789 interface ::com::sun::star::awt::XScrollBar;
1791 published service UnoControlScrollBarModel {
1792 service ::com::sun::star::awt::UnoControlModel;
1793 [property, optional] ::com::sun::star::util::Color BackgroundColor;
1794 [property] long BlockIncrement;
1795 [property] short Border;
1796 [property, optional] long BorderColor;
1797 [property] boolean Enabled;
1798 [property] string HelpText;
1799 [property] string HelpURL;
1800 [property] long LineIncrement;
1801 [property, optional] boolean LiveScroll;
1802 [property] long Orientation;
1803 [property] boolean Printable;
1804 [property, optional] long RepeatDelay;
1805 [property] long ScrollValue;
1806 [property, optional] long ScrollValueMin;
1807 [property] long ScrollValueMax;
1808 [property, optional] ::com::sun::star::util::Color SymbolColor;
1809 [property, optional] boolean Tabstop;
1810 [property] long VisibleSize;
1813 module util {
1814 published struct Time {
1815 unsigned long NanoSeconds;
1816 unsigned short Seconds;
1817 unsigned short Minutes;
1818 unsigned short Hours;
1819 boolean IsUTC;
1822 module awt {
1823 published interface XTimeField {
1824 interface ::com::sun::star::uno::XInterface;
1825 void setTime([in] ::com::sun::star::util::Time Time);
1826 ::com::sun::star::util::Time getTime();
1827 void setMin([in] ::com::sun::star::util::Time Time);
1828 ::com::sun::star::util::Time getMin();
1829 void setMax([in] ::com::sun::star::util::Time Time);
1830 ::com::sun::star::util::Time getMax();
1831 void setFirst([in] ::com::sun::star::util::Time Time);
1832 ::com::sun::star::util::Time getFirst();
1833 void setLast([in] ::com::sun::star::util::Time Time);
1834 ::com::sun::star::util::Time getLast();
1835 void setEmpty();
1836 boolean isEmpty();
1837 void setStrictFormat([in] boolean bStrict);
1838 boolean isStrictFormat();
1840 published service UnoControlTimeField {
1841 service ::com::sun::star::awt::UnoControlEdit;
1842 interface ::com::sun::star::awt::XTimeField;
1843 [optional] interface ::com::sun::star::awt::XSpinField;
1845 published service UnoControlTimeFieldModel {
1846 service ::com::sun::star::awt::UnoControlModel;
1847 [property] ::com::sun::star::util::Color BackgroundColor;
1848 [property] short Border;
1849 [property, optional] long BorderColor;
1850 [property] boolean Enabled;
1851 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
1852 [property] short FontEmphasisMark;
1853 [property] short FontRelief;
1854 [property] string HelpText;
1855 [property] string HelpURL;
1856 [property, optional] boolean HideInactiveSelection;
1857 [property] boolean Printable;
1858 [property] boolean ReadOnly;
1859 [property, optional] boolean Repeat;
1860 [property, optional] long RepeatDelay;
1861 [property] boolean Spin;
1862 [property] boolean StrictFormat;
1863 [property] boolean Tabstop;
1864 [property, optional] string Text;
1865 [property] ::com::sun::star::util::Color TextColor;
1866 [property] ::com::sun::star::util::Color TextLineColor;
1867 [property] ::com::sun::star::util::Time Time;
1868 [property] short TimeFormat;
1869 [property] ::com::sun::star::util::Time TimeMax;
1870 [property] ::com::sun::star::util::Time TimeMin;
1871 [property, optional] short WritingMode;
1872 [property, optional] short MouseWheelBehavior;
1873 [property, optional] ::com::sun::star::style::VerticalAlignment VerticalAlign;
1875 published struct VclContainerEvent: ::com::sun::star::lang::EventObject {
1876 ::com::sun::star::uno::XInterface Child;
1878 /** @deprecated */ published constants VclWindowPeerAttribute {
1879 const long AUTOHSCROLL = 1073741824;
1880 const long AUTOVSCROLL = -2147483648;
1881 const long CENTER = 2048;
1882 const long CLIPCHILDREN = 524288;
1883 const long DEFBUTTON = 65536;
1884 const long DEF_CANCEL = 268435456;
1885 const long DEF_NO = -2147483648;
1886 const long DEF_OK = 134217728;
1887 const long DEF_RETRY = 536870912;
1888 const long DEF_YES = 1073741824;
1889 const long DROPDOWN = 32768;
1890 const long GROUP = 2097152;
1891 const long HSCROLL = 256;
1892 const long LEFT = 1024;
1893 const long NOBORDER = 1048576;
1894 const long NOLABEL = 536870912;
1895 const long OK = 4194304;
1896 const long OK_CANCEL = 8388608;
1897 const long READONLY = 262144;
1898 const long RETRY_CANCEL = 67108864;
1899 const long RIGHT = 4096;
1900 const long SORT = 16384;
1901 const long SPIN = 8192;
1902 const long VSCROLL = 512;
1903 const long YES_NO = 16777216;
1904 const long YES_NO_CANCEL = 33554432;
1906 published constants WindowAttribute {
1907 const long BORDER = 16;
1908 const long CLOSEABLE = 128;
1909 const long FULLSIZE = 2;
1910 const long MINSIZE = 8;
1911 const long MOVEABLE = 64;
1912 const long NODECORATION = 512;
1913 const long OPTIMUMSIZE = 4;
1914 const long SHOW = 1;
1915 const long SIZEABLE = 32;
1916 /** @deprecated */ const long SYSTEMDEPENDENT = 256;
1918 published struct WindowEvent: ::com::sun::star::lang::EventObject {
1919 long X;
1920 long Y;
1921 long Width;
1922 long Height;
1923 long LeftInset;
1924 long TopInset;
1925 long RightInset;
1926 long BottomInset;
1928 published interface XActionListener {
1929 interface ::com::sun::star::lang::XEventListener;
1930 void actionPerformed([in] ::com::sun::star::awt::ActionEvent rEvent);
1932 published interface XActivateListener {
1933 interface ::com::sun::star::lang::XEventListener;
1934 void windowActivated([in] ::com::sun::star::lang::EventObject e);
1935 void windowDeactivated([in] ::com::sun::star::lang::EventObject e);
1937 published interface XAdjustmentListener {
1938 interface ::com::sun::star::lang::XEventListener;
1939 void adjustmentValueChanged([in] ::com::sun::star::awt::AdjustmentEvent rEvent);
1941 published interface XBitmap {
1942 interface ::com::sun::star::uno::XInterface;
1943 ::com::sun::star::awt::Size getSize();
1944 sequence< byte > getDIB();
1945 sequence< byte > getMaskDIB();
1947 published interface XDisplayBitmap;
1948 published interface XFont;
1949 published interface XDevice {
1950 interface ::com::sun::star::uno::XInterface;
1951 ::com::sun::star::awt::XGraphics createGraphics();
1952 ::com::sun::star::awt::XDevice createDevice([in] long nWidth, [in] long nHeight);
1953 ::com::sun::star::awt::DeviceInfo getInfo();
1954 sequence< ::com::sun::star::awt::FontDescriptor > getFontDescriptors();
1955 ::com::sun::star::awt::XFont getFont([in] ::com::sun::star::awt::FontDescriptor aDescriptor);
1956 ::com::sun::star::awt::XBitmap createBitmap([in] long nX, [in] long nY, [in] long nWidth, [in] long nHeight);
1957 ::com::sun::star::awt::XDisplayBitmap createDisplayBitmap([in] ::com::sun::star::awt::XBitmap Bitmap);
1959 published interface XDisplayBitmap {
1960 interface ::com::sun::star::uno::XInterface;
1962 published interface XEventHandler;
1963 published interface XDisplayConnection {
1964 interface ::com::sun::star::uno::XInterface;
1965 void addEventHandler([in] any window, [in] ::com::sun::star::awt::XEventHandler eventHandler, [in] long eventMask);
1966 void removeEventHandler([in] any window, [in] ::com::sun::star::awt::XEventHandler eventHandler);
1967 void addErrorHandler([in] ::com::sun::star::awt::XEventHandler errorHandler);
1968 void removeErrorHandler([in] ::com::sun::star::awt::XEventHandler errorHandler);
1969 any getIdentifier();
1971 published interface XEnhancedMouseClickHandler {
1972 interface ::com::sun::star::lang::XEventListener;
1973 boolean mousePressed([in] ::com::sun::star::awt::EnhancedMouseEvent e);
1974 boolean mouseReleased([in] ::com::sun::star::awt::EnhancedMouseEvent e);
1976 published interface XEventHandler {
1977 interface ::com::sun::star::uno::XInterface;
1978 boolean handleEvent([in] any event);
1980 /** @deprecated */ published interface XFileDialog {
1981 interface ::com::sun::star::uno::XInterface;
1982 void setPath([in] string Path);
1983 string getPath();
1984 void setFilters([in] sequence< string > rFilterNames, [in] sequence< string > rMasks);
1985 void setCurrentFilter([in] string Filter);
1986 string getCurrentFilter();
1988 published interface XFocusListener {
1989 interface ::com::sun::star::lang::XEventListener;
1990 void focusGained([in] ::com::sun::star::awt::FocusEvent e);
1991 void focusLost([in] ::com::sun::star::awt::FocusEvent e);
1993 published interface XFont {
1994 interface ::com::sun::star::uno::XInterface;
1995 ::com::sun::star::awt::FontDescriptor getFontDescriptor();
1996 ::com::sun::star::awt::SimpleFontMetric getFontMetric();
1997 short getCharWidth([in] char c);
1998 sequence< short > getCharWidths([in] char nFirst, [in] char nLast);
1999 long getStringWidth([in] string str);
2000 long getStringWidthArray([in] string str, [out] sequence< long > aDXArray);
2001 void getKernPairs([out] sequence< char > Chars1, [out] sequence< char > Chars2, [out] sequence< short > Kerns);
2003 published interface XGraphics {
2004 interface ::com::sun::star::uno::XInterface;
2005 ::com::sun::star::awt::XDevice getDevice();
2006 ::com::sun::star::awt::SimpleFontMetric getFontMetric();
2007 void setFont([in] ::com::sun::star::awt::XFont xNewFont);
2008 void selectFont([in] ::com::sun::star::awt::FontDescriptor aDescription);
2009 void setTextColor([in] ::com::sun::star::util::Color nColor);
2010 void setTextFillColor([in] ::com::sun::star::util::Color nColor);
2011 void setLineColor([in] ::com::sun::star::util::Color nColor);
2012 void setFillColor([in] ::com::sun::star::util::Color nColor);
2013 void setRasterOp([in] ::com::sun::star::awt::RasterOperation ROP);
2014 void setClipRegion([in] ::com::sun::star::awt::XRegion Clipping);
2015 void intersectClipRegion([in] ::com::sun::star::awt::XRegion xClipping);
2016 void push();
2017 void pop();
2018 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);
2019 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);
2020 void drawPixel([in] long X, [in] long Y);
2021 void drawLine([in] long X1, [in] long Y1, [in] long X2, [in] long Y2);
2022 void drawRect([in] long X, [in] long Y, [in] long Width, [in] long Height);
2023 void drawRoundedRect([in] long X, [in] long Y, [in] long Width, [in] long Height, [in] long nHorzRound, [in] long nVertRound);
2024 void drawPolyLine([in] sequence< long > DataX, [in] sequence< long > DataY);
2025 void drawPolygon([in] sequence< long > DataX, [in] sequence< long > DataY);
2026 void drawPolyPolygon([in] sequence< sequence< long > > DataX, [in] sequence< sequence< long > > DataY);
2027 void drawEllipse([in] long X, [in] long Y, [in] long Width, [in] long Height);
2028 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);
2029 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);
2030 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);
2031 void drawGradient([in] long nX, [in] long nY, [in] long nWidth, [in] long Height, [in] ::com::sun::star::awt::Gradient aGradient);
2032 void drawText([in] long X, [in] long Y, [in] string Text);
2033 void drawTextArray([in] long X, [in] long Y, [in] string Text, [in] sequence< long > Longs);
2035 published interface XGraphics2 {
2036 interface ::com::sun::star::awt::XGraphics;
2037 void clear([in] ::com::sun::star::awt::Rectangle aRect);
2038 void drawImage([in] long nX, [in] long nY, [in] long nWidth, [in] long nHeight, [in] short nStyle, [in] ::com::sun::star::graphic::XGraphic aGraphic);
2040 published interface XImageButton {
2041 interface ::com::sun::star::uno::XInterface;
2042 void addActionListener([in] ::com::sun::star::awt::XActionListener l);
2043 void removeActionListener([in] ::com::sun::star::awt::XActionListener l);
2044 void setActionCommand([in] string Command);
2046 published interface XImageProducer;
2047 published interface XImageConsumer {
2048 interface ::com::sun::star::uno::XInterface;
2049 void init([in] long Width, [in] long Height);
2050 void setColorModel([in] short BitCount, [in] sequence< long > RGBAPal, [in] long RedMask, [in] long GreenMask, [in] long BlueMask, [in] long AlphaMask);
2051 void setPixelsByBytes([in] long nX, [in] long nY, [in] long nWidth, [in] long nHeight, [in] sequence< byte > aProducerData, [in] long nOffset, [in] long nScanSize);
2052 void setPixelsByLongs([in] long nX, [in] long nY, [in] long nWidth, [in] long nHeight, [in] sequence< long > aProducerData, [in] long nOffset, [in] long nScanSize);
2053 void complete([in] long Status, [in] ::com::sun::star::awt::XImageProducer xProducer);
2055 published interface XImageProducer {
2056 interface ::com::sun::star::uno::XInterface;
2057 void addConsumer([in] ::com::sun::star::awt::XImageConsumer xConsumer);
2058 void removeConsumer([in] ::com::sun::star::awt::XImageConsumer xConsumer);
2059 void startProduction();
2061 published interface XPrinterPropertySet {
2062 interface ::com::sun::star::beans::XPropertySet;
2063 void setHorizontal([in] boolean bHorizontal) raises (::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException);
2064 sequence< string > getFormDescriptions();
2065 void selectForm([in] string aFormDescription) raises (::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException);
2066 sequence< byte > getBinarySetup();
2067 void setBinarySetup([in] sequence< byte > data) raises (::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException);
2069 published interface XInfoPrinter {
2070 interface ::com::sun::star::awt::XPrinterPropertySet;
2071 ::com::sun::star::awt::XDevice createDevice();
2073 published interface XItemListener {
2074 interface ::com::sun::star::lang::XEventListener;
2075 void itemStateChanged([in] ::com::sun::star::awt::ItemEvent rEvent);
2077 published interface XKeyHandler {
2078 interface ::com::sun::star::lang::XEventListener;
2079 boolean keyPressed([in] ::com::sun::star::awt::KeyEvent aEvent);
2080 boolean keyReleased([in] ::com::sun::star::awt::KeyEvent aEvent);
2082 published interface XKeyListener {
2083 interface ::com::sun::star::lang::XEventListener;
2084 void keyPressed([in] ::com::sun::star::awt::KeyEvent e);
2085 void keyReleased([in] ::com::sun::star::awt::KeyEvent e);
2087 published interface XMenuListener {
2088 interface ::com::sun::star::lang::XEventListener;
2089 void itemHighlighted([in] ::com::sun::star::awt::MenuEvent aEvent);
2090 void itemSelected([in] ::com::sun::star::awt::MenuEvent aEvent);
2091 void itemActivated([in] ::com::sun::star::awt::MenuEvent aEvent);
2092 void itemDeactivated([in] ::com::sun::star::awt::MenuEvent aEvent);
2094 published interface XMessageBox {
2095 interface ::com::sun::star::uno::XInterface;
2096 [attribute] string CaptionText;
2097 [attribute] string MessageText;
2098 short execute();
2100 published interface XMouseClickHandler {
2101 interface ::com::sun::star::lang::XEventListener;
2102 boolean mousePressed([in] ::com::sun::star::awt::MouseEvent e);
2103 boolean mouseReleased([in] ::com::sun::star::awt::MouseEvent e);
2105 published interface XMouseListener {
2106 interface ::com::sun::star::lang::XEventListener;
2107 void mousePressed([in] ::com::sun::star::awt::MouseEvent e);
2108 void mouseReleased([in] ::com::sun::star::awt::MouseEvent e);
2109 void mouseEntered([in] ::com::sun::star::awt::MouseEvent e);
2110 void mouseExited([in] ::com::sun::star::awt::MouseEvent e);
2112 published interface XMouseMotionHandler {
2113 interface ::com::sun::star::lang::XEventListener;
2114 boolean mouseDragged([in] ::com::sun::star::awt::MouseEvent e);
2115 boolean mouseMoved([in] ::com::sun::star::awt::MouseEvent e);
2117 published interface XMouseMotionListener {
2118 interface ::com::sun::star::lang::XEventListener;
2119 void mouseDragged([in] ::com::sun::star::awt::MouseEvent e);
2120 void mouseMoved([in] ::com::sun::star::awt::MouseEvent e);
2122 published interface XPaintListener {
2123 interface ::com::sun::star::lang::XEventListener;
2124 void windowPaint([in] ::com::sun::star::awt::PaintEvent e);
2126 published interface XPrinter {
2127 interface ::com::sun::star::awt::XPrinterPropertySet;
2128 boolean start([in] string nJobName, [in] short nCopies, [in] boolean nCollate) raises (::com::sun::star::awt::PrinterException, ::com::sun::star::lang::IllegalArgumentException);
2129 void end() raises (::com::sun::star::awt::PrinterException);
2130 void terminate();
2131 ::com::sun::star::awt::XDevice startPage() raises (::com::sun::star::awt::PrinterException);
2132 void endPage() raises (::com::sun::star::awt::PrinterException);
2134 /** @deprecated */ published interface XProgressMonitor {
2135 interface ::com::sun::star::awt::XProgressBar;
2136 void addText([in] string Topic, [in] string Text, [in] boolean beforeProgress);
2137 void removeText([in] string Topic, [in] boolean beforeProgress);
2138 void updateText([in] string Topic, [in] string Text, [in] boolean beforeProgress);
2140 published interface XRegion {
2141 interface ::com::sun::star::uno::XInterface;
2142 ::com::sun::star::awt::Rectangle getBounds();
2143 void clear();
2144 void move([in] long nHorzMove, [in] long nVertMove);
2145 void unionRectangle([in] ::com::sun::star::awt::Rectangle Rect);
2146 void intersectRectangle([in] ::com::sun::star::awt::Rectangle Region);
2147 void excludeRectangle([in] ::com::sun::star::awt::Rectangle Rect);
2148 void xOrRectangle([in] ::com::sun::star::awt::Rectangle Rect);
2149 void unionRegion([in] ::com::sun::star::awt::XRegion Region);
2150 void intersectRegion([in] ::com::sun::star::awt::XRegion Region);
2151 void excludeRegion([in] ::com::sun::star::awt::XRegion Region);
2152 void xOrRegion([in] ::com::sun::star::awt::XRegion Region);
2153 sequence< ::com::sun::star::awt::Rectangle > getRectangles();
2155 published interface XSpinListener {
2156 interface ::com::sun::star::lang::XEventListener;
2157 void up([in] ::com::sun::star::awt::SpinEvent rEvent);
2158 void down([in] ::com::sun::star::awt::SpinEvent rEvent);
2159 void first([in] ::com::sun::star::awt::SpinEvent rEvent);
2160 void last([in] ::com::sun::star::awt::SpinEvent rEvent);
2162 published interface XSystemDependentWindowPeer {
2163 interface ::com::sun::star::uno::XInterface;
2164 any getWindowHandle([in] sequence< byte > ProcessId, [in] short SystemType);
2166 published interface XTextArea {
2167 interface ::com::sun::star::uno::XInterface;
2168 string getTextLines();
2170 published interface XTextEditField {
2171 interface ::com::sun::star::uno::XInterface;
2172 void setEchoChar([in] char cEcho);
2174 published interface XTextListener {
2175 interface ::com::sun::star::lang::XEventListener;
2176 void textChanged([in] ::com::sun::star::awt::TextEvent rEvent);
2178 published interface XTopWindowListener {
2179 interface ::com::sun::star::lang::XEventListener;
2180 void windowOpened([in] ::com::sun::star::lang::EventObject e);
2181 void windowClosing([in] ::com::sun::star::lang::EventObject e);
2182 void windowClosed([in] ::com::sun::star::lang::EventObject e);
2183 void windowMinimized([in] ::com::sun::star::lang::EventObject e);
2184 void windowNormalized([in] ::com::sun::star::lang::EventObject e);
2185 void windowActivated([in] ::com::sun::star::lang::EventObject e);
2186 void windowDeactivated([in] ::com::sun::star::lang::EventObject e);
2188 published interface XUserInputInterception {
2189 interface ::com::sun::star::uno::XInterface;
2190 void addKeyHandler([in] ::com::sun::star::awt::XKeyHandler xHandler);
2191 void removeKeyHandler([in] ::com::sun::star::awt::XKeyHandler xHandler);
2192 void addMouseClickHandler([in] ::com::sun::star::awt::XMouseClickHandler xHandler);
2193 void removeMouseClickHandler([in] ::com::sun::star::awt::XMouseClickHandler xHandler);
2195 published interface XVclContainerListener;
2196 /** @deprecated */ published interface XVclContainer {
2197 interface ::com::sun::star::uno::XInterface;
2198 void addVclContainerListener([in] ::com::sun::star::awt::XVclContainerListener l);
2199 void removeVclContainerListener([in] ::com::sun::star::awt::XVclContainerListener l);
2200 sequence< ::com::sun::star::awt::XWindow > getWindows();
2202 /** @deprecated */ published interface XVclContainerListener {
2203 interface ::com::sun::star::lang::XEventListener;
2204 void windowAdded([in] ::com::sun::star::awt::VclContainerEvent e);
2205 void windowRemoved([in] ::com::sun::star::awt::VclContainerEvent e);
2207 /** @deprecated */ published interface XVclContainerPeer {
2208 interface ::com::sun::star::uno::XInterface;
2209 void enableDialogControl([in] boolean bEnable);
2210 void setTabOrder([in] sequence< ::com::sun::star::awt::XWindow > WindowOrder, [in] sequence< any > Tabs, [in] boolean GroupControl);
2211 void setGroup([in] sequence< ::com::sun::star::awt::XWindow > Windows);
2213 published interface XWindowPeer {
2214 interface ::com::sun::star::lang::XComponent;
2215 ::com::sun::star::awt::XToolkit getToolkit();
2216 void setPointer([in] ::com::sun::star::awt::XPointer Pointer);
2217 void setBackground([in] ::com::sun::star::util::Color Color);
2218 void invalidate([in] short Flags);
2219 void invalidateRect([in] ::com::sun::star::awt::Rectangle Rect, [in] short Flags);
2221 /** @deprecated */ published interface XVclWindowPeer {
2222 interface ::com::sun::star::awt::XWindowPeer;
2223 boolean isChild([in] ::com::sun::star::awt::XWindowPeer Peer);
2224 void setDesignMode([in] boolean bOn);
2225 boolean isDesignMode();
2226 void enableClipSiblings([in] boolean bClip);
2227 void setForeground([in] ::com::sun::star::util::Color Color);
2228 void setControlFont([in] ::com::sun::star::awt::FontDescriptor aFont);
2229 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);
2230 void setProperty([in] string PropertyName, [in] any Value);
2231 any getProperty([in] string PropertyName);
2233 published interface XWindow2 {
2234 interface ::com::sun::star::awt::XWindow;
2235 void setOutputSize([in] ::com::sun::star::awt::Size Size);
2236 ::com::sun::star::awt::Size getOutputSize();
2237 boolean isVisible();
2238 boolean isActive();
2239 boolean isEnabled();
2240 boolean hasFocus();
2242 published interface XWindowListener {
2243 interface ::com::sun::star::lang::XEventListener;
2244 void windowResized([in] ::com::sun::star::awt::WindowEvent e);
2245 void windowMoved([in] ::com::sun::star::awt::WindowEvent e);
2246 void windowShown([in] ::com::sun::star::lang::EventObject e);
2247 void windowHidden([in] ::com::sun::star::lang::EventObject e);
2249 module grid {
2250 published interface XGridColumn;
2251 published interface XGridColumnModel {
2252 interface ::com::sun::star::lang::XComponent;
2253 interface ::com::sun::star::container::XContainer;
2254 interface ::com::sun::star::util::XCloneable;
2255 long getColumnCount();
2256 ::com::sun::star::awt::grid::XGridColumn createColumn();
2257 long addColumn([in] ::com::sun::star::awt::grid::XGridColumn column) raises (::com::sun::star::lang::IllegalArgumentException);
2258 void removeColumn([in] long ColumnIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2259 sequence< ::com::sun::star::awt::grid::XGridColumn > getColumns();
2260 ::com::sun::star::awt::grid::XGridColumn getColumn([in] long index) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2261 void setDefaultColumns([in] long elements);
2263 published interface XGridDataModel {
2264 interface ::com::sun::star::lang::XComponent;
2265 interface ::com::sun::star::util::XCloneable;
2266 [attribute, readonly] long RowCount;
2267 [attribute, readonly] long ColumnCount;
2268 any getCellData([in] long Column, [in] long RowIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2269 any getCellToolTip([in] long Column, [in] long RowIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2270 any getRowHeading([in] long RowIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2271 sequence< any > getRowData([in] long RowIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2273 published interface XGridDataListener;
2274 published interface XMutableGridDataModel {
2275 interface ::com::sun::star::awt::grid::XGridDataModel;
2276 void addRow([in] any Heading, [in] sequence< any > Data);
2277 void addRows([in] sequence< any > Headings, [in] sequence< sequence< any > > Data) raises (::com::sun::star::lang::IllegalArgumentException);
2278 void insertRow([in] long Index, [in] any Heading, [in] sequence< any > Data) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2279 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);
2280 void removeRow([in] long RowIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2281 void removeAllRows();
2282 void updateCellData([in] long ColumnIndex, [in] long RowIndex, [in] any Value) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2283 void updateRowData([in] sequence< long > ColumnIndexes, [in] long RowIndex, [in] sequence< any > Values) raises (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException);
2284 void updateRowHeading([in] long RowIndex, [in] any Heading) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2285 void updateCellToolTip([in] long ColumnIndex, [in] long RowIndex, [in] any Value) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2286 void updateRowToolTip([in] long RowIndex, [in] any Value) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2287 void addGridDataListener([in] ::com::sun::star::awt::grid::XGridDataListener Listener);
2288 void removeGridDataListener([in] ::com::sun::star::awt::grid::XGridDataListener Listener);
2290 published service DefaultGridDataModel: ::com::sun::star::awt::grid::XMutableGridDataModel;
2293 module style {
2294 published enum HorizontalAlignment {
2295 LEFT = 0,
2296 CENTER = 1,
2297 RIGHT = 2
2300 module awt {
2301 module grid {
2302 published interface XGridColumnListener;
2303 published interface XGridColumn {
2304 interface ::com::sun::star::lang::XComponent;
2305 interface ::com::sun::star::util::XCloneable;
2306 [attribute] any Identifier;
2307 [attribute] long ColumnWidth;
2308 [attribute] long MinWidth;
2309 [attribute] long MaxWidth;
2310 [attribute] boolean Resizeable;
2311 [attribute] long Flexibility {
2312 set raises (::com::sun::star::lang::IllegalArgumentException);
2314 [attribute] ::com::sun::star::style::HorizontalAlignment HorizontalAlign;
2315 [attribute] string Title;
2316 [attribute] string HelpText;
2317 [attribute, readonly] long Index;
2318 [attribute] long DataColumnIndex;
2319 void addGridColumnListener([in] ::com::sun::star::awt::grid::XGridColumnListener Listener);
2320 void removeGridColumnListener([in] ::com::sun::star::awt::grid::XGridColumnListener Listener);
2322 published struct GridColumnEvent: ::com::sun::star::lang::EventObject {
2323 string AttributeName;
2324 any OldValue;
2325 any NewValue;
2326 long ColumnIndex;
2328 published struct GridDataEvent: ::com::sun::star::lang::EventObject {
2329 long FirstColumn;
2330 long LastColumn;
2331 long FirstRow;
2332 long LastRow;
2334 published struct GridSelectionEvent: ::com::sun::star::lang::EventObject {
2335 sequence< long > SelectedRowIndexes;
2336 sequence< long > SelectedColumnIndexes;
2340 module util {
2341 published exception VetoException: ::com::sun::star::uno::Exception {
2344 module awt {
2345 module grid {
2346 published interface XGridControl {
2347 interface ::com::sun::star::uno::XInterface;
2348 long getColumnAtPoint([in] long X, [in] long Y);
2349 long getRowAtPoint([in] long X, [in] long Y);
2350 long getCurrentColumn();
2351 long getCurrentRow();
2352 void goToCell([in] long ColumnIndex, [in] long RowIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::util::VetoException);
2354 published interface XGridSelectionListener;
2355 published interface XGridRowSelection {
2356 interface ::com::sun::star::uno::XInterface;
2357 void selectAllRows();
2358 void selectRow([in] long RowIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2359 void deselectAllRows();
2360 void deselectRow([in] long RowIndex) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2361 sequence< long > getSelectedRows();
2362 boolean hasSelectedRows();
2363 boolean isRowSelected([in] long RowIndex);
2364 void addSelectionListener([in] ::com::sun::star::awt::grid::XGridSelectionListener listener);
2365 void removeSelectionListener([in] ::com::sun::star::awt::grid::XGridSelectionListener listener);
2369 module view {
2370 published enum SelectionType {
2371 NONE = 0,
2372 SINGLE = 1,
2373 MULTI = 2,
2374 RANGE = 3
2377 module awt {
2378 module grid {
2379 published service UnoControlGridModel {
2380 service ::com::sun::star::awt::UnoControlModel;
2381 [property] boolean ShowRowHeader;
2382 [property] long RowHeaderWidth;
2383 [property] boolean ShowColumnHeader;
2384 [property, maybevoid] long ColumnHeaderHeight;
2385 [property, maybevoid] long RowHeight;
2386 [property] ::com::sun::star::awt::grid::XGridColumnModel ColumnModel;
2387 [property] ::com::sun::star::awt::grid::XGridDataModel GridDataModel;
2388 [property] boolean HScroll;
2389 [property] boolean VScroll;
2390 [property] boolean Tabstop;
2391 [property] ::com::sun::star::view::SelectionType SelectionModel;
2392 [property] boolean UseGridLines;
2393 [property, maybevoid] ::com::sun::star::util::Color GridLineColor;
2394 [property, maybevoid] ::com::sun::star::util::Color HeaderBackgroundColor;
2395 [property, maybevoid] ::com::sun::star::util::Color HeaderTextColor;
2396 [property, maybevoid] ::com::sun::star::util::Color ActiveSelectionBackgroundColor;
2397 [property, maybevoid] ::com::sun::star::util::Color InactiveSelectionBackgroundColor;
2398 [property, maybevoid] ::com::sun::star::util::Color ActiveSelectionTextColor;
2399 [property, maybevoid] ::com::sun::star::util::Color InactiveSelectionTextColor;
2400 [property, maybevoid] sequence< ::com::sun::star::util::Color > RowBackgroundColors;
2401 [property] ::com::sun::star::style::VerticalAlignment VerticalAlign;
2402 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
2403 [property, maybevoid] ::com::sun::star::util::Color TextColor;
2404 [property, maybevoid] ::com::sun::star::util::Color TextLineColor;
2405 [property] short FontEmphasisMark;
2406 [property] short FontRelief;
2407 [property] string HelpText;
2408 [property] string HelpURL;
2410 published interface XGridColumnListener {
2411 interface ::com::sun::star::lang::XEventListener;
2412 void columnChanged([in] ::com::sun::star::awt::grid::GridColumnEvent event);
2414 published interface XGridDataListener {
2415 interface ::com::sun::star::lang::XEventListener;
2416 void rowsInserted([in] ::com::sun::star::awt::grid::GridDataEvent Event);
2417 void rowsRemoved([in] ::com::sun::star::awt::grid::GridDataEvent Event);
2418 void dataChanged([in] ::com::sun::star::awt::grid::GridDataEvent Event);
2419 void rowHeadingChanged([in] ::com::sun::star::awt::grid::GridDataEvent Event);
2421 published interface XGridSelectionListener {
2422 interface ::com::sun::star::lang::XEventListener;
2423 void selectionChanged([in] ::com::sun::star::awt::grid::GridSelectionEvent gridSelectionEvent);
2426 module tab {
2427 published struct TabPageActivatedEvent: ::com::sun::star::lang::EventObject {
2428 short TabPageID;
2430 published interface XTabPage {
2431 interface ::com::sun::star::uno::XInterface;
2433 published service UnoControlTabPage {
2434 service ::com::sun::star::awt::UnoControlContainer;
2435 interface ::com::sun::star::awt::tab::XTabPage;
2437 published interface XTabPageContainerListener;
2438 published interface XTabPageContainer {
2439 interface ::com::sun::star::uno::XInterface;
2440 [attribute] short ActiveTabPageID;
2441 short getTabPageCount();
2442 boolean isTabPageActive([in] short tabPageIndex);
2443 ::com::sun::star::awt::tab::XTabPage getTabPage([in] short tabPageIndex);
2444 ::com::sun::star::awt::tab::XTabPage getTabPageByID([in] short tabPageID);
2445 void addTabPageContainerListener([in] ::com::sun::star::awt::tab::XTabPageContainerListener listener);
2446 void removeTabPageContainerListener([in] ::com::sun::star::awt::tab::XTabPageContainerListener listener);
2448 published service UnoControlTabPageContainer {
2449 service ::com::sun::star::awt::UnoControl;
2450 interface ::com::sun::star::awt::tab::XTabPageContainer;
2452 published interface XTabPageModel;
2453 published interface XTabPageContainerModel {
2454 interface ::com::sun::star::container::XIndexContainer;
2455 interface ::com::sun::star::container::XContainer;
2456 ::com::sun::star::awt::tab::XTabPageModel createTabPage([in] short TabPageID);
2457 ::com::sun::star::awt::tab::XTabPageModel loadTabPage([in] short TabPageID, [in] string ResourceURL);
2459 published service UnoControlTabPageContainerModel {
2460 service ::com::sun::star::awt::UnoControlModel;
2461 interface ::com::sun::star::awt::tab::XTabPageContainerModel;
2463 published interface XTabPageModel {
2464 interface ::com::sun::star::uno::XInterface;
2465 [attribute, readonly] short TabPageID;
2466 [attribute] boolean Enabled;
2467 [attribute] string Title;
2468 [attribute] string ImageURL;
2469 [attribute] string ToolTip;
2471 published service UnoControlTabPageModel {
2472 interface ::com::sun::star::awt::tab::XTabPageModel;
2473 [property, optional] string Title;
2474 [property, optional] string HelpText;
2475 [property, optional] string HelpURL;
2476 [property, optional] boolean HScroll;
2477 [property, optional] boolean VScroll;
2478 [property, optional] long ScrollLeft;
2479 [property, optional] long ScrollTop;
2480 [property, optional] long ScrollWidth;
2481 [property, optional] long ScrollHeight;
2483 published interface XTabPageContainerListener {
2484 interface ::com::sun::star::lang::XEventListener;
2485 void tabPageActivated([in] ::com::sun::star::awt::tab::TabPageActivatedEvent tabPageActivatedEvent);
2489 module view {
2490 published interface XSelectionChangeListener;
2491 published interface XSelectionSupplier {
2492 interface ::com::sun::star::uno::XInterface;
2493 boolean select([in] any xSelection) raises (::com::sun::star::lang::IllegalArgumentException);
2494 any getSelection();
2495 void addSelectionChangeListener([in] ::com::sun::star::view::XSelectionChangeListener xListener);
2496 void removeSelectionChangeListener([in] ::com::sun::star::view::XSelectionChangeListener xListener);
2499 module drawing {
2500 published interface XShape;
2502 module chart {
2503 published interface XAxisXSupplier {
2504 interface ::com::sun::star::uno::XInterface;
2505 ::com::sun::star::drawing::XShape getXAxisTitle();
2506 ::com::sun::star::beans::XPropertySet getXAxis();
2507 ::com::sun::star::beans::XPropertySet getXMainGrid();
2508 ::com::sun::star::beans::XPropertySet getXHelpGrid();
2510 published service ChartAxisXSupplier {
2511 interface ::com::sun::star::chart::XAxisXSupplier;
2512 [property] boolean HasXAxis;
2513 [property] boolean HasXAxisDescription;
2514 [property] boolean HasXAxisGrid;
2515 [property] boolean HasXAxisHelpGrid;
2516 [property] boolean HasXAxisTitle;
2518 published interface XAxisZSupplier {
2519 interface ::com::sun::star::uno::XInterface;
2520 ::com::sun::star::drawing::XShape getZAxisTitle();
2521 ::com::sun::star::beans::XPropertySet getZMainGrid();
2522 ::com::sun::star::beans::XPropertySet getZHelpGrid();
2523 ::com::sun::star::beans::XPropertySet getZAxis();
2525 published service ChartAxisZSupplier {
2526 interface ::com::sun::star::chart::XAxisZSupplier;
2527 [property] boolean HasZAxis;
2528 [property] boolean HasZAxisDescription;
2529 [property] boolean HasZAxisGrid;
2530 [property] boolean HasZAxisHelpGrid;
2531 [property] boolean HasZAxisTitle;
2533 published enum ChartErrorCategory {
2534 NONE = 0,
2535 VARIANCE = 1,
2536 STANDARD_DEVIATION = 2,
2537 PERCENT = 3,
2538 ERROR_MARGIN = 4,
2539 CONSTANT_VALUE = 5
2541 published enum ChartErrorIndicatorType {
2542 NONE = 0,
2543 TOP_AND_BOTTOM = 1,
2544 UPPER = 2,
2545 LOWER = 3
2547 published enum ChartRegressionCurveType {
2548 NONE = 0,
2549 LINEAR = 1,
2550 LOGARITHM = 2,
2551 EXPONENTIAL = 3,
2552 POLYNOMIAL = 4,
2553 POWER = 5
2555 published service ChartStatistics {
2556 interface ::com::sun::star::beans::XPropertySet;
2557 [property] double ConstantErrorLow;
2558 [property] double ConstantErrorHigh;
2559 [property] boolean MeanValue;
2560 /** @deprecated */ [property] ::com::sun::star::chart::ChartErrorCategory ErrorCategory;
2561 [property, optional] long ErrorBarStyle;
2562 [property] double PercentageError;
2563 [property] double ErrorMargin;
2564 [property] ::com::sun::star::chart::ChartErrorIndicatorType ErrorIndicator;
2565 [property] ::com::sun::star::chart::ChartRegressionCurveType RegressionCurves;
2566 [property, optional] string ErrorBarRangePositive;
2567 [property, optional] string ErrorBarRangeNegative;
2569 published interface XAxisYSupplier {
2570 interface ::com::sun::star::uno::XInterface;
2571 ::com::sun::star::drawing::XShape getYAxisTitle();
2572 ::com::sun::star::beans::XPropertySet getYAxis();
2573 ::com::sun::star::beans::XPropertySet getYHelpGrid();
2574 ::com::sun::star::beans::XPropertySet getYMainGrid();
2576 published service ChartAxisYSupplier {
2577 interface ::com::sun::star::chart::XAxisYSupplier;
2578 [property] boolean HasYAxis;
2579 [property] boolean HasYAxisDescription;
2580 [property] boolean HasYAxisGrid;
2581 [property] boolean HasYAxisHelpGrid;
2582 [property] boolean HasYAxisTitle;
2584 published interface XTwoAxisYSupplier {
2585 interface ::com::sun::star::chart::XAxisYSupplier;
2586 ::com::sun::star::beans::XPropertySet getSecondaryYAxis();
2588 published service ChartTwoAxisYSupplier {
2589 service ::com::sun::star::chart::ChartAxisYSupplier;
2590 interface ::com::sun::star::chart::XTwoAxisYSupplier;
2591 [property] boolean HasSecondaryYAxis;
2592 [property] boolean HasSecondaryYAxisDescription;
2593 [property, optional] boolean HasSecondaryYAxisTitle;
2595 published enum ChartDataRowSource {
2596 ROWS = 0,
2597 COLUMNS = 1
2599 interface XAxis;
2600 interface XAxisSupplier {
2601 interface ::com::sun::star::uno::XInterface;
2602 ::com::sun::star::chart::XAxis getAxis([in] long nDimensionIndex);
2603 ::com::sun::star::chart::XAxis getSecondaryAxis([in] long nDimensionIndex);
2606 module drawing {
2607 /** @deprecated */ published interface XShapeDescriptor {
2608 interface ::com::sun::star::uno::XInterface;
2609 string getShapeType();
2611 published interface XShape {
2612 interface ::com::sun::star::drawing::XShapeDescriptor;
2613 ::com::sun::star::awt::Point getPosition();
2614 void setPosition([in] ::com::sun::star::awt::Point aPosition);
2615 ::com::sun::star::awt::Size getSize();
2616 void setSize([in] ::com::sun::star::awt::Size aSize) raises (::com::sun::star::beans::PropertyVetoException);
2619 module chart {
2620 published interface XDiagram {
2621 interface ::com::sun::star::drawing::XShape;
2622 string getDiagramType();
2623 ::com::sun::star::beans::XPropertySet getDataRowProperties([in] long nRow) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2624 ::com::sun::star::beans::XPropertySet getDataPointProperties([in] long nCol, [in] long nRow) raises (::com::sun::star::lang::IndexOutOfBoundsException);
2626 interface XDiagramPositioning {
2627 interface ::com::sun::star::uno::XInterface;
2628 void setAutomaticDiagramPositioning();
2629 boolean isAutomaticDiagramPositioning();
2630 void setDiagramPositionExcludingAxes([in] ::com::sun::star::awt::Rectangle PositionRect);
2631 boolean isExcludingDiagramPositioning();
2632 ::com::sun::star::awt::Rectangle calculateDiagramPositionExcludingAxes();
2633 void setDiagramPositionIncludingAxes([in] ::com::sun::star::awt::Rectangle PositionRect);
2634 ::com::sun::star::awt::Rectangle calculateDiagramPositionIncludingAxes();
2635 void setDiagramPositionIncludingAxesAndAxisTitles([in] ::com::sun::star::awt::Rectangle PositionRect);
2636 ::com::sun::star::awt::Rectangle calculateDiagramPositionIncludingAxesAndAxisTitles();
2638 interface XSecondAxisTitleSupplier {
2639 interface ::com::sun::star::uno::XInterface;
2640 ::com::sun::star::drawing::XShape getSecondXAxisTitle();
2641 ::com::sun::star::drawing::XShape getSecondYAxisTitle();
2644 module xml {
2645 published service UserDefinedAttributesSupplier {
2646 [property] ::com::sun::star::container::XNameContainer UserDefinedAttributes;
2649 module chart {
2650 published service Diagram {
2651 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
2652 interface ::com::sun::star::chart::XDiagram;
2653 interface ::com::sun::star::beans::XPropertySet;
2654 [optional] interface ::com::sun::star::chart::XAxisSupplier;
2655 [optional] interface ::com::sun::star::chart::XSecondAxisTitleSupplier;
2656 [optional] interface ::com::sun::star::chart::XDiagramPositioning;
2657 [property, optional] boolean AutomaticPosition;
2658 [property, optional] boolean AutomaticSize;
2659 [property] ::com::sun::star::chart::ChartDataRowSource DataRowSource;
2660 [property] long DataCaption;
2661 [property, optional] long MissingValueTreatment;
2663 published interface X3DDefaultSetter {
2664 interface ::com::sun::star::uno::XInterface;
2665 void set3DSettingsToDefault();
2666 void setDefaultRotation();
2667 void setDefaultIllumination();
2669 published interface X3DDisplay {
2670 interface ::com::sun::star::uno::XInterface;
2671 ::com::sun::star::beans::XPropertySet getWall();
2672 ::com::sun::star::beans::XPropertySet getFloor();
2674 published service Dim3DDiagram {
2675 interface ::com::sun::star::chart::X3DDisplay;
2676 [optional] interface ::com::sun::star::chart::X3DDefaultSetter;
2677 [property] boolean Dim3D;
2678 [property, optional] long Perspective;
2679 [property, optional] long RotationHorizontal;
2680 [property, optional] long RotationVertical;
2682 published service StackableDiagram {
2683 [property] boolean Percent;
2684 [property] boolean Stacked;
2686 published service AreaDiagram {
2687 service ::com::sun::star::chart::Diagram;
2688 service ::com::sun::star::chart::ChartStatistics;
2689 service ::com::sun::star::chart::ChartAxisXSupplier;
2690 service ::com::sun::star::chart::ChartTwoAxisYSupplier;
2691 service ::com::sun::star::chart::ChartAxisZSupplier;
2692 service ::com::sun::star::chart::Dim3DDiagram;
2693 service ::com::sun::star::chart::StackableDiagram;
2695 published service BarDiagram {
2696 service ::com::sun::star::chart::Diagram;
2697 service ::com::sun::star::chart::ChartStatistics;
2698 service ::com::sun::star::chart::ChartAxisXSupplier;
2699 service ::com::sun::star::chart::ChartTwoAxisYSupplier;
2700 service ::com::sun::star::chart::ChartAxisZSupplier;
2701 service ::com::sun::star::chart::Dim3DDiagram;
2702 service ::com::sun::star::chart::StackableDiagram;
2703 [property] boolean Vertical;
2704 [property, optional] boolean Deep;
2705 [property, optional] boolean StackedBarsConnected;
2706 [property, optional] boolean GroupBarsPerAxis;
2707 /** @deprecated */ [property] long NumberOfLines;
2709 published service BubbleDiagram {
2710 service ::com::sun::star::chart::Diagram;
2711 service ::com::sun::star::chart::ChartAxisXSupplier;
2712 service ::com::sun::star::chart::ChartTwoAxisYSupplier;
2713 [optional] service ::com::sun::star::chart::ChartStatistics;
2715 published service Chart3DBarProperties {
2716 interface ::com::sun::star::beans::XPropertySet;
2717 [property] long SolidType;
2720 module drawing {
2721 published enum BitmapMode {
2722 REPEAT = 0,
2723 STRETCH = 1,
2724 NO_REPEAT = 2
2726 published enum FillStyle {
2727 NONE = 0,
2728 SOLID = 1,
2729 GRADIENT = 2,
2730 HATCH = 3,
2731 BITMAP = 4
2733 published enum HatchStyle {
2734 SINGLE = 0,
2735 DOUBLE = 1,
2736 TRIPLE = 2
2738 published struct Hatch {
2739 ::com::sun::star::drawing::HatchStyle Style;
2740 ::com::sun::star::util::Color Color;
2741 long Distance;
2742 long Angle;
2744 published enum RectanglePoint {
2745 LEFT_TOP = 0,
2746 MIDDLE_TOP = 1,
2747 RIGHT_TOP = 2,
2748 LEFT_MIDDLE = 3,
2749 MIDDLE_MIDDLE = 4,
2750 RIGHT_MIDDLE = 5,
2751 LEFT_BOTTOM = 6,
2752 MIDDLE_BOTTOM = 7,
2753 RIGHT_BOTTOM = 8
2756 module text {
2757 published struct GraphicCrop {
2758 long Top;
2759 long Bottom;
2760 long Left;
2761 long Right;
2764 module drawing {
2765 published service FillProperties {
2766 [property] ::com::sun::star::drawing::FillStyle FillStyle;
2767 [property] ::com::sun::star::util::Color FillColor;
2768 [property] short FillTransparence;
2769 [property] string FillTransparenceGradientName;
2770 [property, optional] ::com::sun::star::awt::Gradient FillTransparenceGradient;
2771 [property] string FillGradientName;
2772 [property, optional] ::com::sun::star::awt::Gradient FillGradient;
2773 [property] string FillHatchName;
2774 [property, optional] ::com::sun::star::drawing::Hatch FillHatch;
2775 [property] boolean FillBackground;
2776 [property] string FillBitmapName;
2777 [property, optional] ::com::sun::star::awt::XBitmap FillBitmap;
2778 /** @deprecated */ [property, optional] string FillBitmapURL;
2779 [property] short FillBitmapPositionOffsetX;
2780 [property] short FillBitmapPositionOffsetY;
2781 [property] short FillBitmapOffsetX;
2782 [property] short FillBitmapOffsetY;
2783 [property] ::com::sun::star::drawing::RectanglePoint FillBitmapRectanglePoint;
2784 [property] boolean FillBitmapLogicalSize;
2785 [property] long FillBitmapSizeX;
2786 [property] long FillBitmapSizeY;
2787 [property] ::com::sun::star::drawing::BitmapMode FillBitmapMode;
2788 [property, optional] boolean FillBitmapStretch;
2789 [property, optional] boolean FillBitmapTile;
2790 [property, optional] ::com::sun::star::text::GraphicCrop GraphicCrop;
2792 published enum LineCap {
2793 BUTT = 0,
2794 ROUND = 1,
2795 SQUARE = 2
2797 published enum DashStyle {
2798 RECT = 0,
2799 ROUND = 1,
2800 RECTRELATIVE = 2,
2801 ROUNDRELATIVE = 3
2803 published struct LineDash {
2804 ::com::sun::star::drawing::DashStyle Style;
2805 short Dots;
2806 long DotLen;
2807 short Dashes;
2808 long DashLen;
2809 long Distance;
2811 published enum LineJoint {
2812 NONE = 0,
2813 MIDDLE = 1,
2814 BEVEL = 2,
2815 MITER = 3,
2816 ROUND = 4
2818 published enum LineStyle {
2819 NONE = 0,
2820 SOLID = 1,
2821 DASH = 2
2823 published enum PolygonFlags {
2824 NORMAL = 0,
2825 SMOOTH = 1,
2826 CONTROL = 2,
2827 SYMMETRIC = 3
2829 published typedef sequence< ::com::sun::star::drawing::PolygonFlags > FlagSequence;
2830 published typedef sequence< ::com::sun::star::drawing::FlagSequence > FlagSequenceSequence;
2831 published typedef sequence< ::com::sun::star::awt::Point > PointSequence;
2832 published typedef sequence< ::com::sun::star::drawing::PointSequence > PointSequenceSequence;
2833 published struct PolyPolygonBezierCoords {
2834 ::com::sun::star::drawing::PointSequenceSequence Coordinates;
2835 ::com::sun::star::drawing::FlagSequenceSequence Flags;
2837 published service LineProperties {
2838 [property] ::com::sun::star::drawing::LineStyle LineStyle;
2839 [property] ::com::sun::star::drawing::LineDash LineDash;
2840 [property, optional] string LineDashName;
2841 [property] ::com::sun::star::util::Color LineColor;
2842 [property] short LineTransparence;
2843 [property] long LineWidth;
2844 [property] ::com::sun::star::drawing::LineJoint LineJoint;
2845 [property, optional] ::com::sun::star::drawing::LineCap LineCap;
2846 [property, optional] string LineStartName;
2847 [property, optional] string LineEndName;
2848 [property, optional] ::com::sun::star::drawing::PolyPolygonBezierCoords LineStart;
2849 [property, optional] ::com::sun::star::drawing::PolyPolygonBezierCoords LineEnd;
2850 [property, optional] boolean LineStartCenter;
2851 [property, optional] long LineStartWidth;
2852 [property, optional] boolean LineEndCenter;
2853 [property, optional] long LineEndWidth;
2856 module chart {
2857 published service ChartArea {
2858 service ::com::sun::star::drawing::FillProperties;
2859 service ::com::sun::star::drawing::LineProperties;
2860 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
2861 interface ::com::sun::star::beans::XPropertySet;
2863 published enum ChartAxisArrangeOrderType {
2864 AUTO = 0,
2865 SIDE_BY_SIDE = 1,
2866 STAGGER_EVEN = 2,
2867 STAGGER_ODD = 3
2869 published enum ChartAxisLabelPosition {
2870 NEAR_AXIS = 0,
2871 NEAR_AXIS_OTHER_SIDE = 1,
2872 OUTSIDE_START = 2,
2873 OUTSIDE_END = 3
2875 published enum ChartAxisMarkPosition {
2876 AT_LABELS = 0,
2877 AT_AXIS = 1,
2878 AT_LABELS_AND_AXIS = 2
2880 published enum ChartAxisPosition {
2881 ZERO = 0,
2882 START = 1,
2883 END = 2,
2884 VALUE = 3
2886 published struct TimeIncrement {
2887 any MajorTimeInterval;
2888 any MinorTimeInterval;
2889 any TimeResolution;
2891 interface XAxis {
2892 interface ::com::sun::star::uno::XInterface;
2893 ::com::sun::star::beans::XPropertySet getAxisTitle();
2894 ::com::sun::star::beans::XPropertySet getMajorGrid();
2895 ::com::sun::star::beans::XPropertySet getMinorGrid();
2898 module table {
2899 published struct BorderLine {
2900 ::com::sun::star::util::Color Color;
2901 short InnerLineWidth;
2902 short OuterLineWidth;
2903 short LineDistance;
2905 published struct BorderLine2: ::com::sun::star::table::BorderLine {
2906 short LineStyle;
2907 unsigned long LineWidth;
2909 published enum ShadowLocation {
2910 NONE = 0,
2911 TOP_LEFT = 1,
2912 TOP_RIGHT = 2,
2913 BOTTOM_LEFT = 3,
2914 BOTTOM_RIGHT = 4
2916 published struct ShadowFormat {
2917 ::com::sun::star::table::ShadowLocation Location;
2918 short ShadowWidth;
2919 boolean IsTransparent;
2920 ::com::sun::star::util::Color Color;
2923 module style {
2924 published service CharacterProperties {
2925 [property] string CharFontName;
2926 [property] string CharFontStyleName;
2927 [property] short CharFontFamily;
2928 [property] short CharFontCharSet;
2929 [property] short CharFontPitch;
2930 [property] ::com::sun::star::util::Color CharColor;
2931 [property, optional] short CharEscapement;
2932 [property] float CharHeight;
2933 [property] short CharUnderline;
2934 [property] float CharWeight;
2935 [property] ::com::sun::star::awt::FontSlant CharPosture;
2936 [property, optional] boolean CharAutoKerning;
2937 [property, optional] ::com::sun::star::util::Color CharBackColor;
2938 [property, optional] long CharShadingValue;
2939 [property, optional] boolean CharBackTransparent;
2940 [property, optional] short CharCaseMap;
2941 [property, optional] boolean CharCrossedOut;
2942 [property, optional] boolean CharFlash;
2943 [property, optional] short CharStrikeout;
2944 [property, optional] boolean CharWordMode;
2945 [property, optional] short CharKerning;
2946 [property] ::com::sun::star::lang::Locale CharLocale;
2947 [property, optional] boolean CharKeepTogether;
2948 [property, optional] boolean CharNoLineBreak;
2949 [property, optional] boolean CharShadowed;
2950 [property, optional] short CharFontType;
2951 [property, optional] string CharStyleName;
2952 [property, optional] boolean CharContoured;
2953 [property, optional] boolean CharCombineIsOn;
2954 [property, optional] string CharCombinePrefix;
2955 [property, optional] string CharCombineSuffix;
2956 [property, optional] short CharEmphasis;
2957 [property, optional] short CharRelief;
2958 [property, optional] string RubyText;
2959 [property, optional] short RubyAdjust;
2960 [property, optional] string RubyCharStyleName;
2961 /** @deprecated */ [property, optional] boolean RubyIsAbove;
2962 [property, optional] short CharRotation;
2963 [property, optional] boolean CharRotationIsFitToLine;
2964 [property, optional] short CharScaleWidth;
2965 [property, optional] string HyperLinkURL;
2966 [property, optional] string HyperLinkTarget;
2967 [property, optional] string HyperLinkName;
2968 [property, optional] string VisitedCharStyleName;
2969 [property, optional] string UnvisitedCharStyleName;
2970 [property, optional] byte CharEscapementHeight;
2971 [property, optional] boolean CharNoHyphenation;
2972 [property] ::com::sun::star::util::Color CharUnderlineColor;
2973 [property] boolean CharUnderlineHasColor;
2974 [property, optional] sequence< string > CharStyleNames;
2975 [property, optional] boolean CharHidden;
2976 [property, optional] ::com::sun::star::container::XNameContainer TextUserDefinedAttributes;
2977 [property, optional] ::com::sun::star::table::BorderLine2 CharLeftBorder;
2978 [property, optional] ::com::sun::star::table::BorderLine2 CharRightBorder;
2979 [property, optional] ::com::sun::star::table::BorderLine2 CharTopBorder;
2980 [property, optional] ::com::sun::star::table::BorderLine2 CharBottomBorder;
2981 [property, optional] long CharBorderDistance;
2982 [property, optional] long CharLeftBorderDistance;
2983 [property, optional] long CharRightBorderDistance;
2984 [property, optional] long CharTopBorderDistance;
2985 [property, optional] long CharBottomBorderDistance;
2986 [property, optional] ::com::sun::star::table::ShadowFormat CharShadowFormat;
2987 [property, optional] ::com::sun::star::util::Color CharHighlight;
2988 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > CharInteropGrabBag;
2989 [property, optional] short RubyPosition;
2990 [property, optional] short CharTransparence;
2993 module chart {
2994 published service ChartAxis {
2995 service ::com::sun::star::drawing::LineProperties;
2996 service ::com::sun::star::style::CharacterProperties;
2997 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
2998 interface ::com::sun::star::beans::XPropertySet;
2999 [optional] interface ::com::sun::star::chart::XAxis;
3000 [property, optional] double Max;
3001 [property, optional] double Min;
3002 [property, optional] double StepMain;
3003 [property, optional] long StepHelpCount;
3004 /** @deprecated */ [property, optional] double StepHelp;
3005 [property, optional] boolean AutoMax;
3006 [property, optional] boolean AutoMin;
3007 [property, optional] boolean AutoStepMain;
3008 [property, optional] boolean AutoStepHelp;
3009 [property, optional] boolean Logarithmic;
3010 [property, optional] long AxisType;
3011 [property, maybevoid, optional] ::com::sun::star::chart::TimeIncrement TimeIncrement;
3012 [property, optional] boolean ReverseDirection;
3013 [property, optional] ::com::sun::star::chart::ChartAxisPosition CrossoverPosition;
3014 [property, optional] double CrossoverValue;
3015 [property, optional] double Origin;
3016 [property, optional] boolean AutoOrigin;
3017 [property] long Marks;
3018 [property] long HelpMarks;
3019 [property, optional] ::com::sun::star::chart::ChartAxisMarkPosition MarkPosition;
3020 [property] boolean DisplayLabels;
3021 [property] long NumberFormat;
3022 [property, optional] boolean LinkNumberFormatToSource;
3023 [property, optional] ::com::sun::star::chart::ChartAxisLabelPosition LabelPosition;
3024 [property] long TextRotation;
3025 [property] ::com::sun::star::chart::ChartAxisArrangeOrderType ArrangeOrder;
3026 [property] boolean TextBreak;
3027 [property] boolean TextCanOverlap;
3028 [property] long Overlap;
3029 [property] long GapWidth;
3031 published constants ChartAxisAssign {
3032 const long PRIMARY_Y = 2;
3033 const long SECONDARY_Y = 4;
3035 published constants ChartAxisMarks {
3036 const long INNER = 1;
3037 const long NONE = 0;
3038 const long OUTER = 2;
3040 published constants ChartAxisType {
3041 const long AUTOMATIC = 0;
3042 const long CATEGORY = 1;
3043 const long DATE = 2;
3045 published interface XChartDataChangeEventListener;
3046 published interface XChartData {
3047 interface ::com::sun::star::uno::XInterface;
3048 void addChartDataChangeEventListener([in] ::com::sun::star::chart::XChartDataChangeEventListener aListener);
3049 void removeChartDataChangeEventListener([in] ::com::sun::star::chart::XChartDataChangeEventListener aListener);
3050 double getNotANumber();
3051 boolean isNotANumber([in] double nNumber);
3053 published service ChartData {
3054 interface ::com::sun::star::chart::XChartData;
3056 published interface XChartDataArray {
3057 interface ::com::sun::star::chart::XChartData;
3058 sequence< sequence< double > > getData();
3059 void setData([in] sequence< sequence< double > > aData);
3060 sequence< string > getRowDescriptions();
3061 void setRowDescriptions([in] sequence< string > aRowDescriptions);
3062 sequence< string > getColumnDescriptions();
3063 void setColumnDescriptions([in] sequence< string > aColumnDescriptions);
3065 published service ChartDataArray {
3066 service ::com::sun::star::chart::ChartData;
3067 interface ::com::sun::star::chart::XChartDataArray;
3069 published constants ChartDataCaption {
3070 const long CUSTOM = 32;
3071 const long DATA_SERIES = 64;
3072 /** @deprecated */ const long FORMAT = 8;
3073 const long NONE = 0;
3074 const long PERCENT = 2;
3075 const long SYMBOL = 16;
3076 const long TEXT = 4;
3077 const long VALUE = 1;
3079 published enum ChartDataChangeType {
3080 ALL = 0,
3081 DATA_RANGE = 1,
3082 COLUMN_INSERTED = 2,
3083 ROW_INSERTED = 3,
3084 COLUMN_DELETED = 4,
3085 ROW_DELETED = 5
3087 published struct ChartDataChangeEvent: ::com::sun::star::lang::EventObject {
3088 ::com::sun::star::chart::ChartDataChangeType Type;
3089 short StartColumn;
3090 short EndColumn;
3091 short StartRow;
3092 short EndRow;
3094 /** @deprecated */ published struct ChartDataValue {
3095 double Value;
3096 double HighError;
3097 double LowError;
3099 /** @deprecated */ published typedef sequence< ::com::sun::star::chart::ChartDataValue > ChartDataPoint;
3100 published service ChartDataPointProperties {
3101 service ::com::sun::star::drawing::LineProperties;
3102 service ::com::sun::star::style::CharacterProperties;
3103 [optional] service ::com::sun::star::drawing::FillProperties;
3104 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
3105 [optional] service ::com::sun::star::chart::Chart3DBarProperties;
3106 interface ::com::sun::star::beans::XPropertySet;
3107 [property] long DataCaption;
3108 [property, optional] string LabelSeparator;
3109 [property, optional] long NumberFormat;
3110 [property, optional] long PercentageNumberFormat;
3111 [property, optional] long LabelPlacement;
3112 [property, optional] long SymbolType;
3113 /** @deprecated */ [property, optional] string SymbolBitmapURL;
3114 [property, optional] long SegmentOffset;
3115 [property, optional] boolean TextWordWrap;
3116 [property, optional] ::com::sun::star::graphic::XGraphic SymbolBitmap;
3118 /** @deprecated */ published struct ChartDataRow {
3119 string Name;
3120 sequence< sequence< ::com::sun::star::chart::ChartDataValue > > Points;
3122 published service ChartDataRowProperties {
3123 service ::com::sun::star::chart::ChartDataPointProperties;
3124 [optional] service ::com::sun::star::chart::ChartStatistics;
3125 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
3126 interface ::com::sun::star::beans::XPropertySet;
3127 [property] long Axis;
3128 [property, optional, readonly] ::com::sun::star::beans::XPropertySet DataRegressionProperties;
3129 [property, optional, readonly] ::com::sun::star::beans::XPropertySet DataErrorProperties;
3130 [property, optional, readonly] ::com::sun::star::beans::XPropertySet DataMeanValueProperties;
3133 module frame {
3134 published interface XController;
3135 published interface XModel {
3136 interface ::com::sun::star::lang::XComponent;
3137 boolean attachResource([in] string URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments);
3138 string getURL();
3139 sequence< ::com::sun::star::beans::PropertyValue > getArgs();
3140 void connectController([in] ::com::sun::star::frame::XController Controller);
3141 void disconnectController([in] ::com::sun::star::frame::XController Controller);
3142 void lockControllers();
3143 void unlockControllers();
3144 boolean hasControllersLocked();
3145 ::com::sun::star::frame::XController getCurrentController();
3146 void setCurrentController([in] ::com::sun::star::frame::XController Controller) raises (::com::sun::star::container::NoSuchElementException);
3147 ::com::sun::star::uno::XInterface getCurrentSelection();
3150 module chart {
3151 published interface XChartDocument {
3152 interface ::com::sun::star::frame::XModel;
3153 ::com::sun::star::drawing::XShape getTitle();
3154 ::com::sun::star::drawing::XShape getSubTitle();
3155 ::com::sun::star::drawing::XShape getLegend();
3156 ::com::sun::star::beans::XPropertySet getArea();
3157 ::com::sun::star::chart::XDiagram getDiagram();
3158 void setDiagram([in] ::com::sun::star::chart::XDiagram xDiagram);
3159 ::com::sun::star::chart::XChartData getData();
3160 void attachData([in] ::com::sun::star::chart::XChartData xData);
3163 module drawing {
3164 published interface XDrawPage;
3165 /** @deprecated */ published interface XDrawPageSupplier {
3166 interface ::com::sun::star::uno::XInterface;
3167 ::com::sun::star::drawing::XDrawPage getDrawPage();
3170 module chart {
3171 published service ChartDocument {
3172 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
3173 interface ::com::sun::star::chart::XChartDocument;
3174 interface ::com::sun::star::beans::XPropertySet;
3175 [optional] interface ::com::sun::star::drawing::XDrawPageSupplier;
3176 [property] boolean HasMainTitle;
3177 [property] boolean HasSubTitle;
3178 [property] boolean HasLegend;
3180 published service ChartGrid {
3181 service ::com::sun::star::drawing::LineProperties;
3182 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
3183 interface ::com::sun::star::beans::XPropertySet;
3185 published enum ChartLegendPosition {
3186 NONE = 0,
3187 LEFT = 1,
3188 TOP = 2,
3189 RIGHT = 3,
3190 BOTTOM = 4
3193 module drawing {
3194 published struct HomogenMatrixLine3 {
3195 double Column1;
3196 double Column2;
3197 double Column3;
3199 published struct HomogenMatrix3 {
3200 ::com::sun::star::drawing::HomogenMatrixLine3 Line1;
3201 ::com::sun::star::drawing::HomogenMatrixLine3 Line2;
3202 ::com::sun::star::drawing::HomogenMatrixLine3 Line3;
3204 published interface XGluePointsSupplier {
3205 interface ::com::sun::star::uno::XInterface;
3206 ::com::sun::star::container::XIndexContainer getGluePoints();
3209 module style {
3210 published interface XStyle;
3212 module drawing {
3213 published service Shape {
3214 interface ::com::sun::star::beans::XPropertySet;
3215 interface ::com::sun::star::drawing::XShape;
3216 interface ::com::sun::star::lang::XComponent;
3217 interface ::com::sun::star::drawing::XShapeDescriptor;
3218 [optional] interface ::com::sun::star::drawing::XGluePointsSupplier;
3219 [optional] interface ::com::sun::star::beans::XTolerantMultiPropertySet;
3220 [property, optional] long ZOrder;
3221 [property, optional] short LayerID;
3222 [property, optional] string LayerName;
3223 [property, optional] boolean Visible;
3224 [property, optional] boolean Printable;
3225 [property, optional] boolean MoveProtect;
3226 [property, optional] string Name;
3227 [property, optional] boolean SizeProtect;
3228 [property, optional] ::com::sun::star::style::XStyle Style;
3229 [property, optional] ::com::sun::star::drawing::HomogenMatrix3 Transformation;
3230 [property, optional] ::com::sun::star::container::XNameContainer ShapeUserDefinedAttributes;
3231 [property, optional] long NavigationOrder;
3232 [property, optional] string Hyperlink;
3233 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > InteropGrabBag;
3234 [property, optional] short RelativeHeight;
3235 [property, optional] short RelativeWidth;
3236 [property, optional] short RelativeHeightRelation;
3237 [property, optional] short RelativeWidthRelation;
3240 module chart {
3241 published service ChartLegend {
3242 service ::com::sun::star::drawing::Shape;
3243 service ::com::sun::star::style::CharacterProperties;
3244 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
3245 [property, optional] boolean AutomaticPosition;
3246 [property] ::com::sun::star::chart::ChartLegendPosition Alignment;
3248 published service ChartLine {
3249 service ::com::sun::star::drawing::LineProperties;
3250 interface ::com::sun::star::beans::XPropertySet;
3252 published service ChartPieSegmentProperties {
3253 service ::com::sun::star::chart::ChartDataPointProperties;
3254 interface ::com::sun::star::beans::XPropertySet;
3255 [property] long SegmentOffset;
3257 published struct ChartSeriesAddress {
3258 string DataRangeAddress;
3259 string LabelAddress;
3260 sequence< string > DomainRangeAddresses;
3262 published constants ChartSolidType {
3263 const long CONE = 2;
3264 const long CYLINDER = 1;
3265 const long PYRAMID = 3;
3266 const long RECTANGULAR_SOLID = 0;
3268 published constants ChartSymbolType {
3269 const long AUTO = -2;
3270 const long BITMAPURL = -1;
3271 const long NONE = -3;
3272 const long SYMBOL0 = 0;
3273 const long SYMBOL1 = 1;
3274 const long SYMBOL2 = 2;
3275 const long SYMBOL3 = 3;
3276 const long SYMBOL4 = 4;
3277 const long SYMBOL5 = 5;
3278 const long SYMBOL6 = 6;
3279 const long SYMBOL7 = 7;
3281 published service ChartTableAddressSupplier {
3282 [property] string CategoriesRangeAddress;
3283 [property] sequence< ::com::sun::star::chart::ChartSeriesAddress > SeriesAddresses;
3284 [property, optional] string MainTitleAddress;
3285 [property, optional] string SubTitleAddress;
3287 published service ChartTitle {
3288 service ::com::sun::star::drawing::Shape;
3289 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
3290 [property, optional] boolean AutomaticPosition;
3291 [property] long TextRotation;
3292 [property] string String;
3294 published interface XTwoAxisXSupplier {
3295 interface ::com::sun::star::chart::XAxisXSupplier;
3296 ::com::sun::star::beans::XPropertySet getSecondaryXAxis();
3298 published service ChartTwoAxisXSupplier {
3299 service ::com::sun::star::chart::ChartAxisXSupplier;
3300 interface ::com::sun::star::chart::XTwoAxisXSupplier;
3301 [property] boolean HasSecondaryXAxis;
3302 [property] boolean HasSecondaryXAxisDescription;
3303 [property, optional] boolean HasSecondaryXAxisTitle;
3305 published constants DataLabelPlacement {
3306 const long AVOID_OVERLAP = 0;
3307 const long BOTTOM = 6;
3308 const long BOTTOM_LEFT = 5;
3309 const long BOTTOM_RIGHT = 7;
3310 const long CENTER = 1;
3311 const long CUSTOM = 13;
3312 const long INSIDE = 10;
3313 const long LEFT = 4;
3314 const long NEAR_ORIGIN = 12;
3315 const long OUTSIDE = 11;
3316 const long RIGHT = 8;
3317 const long TOP = 2;
3318 const long TOP_LEFT = 3;
3319 const long TOP_RIGHT = 9;
3321 published service DonutDiagram {
3322 service ::com::sun::star::chart::Diagram;
3324 published constants ErrorBarStyle {
3325 const long ABSOLUTE = 3;
3326 const long ERROR_MARGIN = 5;
3327 const long FROM_DATA = 7;
3328 const long NONE = 0;
3329 const long RELATIVE = 4;
3330 const long STANDARD_DEVIATION = 2;
3331 const long STANDARD_ERROR = 6;
3332 const long VARIANCE = 1;
3334 published service FilledNetDiagram {
3335 service ::com::sun::star::chart::Diagram;
3336 service ::com::sun::star::chart::ChartAxisXSupplier;
3337 service ::com::sun::star::chart::ChartAxisYSupplier;
3338 service ::com::sun::star::chart::StackableDiagram;
3340 published service LineDiagram {
3341 service ::com::sun::star::chart::Diagram;
3342 service ::com::sun::star::chart::ChartStatistics;
3343 service ::com::sun::star::chart::ChartAxisXSupplier;
3344 service ::com::sun::star::chart::ChartTwoAxisYSupplier;
3345 service ::com::sun::star::chart::ChartAxisZSupplier;
3346 service ::com::sun::star::chart::Dim3DDiagram;
3347 service ::com::sun::star::chart::StackableDiagram;
3348 [property] long SymbolType;
3349 [property, optional] ::com::sun::star::awt::Size SymbolSize;
3350 /** @deprecated */ [property, optional] string SymbolBitmapURL;
3351 [property] boolean Lines;
3352 [property] long SplineType;
3353 [property, optional] long SplineOrder;
3354 [property, optional] long SplineResolution;
3355 /** @deprecated */ [property, optional] ::com::sun::star::graphic::XGraphic SymbolBitmap;
3357 published constants MissingValueTreatment {
3358 const long CONTINUE = 2;
3359 const long LEAVE_GAP = 0;
3360 const long USE_ZERO = 1;
3362 published service NetDiagram {
3363 service ::com::sun::star::chart::Diagram;
3364 service ::com::sun::star::chart::StackableDiagram;
3365 service ::com::sun::star::chart::ChartAxisYSupplier;
3367 published service PieDiagram {
3368 service ::com::sun::star::chart::Diagram;
3369 service ::com::sun::star::chart::Dim3DDiagram;
3371 published interface XStatisticDisplay {
3372 interface ::com::sun::star::uno::XInterface;
3373 ::com::sun::star::beans::XPropertySet getUpBar();
3374 ::com::sun::star::beans::XPropertySet getDownBar();
3375 ::com::sun::star::beans::XPropertySet getMinMaxLine();
3377 published service StockDiagram {
3378 service ::com::sun::star::chart::ChartStatistics;
3379 service ::com::sun::star::chart::Diagram;
3380 service ::com::sun::star::chart::ChartAxisXSupplier;
3381 service ::com::sun::star::chart::ChartTwoAxisYSupplier;
3382 interface ::com::sun::star::chart::XStatisticDisplay;
3383 [property] boolean Volume;
3384 [property] boolean UpDown;
3386 published struct TimeInterval {
3387 long Number;
3388 long TimeUnit;
3390 published constants TimeUnit {
3391 const long DAY = 0;
3392 const long MONTH = 1;
3393 const long YEAR = 2;
3395 published interface XChartDataChangeEventListener {
3396 interface ::com::sun::star::lang::XEventListener;
3397 void chartDataChanged([in] ::com::sun::star::chart::ChartDataChangeEvent aEvent);
3399 published interface XComplexDescriptionAccess {
3400 interface ::com::sun::star::chart::XChartDataArray;
3401 sequence< sequence< string > > getComplexRowDescriptions();
3402 void setComplexRowDescriptions([in] sequence< sequence< string > > rRowDescriptions);
3403 sequence< sequence< string > > getComplexColumnDescriptions();
3404 void setComplexColumnDescriptions([in] sequence< sequence< string > > rColumnDescriptions);
3406 published interface XDateCategories {
3407 interface ::com::sun::star::uno::XInterface;
3408 void setDateCategories([in] sequence< double > rDates);
3409 sequence< double > getDateCategories();
3411 published service XYDiagram {
3412 service ::com::sun::star::chart::Diagram;
3413 service ::com::sun::star::chart::ChartStatistics;
3414 service ::com::sun::star::chart::ChartAxisXSupplier;
3415 service ::com::sun::star::chart::ChartTwoAxisYSupplier;
3416 service ::com::sun::star::chart::LineDiagram;
3419 module style {
3420 published service CharacterPropertiesAsian {
3421 [property] float CharHeightAsian;
3422 [property] float CharWeightAsian;
3423 [property] string CharFontNameAsian;
3424 [property] string CharFontStyleNameAsian;
3425 [property] short CharFontFamilyAsian;
3426 [property] short CharFontCharSetAsian;
3427 [property] short CharFontPitchAsian;
3428 [property] ::com::sun::star::awt::FontSlant CharPostureAsian;
3429 [property] ::com::sun::star::lang::Locale CharLocaleAsian;
3431 published service CharacterPropertiesComplex {
3432 [property] float CharHeightComplex;
3433 [property] float CharWeightComplex;
3434 [property] string CharFontNameComplex;
3435 [property] string CharFontStyleNameComplex;
3436 [property] short CharFontFamilyComplex;
3437 [property] short CharFontCharSetComplex;
3438 [property] short CharFontPitchComplex;
3439 [property] ::com::sun::star::awt::FontSlant CharPostureComplex;
3440 [property] ::com::sun::star::lang::Locale CharLocaleComplex;
3443 module util {
3444 published exception CloseVetoException: ::com::sun::star::uno::Exception {
3447 module style {
3448 published interface XStyleFamiliesSupplier {
3449 interface ::com::sun::star::uno::XInterface;
3450 ::com::sun::star::container::XNameAccess getStyleFamilies();
3453 module util {
3454 published interface XNumberFormats;
3455 published interface XNumberFormatsSupplier {
3456 interface ::com::sun::star::uno::XInterface;
3457 ::com::sun::star::beans::XPropertySet getNumberFormatSettings();
3458 ::com::sun::star::util::XNumberFormats getNumberFormats();
3461 module drawing {
3462 published enum Alignment {
3463 TOP_LEFT = 0,
3464 TOP = 1,
3465 TOP_RIGHT = 2,
3466 LEFT = 3,
3467 CENTER = 4,
3468 RIGHT = 5,
3469 BOTTOM_LEFT = 6,
3470 BOTTOM = 7,
3471 BOTTOM_RIGHT = 8
3473 published struct Direction3D {
3474 double DirectionX;
3475 double DirectionY;
3476 double DirectionZ;
3479 module style {
3480 published interface XStyle {
3481 interface ::com::sun::star::container::XNamed;
3482 boolean isUserDefined();
3483 boolean isInUse();
3484 string getParentStyle();
3485 void setParentStyle([in] string aParentStyle) raises (::com::sun::star::container::NoSuchElementException);
3487 published service Style {
3488 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
3489 interface ::com::sun::star::style::XStyle;
3490 interface ::com::sun::star::beans::XPropertySet;
3491 [optional] interface ::com::sun::star::beans::XMultiPropertySet;
3492 [optional] interface ::com::sun::star::beans::XMultiPropertyStates;
3493 [property, optional, readonly] boolean IsPhysical;
3494 [property, optional] string FollowStyle;
3495 [property, optional, readonly] string DisplayName;
3496 [property, optional] string IsAutoUpdate;
3497 [property, optional] sequence< ::com::sun::star::beans::NamedValue > ParaStyleConditions;
3498 [property, optional] boolean Hidden;
3499 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > StyleInteropGrabBag;
3501 published interface XDefaultsSupplier {
3502 interface ::com::sun::star::uno::XInterface;
3503 ::com::sun::star::beans::XPropertySet getDefaults();
3505 published enum BreakType {
3506 NONE = 0,
3507 COLUMN_BEFORE = 1,
3508 COLUMN_AFTER = 2,
3509 COLUMN_BOTH = 3,
3510 PAGE_BEFORE = 4,
3511 PAGE_AFTER = 5,
3512 PAGE_BOTH = 6
3514 published struct DropCapFormat {
3515 byte Lines;
3516 byte Count;
3517 short Distance;
3519 published enum GraphicLocation {
3520 NONE = 0,
3521 LEFT_TOP = 1,
3522 MIDDLE_TOP = 2,
3523 RIGHT_TOP = 3,
3524 LEFT_MIDDLE = 4,
3525 MIDDLE_MIDDLE = 5,
3526 RIGHT_MIDDLE = 6,
3527 LEFT_BOTTOM = 7,
3528 MIDDLE_BOTTOM = 8,
3529 RIGHT_BOTTOM = 9,
3530 AREA = 10,
3531 TILED = 11
3533 published struct LineSpacing {
3534 short Mode;
3535 short Height;
3537 published enum ParagraphAdjust {
3538 LEFT = 0,
3539 RIGHT = 1,
3540 BLOCK = 2,
3541 CENTER = 3,
3542 STRETCH = 4
3544 published enum TabAlign {
3545 LEFT = 0,
3546 CENTER = 1,
3547 RIGHT = 2,
3548 DECIMAL = 3,
3549 DEFAULT = 4
3551 published struct TabStop {
3552 long Position;
3553 ::com::sun::star::style::TabAlign Alignment;
3554 char DecimalChar;
3555 char FillChar;
3557 published service ParagraphProperties {
3558 [property] ::com::sun::star::style::ParagraphAdjust ParaAdjust;
3559 [property, optional] ::com::sun::star::style::LineSpacing ParaLineSpacing;
3560 [property, optional] ::com::sun::star::util::Color ParaBackColor;
3561 [property, optional] boolean ParaBackTransparent;
3562 /** @deprecated */ [property, optional] string ParaBackGraphicURL;
3563 [property, optional] string ParaBackGraphicFilter;
3564 [property, optional] ::com::sun::star::style::GraphicLocation ParaBackGraphicLocation;
3565 [property] short ParaLastLineAdjust;
3566 [property, optional] boolean ParaExpandSingleWord;
3567 [property] long ParaLeftMargin;
3568 [property] long ParaRightMargin;
3569 [property] long ParaTopMargin;
3570 [property] long ParaBottomMargin;
3571 [property, optional] boolean ParaContextMargin;
3572 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > ParaInteropGrabBag;
3573 [property, optional] boolean ParaLineNumberCount;
3574 [property, optional] long ParaLineNumberStartValue;
3575 [property, optional] string PageDescName;
3576 [property, optional] short PageNumberOffset;
3577 [property, optional] boolean ParaRegisterModeActive;
3578 [property, optional] sequence< ::com::sun::star::style::TabStop > ParaTabStops;
3579 [property, optional] string ParaStyleName;
3580 [property, maybevoid, optional, readonly] string PageStyleName;
3581 [property, optional] ::com::sun::star::style::DropCapFormat DropCapFormat;
3582 [property, optional] boolean DropCapWholeWord;
3583 [property, optional] boolean ParaKeepTogether;
3584 [property, optional] boolean ParaSplit;
3585 [property, optional] short NumberingLevel;
3586 [property, optional] ::com::sun::star::container::XIndexReplace NumberingRules;
3587 [property, optional] short NumberingStartValue;
3588 [property, optional] boolean ParaIsNumberingRestart;
3589 [property, optional] string NumberingStyleName;
3590 [property, optional] byte ParaOrphans;
3591 [property, optional] byte ParaWidows;
3592 [property, optional] ::com::sun::star::table::ShadowFormat ParaShadowFormat;
3593 [property, optional] ::com::sun::star::table::BorderLine LeftBorder;
3594 [property, optional] ::com::sun::star::table::BorderLine RightBorder;
3595 [property, optional] ::com::sun::star::table::BorderLine TopBorder;
3596 [property, optional] ::com::sun::star::table::BorderLine BottomBorder;
3597 [property, optional] long BorderDistance;
3598 [property, optional] long LeftBorderDistance;
3599 [property, optional] long RightBorderDistance;
3600 [property, optional] long TopBorderDistance;
3601 [property, optional] long BottomBorderDistance;
3602 [property, optional] ::com::sun::star::style::BreakType BreakType;
3603 [property, optional] string DropCapCharStyleName;
3604 [property, optional] long ParaFirstLineIndent;
3605 [property, optional] boolean ParaIsAutoFirstLineIndent;
3606 [property] boolean ParaIsHyphenation;
3607 [property, optional] short ParaHyphenationMaxHyphens;
3608 [property, optional] short ParaHyphenationMaxLeadingChars;
3609 [property, optional] short ParaHyphenationMaxTrailingChars;
3610 [property, optional] short ParaVertAlignment;
3611 [property, optional] ::com::sun::star::container::XNameContainer ParaUserDefinedAttributes;
3612 [property, maybevoid, optional] boolean NumberingIsNumber;
3613 [property, maybevoid, optional] boolean ParaIsConnectBorder;
3614 [property, optional] string ListId;
3615 [property, optional] short OutlineLevel;
3616 [property, optional] ::com::sun::star::graphic::XGraphic ParaBackGraphic;
3617 [property, optional, readonly] boolean ContinueingPreviousSubTree;
3618 [property, optional, readonly] string ListLabelString;
3619 [property, optional] boolean ParaHyphenationNoCaps;
3622 module util {
3623 published interface XModifyListener;
3624 published interface XModifyBroadcaster {
3625 interface ::com::sun::star::uno::XInterface;
3626 void addModifyListener([in] ::com::sun::star::util::XModifyListener aListener);
3627 void removeModifyListener([in] ::com::sun::star::util::XModifyListener aListener);
3630 module sdbc {
3631 published exception SQLException: ::com::sun::star::uno::Exception {
3632 string SQLState;
3633 long ErrorCode;
3634 any NextException;
3637 module util {
3638 published struct DateTime {
3639 unsigned long NanoSeconds;
3640 unsigned short Seconds;
3641 unsigned short Minutes;
3642 unsigned short Hours;
3643 unsigned short Day;
3644 unsigned short Month;
3645 short Year;
3646 boolean IsUTC;
3649 module sdbc {
3650 published interface XArray;
3651 published interface XBlob;
3652 published interface XClob;
3653 published interface XRef;
3654 published interface XParameters {
3655 interface ::com::sun::star::uno::XInterface;
3656 void setNull([in] long parameterIndex, [in] long sqlType) raises (::com::sun::star::sdbc::SQLException);
3657 void setObjectNull([in] long parameterIndex, [in] long sqlType, [in] string typeName) raises (::com::sun::star::sdbc::SQLException);
3658 void setBoolean([in] long parameterIndex, [in] boolean x) raises (::com::sun::star::sdbc::SQLException);
3659 void setByte([in] long parameterIndex, [in] byte x) raises (::com::sun::star::sdbc::SQLException);
3660 void setShort([in] long parameterIndex, [in] short x) raises (::com::sun::star::sdbc::SQLException);
3661 void setInt([in] long parameterIndex, [in] long x) raises (::com::sun::star::sdbc::SQLException);
3662 void setLong([in] long parameterIndex, [in] hyper x) raises (::com::sun::star::sdbc::SQLException);
3663 void setFloat([in] long parameterIndex, [in] float x) raises (::com::sun::star::sdbc::SQLException);
3664 void setDouble([in] long parameterIndex, [in] double x) raises (::com::sun::star::sdbc::SQLException);
3665 void setString([in] long parameterIndex, [in] string x) raises (::com::sun::star::sdbc::SQLException);
3666 void setBytes([in] long parameterIndex, [in] sequence< byte > x) raises (::com::sun::star::sdbc::SQLException);
3667 void setDate([in] long parameterIndex, [in] ::com::sun::star::util::Date x) raises (::com::sun::star::sdbc::SQLException);
3668 void setTime([in] long parameterIndex, [in] ::com::sun::star::util::Time x) raises (::com::sun::star::sdbc::SQLException);
3669 void setTimestamp([in] long parameterIndex, [in] ::com::sun::star::util::DateTime x) raises (::com::sun::star::sdbc::SQLException);
3670 void setBinaryStream([in] long parameterIndex, [in] ::com::sun::star::io::XInputStream x, [in] long length) raises (::com::sun::star::sdbc::SQLException);
3671 void setCharacterStream([in] long parameterIndex, [in] ::com::sun::star::io::XInputStream x, [in] long length) raises (::com::sun::star::sdbc::SQLException);
3672 void setObject([in] long parameterIndex, [in] any x) raises (::com::sun::star::sdbc::SQLException);
3673 void setObjectWithInfo([in] long parameterIndex, [in] any x, [in] long targetSqlType, [in] long scale) raises (::com::sun::star::sdbc::SQLException);
3674 void setRef([in] long parameterIndex, [in] ::com::sun::star::sdbc::XRef x) raises (::com::sun::star::sdbc::SQLException);
3675 void setBlob([in] long parameterIndex, [in] ::com::sun::star::sdbc::XBlob x) raises (::com::sun::star::sdbc::SQLException);
3676 void setClob([in] long parameterIndex, [in] ::com::sun::star::sdbc::XClob x) raises (::com::sun::star::sdbc::SQLException);
3677 void setArray([in] long parameterIndex, [in] ::com::sun::star::sdbc::XArray x) raises (::com::sun::star::sdbc::SQLException);
3678 void clearParameters() raises (::com::sun::star::sdbc::SQLException);
3680 published interface XResultSet {
3681 interface ::com::sun::star::uno::XInterface;
3682 boolean next() raises (::com::sun::star::sdbc::SQLException);
3683 boolean isBeforeFirst() raises (::com::sun::star::sdbc::SQLException);
3684 boolean isAfterLast() raises (::com::sun::star::sdbc::SQLException);
3685 boolean isFirst() raises (::com::sun::star::sdbc::SQLException);
3686 boolean isLast() raises (::com::sun::star::sdbc::SQLException);
3687 void beforeFirst() raises (::com::sun::star::sdbc::SQLException);
3688 void afterLast() raises (::com::sun::star::sdbc::SQLException);
3689 boolean first() raises (::com::sun::star::sdbc::SQLException);
3690 boolean last() raises (::com::sun::star::sdbc::SQLException);
3691 long getRow() raises (::com::sun::star::sdbc::SQLException);
3692 boolean absolute([in] long row) raises (::com::sun::star::sdbc::SQLException);
3693 boolean relative([in] long rows) raises (::com::sun::star::sdbc::SQLException);
3694 boolean previous() raises (::com::sun::star::sdbc::SQLException);
3695 void refreshRow() raises (::com::sun::star::sdbc::SQLException);
3696 boolean rowUpdated() raises (::com::sun::star::sdbc::SQLException);
3697 boolean rowInserted() raises (::com::sun::star::sdbc::SQLException);
3698 boolean rowDeleted() raises (::com::sun::star::sdbc::SQLException);
3699 ::com::sun::star::uno::XInterface getStatement() raises (::com::sun::star::sdbc::SQLException);
3701 published interface XRowSetListener;
3702 published interface XRowSet {
3703 interface ::com::sun::star::sdbc::XResultSet;
3704 void execute() raises (::com::sun::star::sdbc::SQLException);
3705 void addRowSetListener([in] ::com::sun::star::sdbc::XRowSetListener listener);
3706 void removeRowSetListener([in] ::com::sun::star::sdbc::XRowSetListener listener);
3709 module view {
3710 published interface XSelectionChangeListener {
3711 interface ::com::sun::star::lang::XEventListener;
3712 void selectionChanged([in] ::com::sun::star::lang::EventObject aEvent);
3715 module configuration {
3716 published service HierarchyElement {
3717 interface ::com::sun::star::container::XHierarchicalName;
3718 interface ::com::sun::star::container::XNamed;
3719 [optional] interface ::com::sun::star::beans::XProperty;
3720 [optional] interface ::com::sun::star::beans::XPropertyWithState;
3721 [optional] interface ::com::sun::star::container::XChild;
3724 module util {
3725 published interface XChangesListener;
3726 published interface XChangesNotifier {
3727 interface ::com::sun::star::uno::XInterface;
3728 void addChangesListener([in] ::com::sun::star::util::XChangesListener aListener);
3729 void removeChangesListener([in] ::com::sun::star::util::XChangesListener aListener);
3732 module configuration {
3733 published service AccessRootElement {
3734 service ::com::sun::star::configuration::HierarchyElement;
3735 interface ::com::sun::star::lang::XComponent;
3736 interface ::com::sun::star::util::XChangesNotifier;
3737 [optional] interface ::com::sun::star::lang::XLocalizable;
3739 published service AdministrationProvider {
3740 interface ::com::sun::star::lang::XMultiServiceFactory;
3741 interface ::com::sun::star::lang::XComponent;
3743 published exception CannotLoadConfigurationException: ::com::sun::star::uno::Exception {
3745 published service HierarchyAccess {
3746 interface ::com::sun::star::container::XNameAccess;
3747 interface ::com::sun::star::container::XHierarchicalNameAccess;
3748 interface ::com::sun::star::container::XContainer;
3749 interface ::com::sun::star::beans::XExactName;
3750 [optional] interface ::com::sun::star::beans::XPropertySetInfo;
3751 [optional] interface ::com::sun::star::beans::XPropertyState;
3752 [optional] interface ::com::sun::star::beans::XMultiPropertyStates;
3754 published service PropertyHierarchy {
3755 interface ::com::sun::star::beans::XPropertySet;
3756 interface ::com::sun::star::beans::XMultiPropertySet;
3757 interface ::com::sun::star::beans::XHierarchicalPropertySet;
3758 interface ::com::sun::star::beans::XMultiHierarchicalPropertySet;
3760 published service GroupAccess {
3761 service ::com::sun::star::configuration::HierarchyAccess;
3762 service ::com::sun::star::configuration::PropertyHierarchy;
3763 [optional] interface ::com::sun::star::beans::XPropertyState;
3764 [optional] interface ::com::sun::star::beans::XMultiPropertyStates;
3766 published service GroupElement {
3767 service ::com::sun::star::configuration::HierarchyElement;
3768 interface ::com::sun::star::container::XChild;
3770 published interface XTemplateContainer {
3771 interface ::com::sun::star::uno::XInterface;
3772 string getElementTemplateName();
3775 module util {
3776 published interface XStringEscape {
3777 interface ::com::sun::star::uno::XInterface;
3778 string escapeString([in] string aString) raises (::com::sun::star::lang::IllegalArgumentException);
3779 string unescapeString([in] string aEscapedString) raises (::com::sun::star::lang::IllegalArgumentException);
3782 module configuration {
3783 published service SimpleSetAccess {
3784 interface ::com::sun::star::container::XNameAccess;
3785 [optional] interface ::com::sun::star::configuration::XTemplateContainer;
3786 [optional] interface ::com::sun::star::util::XStringEscape;
3787 [optional] interface ::com::sun::star::container::XContainer;
3789 published service SetAccess {
3790 service ::com::sun::star::configuration::HierarchyAccess;
3791 service ::com::sun::star::configuration::SimpleSetAccess;
3792 interface ::com::sun::star::container::XContainer;
3794 published interface XTemplateInstance {
3795 interface ::com::sun::star::uno::XInterface;
3796 string getTemplateName();
3798 published service SetElement {
3799 service ::com::sun::star::configuration::HierarchyElement;
3800 interface ::com::sun::star::container::XChild;
3801 interface ::com::sun::star::lang::XComponent;
3802 interface ::com::sun::star::configuration::XTemplateInstance;
3804 published service ConfigurationAccess {
3805 service ::com::sun::star::configuration::HierarchyAccess;
3806 service ::com::sun::star::configuration::HierarchyElement;
3807 [optional] service ::com::sun::star::configuration::SetAccess;
3808 [optional] service ::com::sun::star::configuration::GroupAccess;
3809 [optional] service ::com::sun::star::configuration::AccessRootElement;
3810 [optional] service ::com::sun::star::configuration::SetElement;
3811 [optional] service ::com::sun::star::configuration::GroupElement;
3813 /** @deprecated */ published service ConfigurationProvider {
3814 interface ::com::sun::star::lang::XMultiServiceFactory;
3815 interface ::com::sun::star::lang::XComponent;
3818 module util {
3819 published interface XFlushListener;
3820 published interface XFlushable {
3821 interface ::com::sun::star::uno::XInterface;
3822 void flush();
3823 void addFlushListener([in] ::com::sun::star::util::XFlushListener l);
3824 void removeFlushListener([in] ::com::sun::star::util::XFlushListener l);
3827 module configuration {
3828 published service ConfigurationRegistry {
3829 interface ::com::sun::star::registry::XSimpleRegistry;
3830 interface ::com::sun::star::util::XFlushable;
3832 published service GroupUpdate {
3833 service ::com::sun::star::configuration::GroupAccess;
3834 interface ::com::sun::star::container::XNameReplace;
3836 published service SimpleSetUpdate {
3837 service ::com::sun::star::configuration::SimpleSetAccess;
3838 interface ::com::sun::star::container::XNameContainer;
3839 [optional] interface ::com::sun::star::lang::XSingleServiceFactory;
3840 [optional] interface ::com::sun::star::lang::XMultiServiceFactory;
3842 published service SetUpdate {
3843 service ::com::sun::star::configuration::SetAccess;
3844 service ::com::sun::star::configuration::SimpleSetUpdate;
3847 module util {
3848 published struct ElementChange {
3849 any Accessor;
3850 any Element;
3851 any ReplacedElement;
3853 published typedef sequence< ::com::sun::star::util::ElementChange > ChangesSet;
3854 published interface XChangesBatch {
3855 interface ::com::sun::star::uno::XInterface;
3856 void commitChanges() raises (::com::sun::star::lang::WrappedTargetException);
3857 boolean hasPendingChanges();
3858 ::com::sun::star::util::ChangesSet getPendingChanges();
3861 module configuration {
3862 published service UpdateRootElement {
3863 service ::com::sun::star::configuration::AccessRootElement;
3864 interface ::com::sun::star::util::XChangesBatch;
3866 published service ConfigurationUpdateAccess {
3867 service ::com::sun::star::configuration::ConfigurationAccess;
3868 [optional] service ::com::sun::star::configuration::SetUpdate;
3869 [optional] service ::com::sun::star::configuration::GroupUpdate;
3870 [optional] service ::com::sun::star::configuration::UpdateRootElement;
3872 published exception CorruptedConfigurationException: ::com::sun::star::uno::RuntimeException {
3873 string Details;
3875 published exception CorruptedUIConfigurationException: ::com::sun::star::configuration::CorruptedConfigurationException {
3878 module util {
3879 published interface XRefreshListener;
3880 published interface XRefreshable {
3881 interface ::com::sun::star::uno::XInterface;
3882 void refresh();
3883 void addRefreshListener([in] ::com::sun::star::util::XRefreshListener l);
3884 void removeRefreshListener([in] ::com::sun::star::util::XRefreshListener l);
3887 module configuration {
3888 published service DefaultProvider {
3889 service ::com::sun::star::configuration::ConfigurationProvider;
3890 [optional] interface ::com::sun::star::util::XRefreshable;
3891 [optional] interface ::com::sun::star::util::XFlushable;
3892 [optional] interface ::com::sun::star::lang::XLocalizable;
3893 [property, optional] boolean EnableAsync;
3895 published exception InstallationIncompleteException: ::com::sun::star::configuration::CannotLoadConfigurationException {
3897 published exception InvalidBootstrapFileException: ::com::sun::star::configuration::CannotLoadConfigurationException {
3898 string BootstrapFileURL;
3900 published exception MissingBootstrapFileException: ::com::sun::star::configuration::CannotLoadConfigurationException {
3901 string BootstrapFileURL;
3903 module backend {
3904 published exception BackendSetupException: ::com::sun::star::configuration::CannotLoadConfigurationException {
3905 any BackendException;
3907 published exception AuthenticationFailedException: ::com::sun::star::configuration::backend::BackendSetupException {
3909 published exception BackendAccessException: ::com::sun::star::lang::WrappedTargetException {
3911 published interface XLayer;
3912 published interface XUpdateHandler;
3913 published interface XBackend {
3914 interface ::com::sun::star::uno::XInterface;
3915 sequence< ::com::sun::star::configuration::backend::XLayer > listOwnLayers([in] string aComponent) raises (::com::sun::star::configuration::backend::BackendAccessException, ::com::sun::star::lang::IllegalArgumentException);
3916 ::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);
3917 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);
3918 ::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);
3920 published interface XBackendEntities {
3921 interface ::com::sun::star::uno::XInterface;
3922 string getOwnerEntity();
3923 string getAdminEntity();
3924 boolean supportsEntity([in] string aEntity) raises (::com::sun::star::configuration::backend::BackendAccessException);
3925 boolean isEqualEntity([in] string aEntity, [in] string aOtherEntity) raises (::com::sun::star::configuration::backend::BackendAccessException, ::com::sun::star::lang::IllegalArgumentException);
3927 published interface XSchema;
3928 published interface XSchemaSupplier {
3929 interface ::com::sun::star::uno::XInterface;
3930 ::com::sun::star::configuration::backend::XSchema getComponentSchema([in] string aComponent) raises (::com::sun::star::configuration::backend::BackendAccessException, ::com::sun::star::lang::IllegalArgumentException);
3932 published service Backend {
3933 interface ::com::sun::star::configuration::backend::XSchemaSupplier;
3934 interface ::com::sun::star::configuration::backend::XBackend;
3935 [optional] interface ::com::sun::star::configuration::backend::XBackendEntities;
3937 published service BackendAdapter {
3938 service ::com::sun::star::configuration::backend::Backend;
3939 interface ::com::sun::star::configuration::backend::XBackendEntities;
3940 [optional] interface ::com::sun::star::lang::XInitialization;
3942 published exception CannotConnectException: ::com::sun::star::configuration::backend::BackendSetupException {
3944 published exception ConnectionLostException: ::com::sun::star::configuration::backend::BackendAccessException {
3946 published exception MalformedDataException: ::com::sun::star::uno::Exception {
3947 any ErrorDetails;
3949 published interface XLayerImporter {
3950 interface ::com::sun::star::uno::XInterface;
3951 ::com::sun::star::configuration::backend::XBackend getTargetBackend();
3952 void setTargetBackend([in] ::com::sun::star::configuration::backend::XBackend aBackend) raises (::com::sun::star::lang::NullPointerException);
3953 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);
3954 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);
3956 published service Importer {
3957 interface ::com::sun::star::configuration::backend::XLayerImporter;
3958 [optional] interface ::com::sun::star::lang::XInitialization;
3960 published service CopyImporter {
3961 service ::com::sun::star::configuration::backend::Importer;
3962 interface ::com::sun::star::lang::XInitialization;
3966 module task {
3967 published interface XJob {
3968 interface ::com::sun::star::uno::XInterface;
3969 any execute([in] sequence< ::com::sun::star::beans::NamedValue > Arguments) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::Exception);
3972 module configuration {
3973 module backend {
3974 published service DataImporter {
3975 interface ::com::sun::star::task::XJob;
3977 published service HierarchyBrowser {
3978 interface ::com::sun::star::task::XJob;
3980 published exception InsufficientAccessRightsException: ::com::sun::star::configuration::backend::BackendAccessException {
3982 published service InteractionHandler {
3983 interface ::com::sun::star::task::XInteractionHandler;
3984 interface ::com::sun::star::lang::XInitialization;
3986 published exception InvalidAuthenticationMechanismException: ::com::sun::star::configuration::backend::BackendSetupException {
3988 published interface XLayerHandler;
3989 published interface XLayer {
3990 interface ::com::sun::star::uno::XInterface;
3991 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);
3993 published interface XCompositeLayer {
3994 interface ::com::sun::star::configuration::backend::XLayer;
3995 sequence< string > listSubLayerIds() raises (::com::sun::star::lang::WrappedTargetException);
3996 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);
4000 module util {
4001 published interface XTimeStamped {
4002 interface ::com::sun::star::uno::XInterface;
4003 string getTimestamp();
4006 module configuration {
4007 module backend {
4008 published service Layer {
4009 interface ::com::sun::star::configuration::backend::XLayer;
4010 [optional] interface ::com::sun::star::configuration::backend::XCompositeLayer;
4011 [optional] interface ::com::sun::star::util::XTimeStamped;
4012 [property, optional, readonly] string URL;
4014 published service LayerFilter {
4015 interface ::com::sun::star::configuration::backend::XLayer;
4016 interface ::com::sun::star::lang::XInitialization;
4018 published struct TemplateIdentifier {
4019 string Name;
4020 string Component;
4022 published interface XUpdateHandler {
4023 interface ::com::sun::star::uno::XInterface;
4024 void startUpdate() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::IllegalAccessException, ::com::sun::star::lang::WrappedTargetException);
4025 void endUpdate() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::IllegalAccessException, ::com::sun::star::lang::WrappedTargetException);
4026 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);
4027 void addOrReplaceNode([in] string aName, [in] short aAttributes) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4028 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);
4029 void endNode() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4030 void removeNode([in] string aName) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4031 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);
4032 void setPropertyValue([in] any aValue) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4033 void setPropertyValueForLocale([in] any aValue, [in] string aLocale) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4034 void resetPropertyValue() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4035 void resetPropertyValueForLocale([in] string aLocale) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4036 void endProperty() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4037 void resetProperty([in] string aName) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4038 void addOrReplaceProperty([in] string aName, [in] short aAttributes, [in] type aType) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4039 void addOrReplacePropertyWithValue([in] string aName, [in] short aAttributes, [in] any aValue) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4040 void removeProperty([in] string aName) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4042 published service LayerUpdateMerger {
4043 interface ::com::sun::star::configuration::backend::XUpdateHandler;
4044 interface ::com::sun::star::lang::XInitialization;
4046 published interface XUpdatableLayer;
4047 published interface XMultiLayerStratum {
4048 interface ::com::sun::star::uno::XInterface;
4049 sequence< string > listLayerIds([in] string aComponent, [in] string aEntity) raises (::com::sun::star::configuration::backend::BackendAccessException, ::com::sun::star::lang::IllegalArgumentException);
4050 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);
4051 ::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);
4052 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);
4053 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);
4054 ::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);
4056 published service SingleBackend {
4057 interface ::com::sun::star::configuration::backend::XSchemaSupplier;
4058 interface ::com::sun::star::configuration::backend::XMultiLayerStratum;
4059 interface ::com::sun::star::configuration::backend::XBackendEntities;
4061 published service LdapSingleBackend {
4062 service ::com::sun::star::configuration::backend::SingleBackend;
4064 published interface XSingleLayerStratum {
4065 interface ::com::sun::star::uno::XInterface;
4066 ::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);
4067 ::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);
4069 published service LocalDataImporter {
4070 service ::com::sun::star::configuration::backend::DataImporter;
4072 published service LocalHierarchyBrowser {
4073 service ::com::sun::star::configuration::backend::HierarchyBrowser;
4075 published service LocalSingleBackend {
4076 service ::com::sun::star::configuration::backend::SingleBackend;
4078 published service MergeImporter {
4079 service ::com::sun::star::configuration::backend::Importer;
4081 published constants NodeAttribute {
4082 const short FINALIZED = 256;
4083 const short FUSE = 2048;
4084 const short MANDATORY = 512;
4085 const short MASK = 32512;
4086 const short READONLY = 1024;
4088 published service OfflineBackend {
4089 service ::com::sun::star::configuration::backend::BackendAdapter;
4091 published service OnlineBackend {
4092 service ::com::sun::star::configuration::backend::BackendAdapter;
4094 published interface XSchemaHandler;
4095 published interface XSchema {
4096 interface ::com::sun::star::uno::XInterface;
4097 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);
4098 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);
4099 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);
4101 published service Schema {
4102 interface ::com::sun::star::configuration::backend::XSchema;
4103 [property, optional, readonly] string URL;
4105 published constants SchemaAttribute {
4106 const short EXTENSIBLE = 4;
4107 const short LOCALIZED = 2;
4108 const short MASK = 255;
4109 const short REQUIRED = 1;
4111 published service SingleBackendAdapter {
4112 service ::com::sun::star::configuration::backend::BackendAdapter;
4114 published interface XUpdatableLayer {
4115 interface ::com::sun::star::configuration::backend::XLayer;
4116 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);
4118 published service UpdatableLayer {
4119 service ::com::sun::star::configuration::backend::Layer;
4120 interface ::com::sun::star::configuration::backend::XUpdatableLayer;
4122 published interface XLayerHandler {
4123 interface ::com::sun::star::uno::XInterface;
4124 void startLayer() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4125 void endLayer() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4126 void overrideNode([in] string aName, [in] short aAttributes, [in] boolean bClear) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4127 void addOrReplaceNode([in] string aName, [in] short aAttributes) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4128 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);
4129 void endNode() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4130 void dropNode([in] string aName) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4131 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);
4132 void setPropertyValue([in] any aValue) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4133 void setPropertyValueForLocale([in] any aValue, [in] string aLocale) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4134 void endProperty() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4135 void addProperty([in] string aName, [in] short aAttributes, [in] type aType) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4136 void addPropertyWithValue([in] string aName, [in] short aAttributes, [in] any aValue) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4138 published interface XSchemaHandler {
4139 interface ::com::sun::star::uno::XInterface;
4140 void startSchema() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4141 void endSchema() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4142 void importComponent([in] string aName) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4143 void startComponent([in] string aName) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4144 void endComponent() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4145 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);
4146 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);
4147 void endTemplate() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4148 void startGroup([in] string aName, [in] short aAttributes) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4149 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);
4150 void endNode() raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4151 void addProperty([in] string aName, [in] short aAttributes, [in] type aType) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4152 void addPropertyWithDefault([in] string aName, [in] short aAttributes, [in] any aDefaultValue) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4153 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);
4154 void addItemType([in] ::com::sun::star::configuration::backend::TemplateIdentifier aItemType) raises (::com::sun::star::configuration::backend::MalformedDataException, ::com::sun::star::lang::WrappedTargetException);
4156 module xml {
4157 published service LayerParser {
4158 interface ::com::sun::star::configuration::backend::XLayer;
4159 interface ::com::sun::star::io::XActiveDataSink;
4160 interface ::com::sun::star::lang::XInitialization;
4162 published service LayerWriter {
4163 interface ::com::sun::star::configuration::backend::XLayerHandler;
4164 interface ::com::sun::star::io::XActiveDataSource;
4165 interface ::com::sun::star::lang::XInitialization;
4167 published service SchemaParser {
4168 interface ::com::sun::star::configuration::backend::XSchema;
4169 interface ::com::sun::star::io::XActiveDataSink;
4170 interface ::com::sun::star::lang::XInitialization;
4174 module bootstrap {
4175 /** @deprecated */ published service BootstrapContext {
4176 interface ::com::sun::star::uno::XComponentContext;
4179 published singleton theDefaultProvider: ::com::sun::star::lang::XMultiServiceFactory;
4181 module ui {
4182 module dialogs {
4183 published interface XExecutableDialog {
4184 interface ::com::sun::star::uno::XInterface;
4185 void setTitle([in] string aTitle);
4186 short execute();
4190 module datatransfer {
4191 published struct DataFlavor {
4192 string MimeType;
4193 string HumanPresentableName;
4194 type DataType;
4196 published interface XDataFormatTranslator {
4197 interface ::com::sun::star::uno::XInterface;
4198 any getSystemDataTypeFromDataFlavor([in] ::com::sun::star::datatransfer::DataFlavor aDataFlavor);
4199 ::com::sun::star::datatransfer::DataFlavor getDataFlavorFromSystemDataType([in] any aSysDataType);
4201 published service DataFormatTranslator: ::com::sun::star::datatransfer::XDataFormatTranslator;
4202 published interface XMimeContentType;
4203 published interface XMimeContentTypeFactory {
4204 interface ::com::sun::star::uno::XInterface;
4205 ::com::sun::star::datatransfer::XMimeContentType createMimeContentType([in] string aContentType) raises (::com::sun::star::lang::IllegalArgumentException);
4207 published service MimeContentTypeFactory: ::com::sun::star::datatransfer::XMimeContentTypeFactory;
4208 published exception UnsupportedFlavorException: ::com::sun::star::uno::Exception {
4210 published interface XMimeContentType {
4211 interface ::com::sun::star::uno::XInterface;
4212 string getMediaType();
4213 string getMediaSubtype();
4214 string getFullMediaType();
4215 sequence< string > getParameters();
4216 boolean hasParameter([in] string aName);
4217 string getParameterValue([in] string aName) raises (::com::sun::star::container::NoSuchElementException);
4219 published interface XSystemTransferable {
4220 interface ::com::sun::star::uno::XInterface;
4221 any getData([in] sequence< byte > aProcessId);
4223 published interface XTransferDataAccess {
4224 interface ::com::sun::star::uno::XInterface;
4225 hyper queryDataSize([in] sequence< ::com::sun::star::datatransfer::DataFlavor > aFlavorList);
4226 sequence< any > getData([in] sequence< ::com::sun::star::datatransfer::DataFlavor > aFlavorList);
4228 published interface XTransferable {
4229 interface ::com::sun::star::uno::XInterface;
4230 any getTransferData([in] ::com::sun::star::datatransfer::DataFlavor aFlavor) raises (::com::sun::star::datatransfer::UnsupportedFlavorException, ::com::sun::star::io::IOException);
4231 sequence< ::com::sun::star::datatransfer::DataFlavor > getTransferDataFlavors();
4232 boolean isDataFlavorSupported([in] ::com::sun::star::datatransfer::DataFlavor aFlavor);
4234 published interface XTransferableEx {
4235 interface ::com::sun::star::uno::XInterface;
4236 sequence< ::com::sun::star::datatransfer::DataFlavor > queryTransferDataFlavors([in] sequence< ::com::sun::star::datatransfer::DataFlavor > requestedFlavors);
4238 published interface XTransferableSource {
4239 interface ::com::sun::star::uno::XInterface;
4240 string getDataSourceDescription();
4242 interface XTransferableSupplier {
4243 interface ::com::sun::star::uno::XInterface;
4244 ::com::sun::star::datatransfer::XTransferable getTransferable();
4245 void insertTransferable([in] ::com::sun::star::datatransfer::XTransferable xTrans) raises (::com::sun::star::datatransfer::UnsupportedFlavorException);
4247 module clipboard {
4248 published struct ClipboardEvent: ::com::sun::star::lang::EventObject {
4249 ::com::sun::star::datatransfer::XTransferable Contents;
4251 published interface XClipboardManager {
4252 interface ::com::sun::star::uno::XInterface;
4253 ::com::sun::star::datatransfer::clipboard::XClipboard getClipboard([in] string aName) raises (::com::sun::star::container::NoSuchElementException);
4254 void addClipboard([in] ::com::sun::star::datatransfer::clipboard::XClipboard xClipboard) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::ElementExistException);
4255 void removeClipboard([in] string aName);
4256 sequence< string > listClipboardNames();
4258 published service ClipboardManager {
4259 interface ::com::sun::star::datatransfer::clipboard::XClipboardManager;
4260 interface ::com::sun::star::lang::XComponent;
4262 published interface XClipboardOwner;
4263 published interface XClipboard {
4264 interface ::com::sun::star::uno::XInterface;
4265 ::com::sun::star::datatransfer::XTransferable getContents();
4266 void setContents([in] ::com::sun::star::datatransfer::XTransferable xTrans, [in] ::com::sun::star::datatransfer::clipboard::XClipboardOwner xClipboardOwner);
4267 string getName();
4269 published interface XClipboardEx {
4270 interface ::com::sun::star::datatransfer::clipboard::XClipboard;
4271 byte getRenderingCapabilities();
4273 published interface XClipboardListener;
4274 published interface XClipboardNotifier {
4275 interface ::com::sun::star::uno::XInterface;
4276 void addClipboardListener([in] ::com::sun::star::datatransfer::clipboard::XClipboardListener listener);
4277 void removeClipboardListener([in] ::com::sun::star::datatransfer::clipboard::XClipboardListener listener);
4279 published service GenericClipboard {
4280 interface ::com::sun::star::datatransfer::clipboard::XClipboardEx;
4281 interface ::com::sun::star::datatransfer::clipboard::XClipboardNotifier;
4282 interface ::com::sun::star::lang::XInitialization;
4283 interface ::com::sun::star::lang::XComponent;
4285 published constants RenderingCapabilities {
4286 const byte Delayed = 1;
4287 /** @deprecated */ const byte Persistant = 2;
4288 const byte Persistent = 2;
4290 published interface XFlushableClipboard {
4291 interface ::com::sun::star::uno::XInterface;
4292 void flushClipboard();
4294 published interface XSystemClipboard {
4295 interface ::com::sun::star::datatransfer::clipboard::XClipboardEx;
4296 interface ::com::sun::star::datatransfer::clipboard::XClipboardNotifier;
4297 interface ::com::sun::star::lang::XComponent;
4298 [optional] interface ::com::sun::star::datatransfer::clipboard::XFlushableClipboard;
4300 published service SystemClipboard: ::com::sun::star::datatransfer::clipboard::XSystemClipboard;
4301 published interface XClipboardFactory {
4302 interface ::com::sun::star::uno::XInterface;
4303 ::com::sun::star::datatransfer::clipboard::XClipboard createClipboard([in] string aName) raises (::com::sun::star::lang::IllegalArgumentException);
4305 published interface XClipboardListener {
4306 interface ::com::sun::star::lang::XEventListener;
4307 void changedContents([in] ::com::sun::star::datatransfer::clipboard::ClipboardEvent event);
4309 published interface XClipboardOwner {
4310 interface ::com::sun::star::uno::XInterface;
4311 void lostOwnership([in] ::com::sun::star::datatransfer::clipboard::XClipboard xClipboard, [in] ::com::sun::star::datatransfer::XTransferable xTrans);
4314 module dnd {
4315 published constants DNDConstants {
4316 const byte ACTION_COPY = 1;
4317 const byte ACTION_COPY_OR_MOVE = 3;
4318 const byte ACTION_DEFAULT = -128;
4319 const byte ACTION_LINK = 4;
4320 const byte ACTION_MOVE = 2;
4321 const byte ACTION_NONE = 0;
4322 const byte ACTION_REFERENCE = 4;
4324 published struct DragGestureEvent: ::com::sun::star::lang::EventObject {
4325 byte DragAction;
4326 long DragOriginX;
4327 long DragOriginY;
4328 ::com::sun::star::datatransfer::dnd::XDragSource DragSource;
4329 any Event;
4331 published interface XDragSourceContext;
4332 published struct DragSourceEvent: ::com::sun::star::lang::EventObject {
4333 ::com::sun::star::datatransfer::dnd::XDragSourceContext DragSourceContext;
4334 ::com::sun::star::datatransfer::dnd::XDragSource DragSource;
4336 published struct DragSourceDragEvent: ::com::sun::star::datatransfer::dnd::DragSourceEvent {
4337 byte DropAction;
4338 byte UserAction;
4340 published struct DragSourceDropEvent: ::com::sun::star::datatransfer::dnd::DragSourceEvent {
4341 byte DropAction;
4342 boolean DropSuccess;
4344 published struct DropTargetEvent: ::com::sun::star::lang::EventObject {
4345 byte Dummy;
4347 published interface XDropTargetDragContext;
4348 published struct DropTargetDragEvent: ::com::sun::star::datatransfer::dnd::DropTargetEvent {
4349 ::com::sun::star::datatransfer::dnd::XDropTargetDragContext Context;
4350 byte DropAction;
4351 long LocationX;
4352 long LocationY;
4353 byte SourceActions;
4355 published struct DropTargetDragEnterEvent: ::com::sun::star::datatransfer::dnd::DropTargetDragEvent {
4356 sequence< ::com::sun::star::datatransfer::DataFlavor > SupportedDataFlavors;
4358 published interface XDropTargetDropContext;
4359 published struct DropTargetDropEvent: ::com::sun::star::datatransfer::dnd::DropTargetEvent {
4360 ::com::sun::star::datatransfer::dnd::XDropTargetDropContext Context;
4361 byte DropAction;
4362 long LocationX;
4363 long LocationY;
4364 byte SourceActions;
4365 ::com::sun::star::datatransfer::XTransferable Transferable;
4367 published exception InvalidDNDOperationException: ::com::sun::star::uno::RuntimeException {
4369 published interface XDragSourceListener;
4370 published interface XDragSource {
4371 interface ::com::sun::star::uno::XInterface;
4372 boolean isDragImageSupported();
4373 long getDefaultCursor([in] byte dragAction) raises (::com::sun::star::lang::IllegalArgumentException);
4374 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);
4376 published service OleDragSource {
4377 interface ::com::sun::star::datatransfer::dnd::XDragSource;
4378 interface ::com::sun::star::lang::XInitialization;
4379 interface ::com::sun::star::lang::XComponent;
4381 published interface XDropTargetListener;
4382 published interface XDropTarget {
4383 interface ::com::sun::star::uno::XInterface;
4384 void addDropTargetListener([in] ::com::sun::star::datatransfer::dnd::XDropTargetListener dtl);
4385 void removeDropTargetListener([in] ::com::sun::star::datatransfer::dnd::XDropTargetListener dtl);
4386 boolean isActive();
4387 void setActive([in] boolean active);
4388 byte getDefaultActions();
4389 void setDefaultActions([in] byte actions);
4391 published service OleDropTarget {
4392 interface ::com::sun::star::datatransfer::dnd::XDropTarget;
4393 interface ::com::sun::star::lang::XInitialization;
4394 interface ::com::sun::star::lang::XComponent;
4396 published service X11DragSource {
4397 interface ::com::sun::star::datatransfer::dnd::XDragSource;
4398 interface ::com::sun::star::lang::XInitialization;
4399 interface ::com::sun::star::lang::XComponent;
4401 published service X11DropTarget {
4402 interface ::com::sun::star::datatransfer::dnd::XDropTarget;
4403 interface ::com::sun::star::lang::XInitialization;
4404 interface ::com::sun::star::lang::XComponent;
4406 published interface XAutoscroll {
4407 interface ::com::sun::star::uno::XInterface;
4408 void autoscroll([in] long cursorLocationX, [in] long cursorLocationY);
4409 any getAutoscrollRegion();
4411 published interface XDragGestureListener {
4412 interface ::com::sun::star::lang::XEventListener;
4413 void dragGestureRecognized([in] ::com::sun::star::datatransfer::dnd::DragGestureEvent dge);
4415 published interface XDragGestureRecognizer {
4416 interface ::com::sun::star::uno::XInterface;
4417 void addDragGestureListener([in] ::com::sun::star::datatransfer::dnd::XDragGestureListener dgl);
4418 void removeDragGestureListener([in] ::com::sun::star::datatransfer::dnd::XDragGestureListener dgl);
4419 void resetRecognizer();
4421 published interface XDragSourceContext {
4422 interface ::com::sun::star::uno::XInterface;
4423 long getCurrentCursor();
4424 void setCursor([in] long cursorId);
4425 void setImage([in] long imageId);
4426 void transferablesFlavorsChanged();
4428 published interface XDragSourceListener {
4429 interface ::com::sun::star::lang::XEventListener;
4430 void dragDropEnd([in] ::com::sun::star::datatransfer::dnd::DragSourceDropEvent dsde);
4431 void dragEnter([in] ::com::sun::star::datatransfer::dnd::DragSourceDragEvent dsde);
4432 void dragExit([in] ::com::sun::star::datatransfer::dnd::DragSourceEvent dse);
4433 void dragOver([in] ::com::sun::star::datatransfer::dnd::DragSourceDragEvent dsde);
4434 void dropActionChanged([in] ::com::sun::star::datatransfer::dnd::DragSourceDragEvent dsde);
4436 published interface XDropTargetDragContext {
4437 interface ::com::sun::star::uno::XInterface;
4438 void acceptDrag([in] byte dragOperation);
4439 void rejectDrag();
4441 published interface XDropTargetDropContext {
4442 interface ::com::sun::star::uno::XInterface;
4443 void acceptDrop([in] byte dragOperation);
4444 void rejectDrop();
4445 void dropComplete([in] boolean success);
4447 published interface XDropTargetListener {
4448 interface ::com::sun::star::lang::XEventListener;
4449 void drop([in] ::com::sun::star::datatransfer::dnd::DropTargetDropEvent dtde);
4450 void dragEnter([in] ::com::sun::star::datatransfer::dnd::DropTargetDragEnterEvent dtdee);
4451 void dragExit([in] ::com::sun::star::datatransfer::dnd::DropTargetEvent dte);
4452 void dragOver([in] ::com::sun::star::datatransfer::dnd::DropTargetDragEvent dtde);
4453 void dropActionChanged([in] ::com::sun::star::datatransfer::dnd::DropTargetDragEvent dtde);
4457 module ucb {
4458 published exception CommandAbortedException: ::com::sun::star::uno::Exception {
4460 published exception CommandFailedException: ::com::sun::star::uno::Exception {
4461 any Reason;
4463 published enum ContentCreationError {
4464 UNKNOWN = 0,
4465 /** @deprecated */ NO_CONTENT_BROKER = 1,
4466 /** @deprecated */ NO_IDENTIFIER_FACTORY = 2,
4467 IDENTIFIER_CREATION_FAILED = 3,
4468 NO_CONTENT_PROVIDER = 4,
4469 CONTENT_CREATION_FAILED = 5
4471 published exception ContentCreationException: ::com::sun::star::uno::Exception {
4472 ::com::sun::star::ucb::ContentCreationError eError;
4474 published interface XProgressHandler;
4475 published interface XCommandEnvironment {
4476 interface ::com::sun::star::uno::XInterface;
4477 ::com::sun::star::task::XInteractionHandler getInteractionHandler();
4478 ::com::sun::star::ucb::XProgressHandler getProgressHandler();
4481 module document {
4482 published exception AmbigousFilterRequest: ::com::sun::star::uno::Exception {
4483 string URL;
4484 string SelectedFilter;
4485 string DetectedFilter;
4487 published exception BrokenPackageRequest: ::com::sun::star::uno::Exception {
4488 string aName;
4490 published exception ChangedByOthersRequest: ::com::sun::star::uno::Exception {
4492 published exception CorruptedFilterConfigurationException: ::com::sun::star::uno::RuntimeException {
4493 string Details;
4496 module embed {
4497 published interface XStorage;
4499 module document {
4500 published interface XDocumentProperties {
4501 interface ::com::sun::star::uno::XInterface;
4502 [attribute] string Author;
4503 [attribute] string Generator;
4504 [attribute] ::com::sun::star::util::DateTime CreationDate;
4505 [attribute] string Title;
4506 [attribute] string Subject;
4507 [attribute] string Description;
4508 [attribute] sequence< string > Keywords;
4509 [attribute] ::com::sun::star::lang::Locale Language;
4510 [attribute] string ModifiedBy;
4511 [attribute] ::com::sun::star::util::DateTime ModificationDate;
4512 [attribute] string PrintedBy;
4513 [attribute] ::com::sun::star::util::DateTime PrintDate;
4514 [attribute] string TemplateName;
4515 [attribute] string TemplateURL;
4516 [attribute] ::com::sun::star::util::DateTime TemplateDate;
4517 [attribute] string AutoloadURL;
4518 [attribute] long AutoloadSecs {
4519 set raises (::com::sun::star::lang::IllegalArgumentException);
4521 [attribute] string DefaultTarget;
4522 [attribute] sequence< ::com::sun::star::beans::NamedValue > DocumentStatistics;
4523 [attribute] short EditingCycles {
4524 set raises (::com::sun::star::lang::IllegalArgumentException);
4526 [attribute] long EditingDuration {
4527 set raises (::com::sun::star::lang::IllegalArgumentException);
4529 void resetUserData([in] string Author);
4530 ::com::sun::star::beans::XPropertyContainer getUserDefinedProperties();
4531 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);
4532 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);
4533 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);
4534 void storeToMedium([in] string URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Medium) raises (::com::sun::star::lang::WrappedTargetException, ::com::sun::star::io::IOException);
4536 published service DocumentProperties: ::com::sun::star::document::XDocumentProperties {
4537 create();
4539 published service EventDescriptor {
4540 [property] string EventType;
4541 [property] string Script;
4543 /** @deprecated */ published struct EventObject: ::com::sun::star::lang::EventObject {
4544 string EventName;
4546 published service Events {
4547 interface ::com::sun::star::container::XNameReplace;
4549 published interface XExporter {
4550 interface ::com::sun::star::uno::XInterface;
4551 void setSourceDocument([in] ::com::sun::star::lang::XComponent Document) raises (::com::sun::star::lang::IllegalArgumentException);
4553 published interface XFilter {
4554 interface ::com::sun::star::uno::XInterface;
4555 boolean filter([in] sequence< ::com::sun::star::beans::PropertyValue > aDescriptor);
4556 void cancel();
4558 published service ExportFilter {
4559 interface ::com::sun::star::document::XExporter;
4560 interface ::com::sun::star::document::XFilter;
4561 [optional] interface ::com::sun::star::lang::XInitialization;
4562 [optional] interface ::com::sun::star::container::XNamed;
4564 published interface XExtendedFilterDetection {
4565 interface ::com::sun::star::uno::XInterface;
4566 string detect([inout] sequence< ::com::sun::star::beans::PropertyValue > Descriptor);
4568 published service ExtendedTypeDetection {
4569 interface ::com::sun::star::document::XExtendedFilterDetection;
4571 published service ExtendedTypeDetectionFactory {
4572 interface ::com::sun::star::lang::XMultiServiceFactory;
4573 interface ::com::sun::star::container::XNameAccess;
4574 [optional] interface ::com::sun::star::container::XNameContainer;
4575 [optional] interface ::com::sun::star::container::XContainerQuery;
4576 [optional] interface ::com::sun::star::util::XFlushable;
4578 published interface XFilterAdapter {
4579 interface ::com::sun::star::uno::XInterface;
4580 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);
4582 published service FilterAdapter {
4583 interface ::com::sun::star::document::XFilterAdapter;
4585 published service FilterFactory {
4586 interface ::com::sun::star::lang::XMultiServiceFactory;
4587 interface ::com::sun::star::container::XNameAccess;
4588 interface ::com::sun::star::container::XContainerQuery;
4589 [optional] interface ::com::sun::star::container::XNameContainer;
4590 [optional] interface ::com::sun::star::util::XFlushable;
4592 published exception FilterOptionsRequest: ::com::sun::star::uno::Exception {
4593 ::com::sun::star::frame::XModel rModel;
4594 sequence< ::com::sun::star::beans::PropertyValue > rProperties;
4596 published service HeaderFooterSettings {
4597 interface ::com::sun::star::beans::XPropertySet;
4598 [property, optional] boolean IsPrintPageName;
4599 [property, optional] boolean IsPrintDate;
4600 [property, optional] boolean IsPrintTime;
4602 published interface XImporter {
4603 interface ::com::sun::star::uno::XInterface;
4604 void setTargetDocument([in] ::com::sun::star::lang::XComponent Document) raises (::com::sun::star::lang::IllegalArgumentException);
4606 published service ImportFilter {
4607 interface ::com::sun::star::document::XImporter;
4608 interface ::com::sun::star::document::XFilter;
4609 [optional] interface ::com::sun::star::lang::XInitialization;
4610 [optional] interface ::com::sun::star::container::XNamed;
4612 published interface XLinkTargetSupplier {
4613 interface ::com::sun::star::uno::XInterface;
4614 ::com::sun::star::container::XNameAccess getLinks();
4616 published service LinkTarget {
4617 interface ::com::sun::star::beans::XPropertySet;
4618 [optional] interface ::com::sun::star::document::XLinkTargetSupplier;
4619 [property, readonly] string LinkDisplayName;
4621 published service LinkTargets {
4622 interface ::com::sun::star::container::XNameAccess;
4624 published constants LinkUpdateModes {
4625 const long AUTO = 2;
4626 const long GLOBAL_SETTING = 3;
4627 const long MANUAL = 1;
4628 const long NEVER = 0;
4630 published exception LockFileIgnoreRequest: ::com::sun::star::io::IOException {
4632 published exception LockedDocumentRequest: ::com::sun::star::uno::Exception {
4633 string DocumentURL;
4634 string UserInfo;
4636 published exception LockedOnSavingRequest: ::com::sun::star::uno::Exception {
4637 string DocumentURL;
4638 string UserInfo;
4640 published constants MacroExecMode {
4641 const short ALWAYS_EXECUTE = 2;
4642 const short ALWAYS_EXECUTE_NO_WARN = 4;
4643 const short FROM_LIST = 1;
4644 const short FROM_LIST_AND_SIGNED_NO_WARN = 9;
4645 const short FROM_LIST_AND_SIGNED_WARN = 8;
4646 const short FROM_LIST_NO_WARN = 7;
4647 const short NEVER_EXECUTE = 0;
4648 const short USE_CONFIG = 3;
4649 const short USE_CONFIG_APPROVE_CONFIRMATION = 6;
4650 const short USE_CONFIG_REJECT_CONFIRMATION = 5;
4652 published exception NoSuchFilterRequest: ::com::sun::star::uno::Exception {
4653 string URL;
4656 module xml {
4657 module sax {
4658 published exception SAXException: ::com::sun::star::uno::Exception {
4659 any WrappedException;
4663 module document {
4664 interface XDocumentEventListener;
4666 module frame {
4667 interface XController2;
4669 module document {
4670 interface XDocumentEventBroadcaster {
4671 interface ::com::sun::star::uno::XInterface;
4672 void addDocumentEventListener([in] ::com::sun::star::document::XDocumentEventListener Listener);
4673 void removeDocumentEventListener([in] ::com::sun::star::document::XDocumentEventListener Listener);
4674 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);
4676 published interface XDocumentPropertiesSupplier {
4677 interface ::com::sun::star::uno::XInterface;
4678 ::com::sun::star::document::XDocumentProperties getDocumentProperties();
4681 module script {
4682 interface XStorageBasedLibraryContainer;
4684 module document {
4685 interface XEmbeddedScripts {
4686 interface ::com::sun::star::uno::XInterface;
4687 [attribute, readonly] ::com::sun::star::script::XStorageBasedLibraryContainer BasicLibraries;
4688 [attribute, readonly] ::com::sun::star::script::XStorageBasedLibraryContainer DialogLibraries;
4689 [attribute, readonly] boolean AllowMacroExecution;
4691 published interface XEventListener;
4692 /** @deprecated */ published interface XEventBroadcaster {
4693 interface ::com::sun::star::uno::XInterface;
4694 void addEventListener([in] ::com::sun::star::document::XEventListener Listener);
4695 void removeEventListener([in] ::com::sun::star::document::XEventListener Listener);
4697 published interface XEventsSupplier {
4698 interface ::com::sun::star::uno::XInterface;
4699 ::com::sun::star::container::XNameReplace getEvents();
4701 interface XUndoManager;
4702 interface XUndoManagerSupplier {
4703 interface ::com::sun::star::uno::XInterface;
4704 ::com::sun::star::document::XUndoManager getUndoManager();
4706 published interface XViewDataSupplier {
4707 interface ::com::sun::star::uno::XInterface;
4708 ::com::sun::star::container::XIndexAccess getViewData();
4709 void setViewData([in] ::com::sun::star::container::XIndexAccess Data);
4712 module frame {
4713 published interface XStorable {
4714 interface ::com::sun::star::uno::XInterface;
4715 boolean hasLocation();
4716 string getLocation();
4717 boolean isReadonly();
4718 void store() raises (::com::sun::star::io::IOException);
4719 void storeAsURL([in] string sURL, [in] sequence< ::com::sun::star::beans::PropertyValue > lArguments) raises (::com::sun::star::io::IOException);
4720 void storeToURL([in] string sURL, [in] sequence< ::com::sun::star::beans::PropertyValue > lArguments) raises (::com::sun::star::io::IOException);
4723 module util {
4724 published interface XModifiable {
4725 interface ::com::sun::star::util::XModifyBroadcaster;
4726 boolean isModified();
4727 void setModified([in] boolean bModified) raises (::com::sun::star::beans::PropertyVetoException);
4730 module view {
4731 published interface XPrintJobListener;
4732 published interface XPrintJobBroadcaster {
4733 interface ::com::sun::star::uno::XInterface;
4734 void addPrintJobListener([in] ::com::sun::star::view::XPrintJobListener xListener);
4735 void removePrintJobListener([in] ::com::sun::star::view::XPrintJobListener xListener);
4737 published interface XPrintable {
4738 interface ::com::sun::star::uno::XInterface;
4739 sequence< ::com::sun::star::beans::PropertyValue > getPrinter();
4740 void setPrinter([in] sequence< ::com::sun::star::beans::PropertyValue > aPrinter) raises (::com::sun::star::lang::IllegalArgumentException);
4741 void print([in] sequence< ::com::sun::star::beans::PropertyValue > xOptions) raises (::com::sun::star::lang::IllegalArgumentException);
4744 module document {
4745 published service OfficeDocument {
4746 interface ::com::sun::star::frame::XModel;
4747 interface ::com::sun::star::util::XModifiable;
4748 interface ::com::sun::star::frame::XStorable;
4749 interface ::com::sun::star::view::XPrintable;
4750 /** @deprecated */ [optional] interface ::com::sun::star::document::XEventBroadcaster;
4751 [optional] interface ::com::sun::star::document::XDocumentEventBroadcaster;
4752 [optional] interface ::com::sun::star::document::XEventsSupplier;
4753 [optional] interface ::com::sun::star::document::XViewDataSupplier;
4754 [optional] interface ::com::sun::star::view::XPrintJobBroadcaster;
4755 [optional] interface ::com::sun::star::document::XEmbeddedScripts;
4756 [optional] interface ::com::sun::star::document::XDocumentPropertiesSupplier;
4757 [optional] interface ::com::sun::star::document::XUndoManagerSupplier;
4758 [property, optional] boolean AutomaticControlFocus;
4759 [property, optional] boolean ApplyFormDesignMode;
4760 [property, optional, readonly] string RuntimeUID;
4761 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > InteropGrabBag;
4763 published service OleEmbeddedServerRegistration: ::com::sun::star::uno::XInterface;
4764 published exception OwnLockOnDocumentRequest: ::com::sun::star::uno::Exception {
4765 string DocumentURL;
4766 string TimeInfo;
4767 boolean IsStoring;
4770 module ui {
4771 module dialogs {
4772 published service FilterOptionsDialog {
4773 interface ::com::sun::star::beans::XPropertyAccess;
4774 interface ::com::sun::star::ui::dialogs::XExecutableDialog;
4778 module document {
4779 published constants PrinterIndependentLayout {
4780 const short DISABLED = 1;
4781 /** @deprecated */ const short ENABLED = 2;
4782 const short HIGH_RESOLUTION = 3;
4783 const short LOW_RESOLUTION = 2;
4785 published constants RedlineDisplayType {
4786 const short INSERTED = 1;
4787 const short INSERTED_AND_REMOVED = 2;
4788 const short NONE = 0;
4789 const short REMOVED = 3;
4791 published exception ReloadEditableRequest: ::com::sun::star::uno::Exception {
4792 string DocumentURL;
4795 module i18n {
4796 published interface XForbiddenCharacters;
4798 module document {
4799 published service Settings {
4800 interface ::com::sun::star::beans::XPropertySet;
4801 [property, optional] ::com::sun::star::i18n::XForbiddenCharacters ForbiddenCharacters;
4802 [property, optional] short LinkUpdateMode;
4803 [property] string PrinterName;
4804 [property] sequence< byte > PrinterSetup;
4805 [property, optional] boolean IsKernAsianPunctuation;
4806 [property, optional] short CharacterCompressionType;
4807 [property, optional] boolean ApplyUserData;
4808 [property, optional] boolean SaveVersionOnClose;
4809 [property, optional] boolean UpdateFromTemplate;
4810 [property, optional] boolean FieldAutoUpdate;
4811 [property, optional] string CurrentDatabaseDataSource;
4812 [property, optional] string CurrentDatabaseCommand;
4813 [property, optional] long CurrentDatabaseCommandType;
4814 [property, optional] long DefaultTabStop;
4815 [property, optional] boolean IsPrintBooklet;
4816 [property, optional] boolean IsPrintBookletFront;
4817 [property, optional] boolean IsPrintBookletBack;
4818 [property, optional] long PrintQuality;
4819 [property, optional] string ColorTableURL;
4820 [property, optional] string DashTableURL;
4821 [property, optional] string LineEndTableURL;
4822 [property, optional] string HatchTableURL;
4823 [property, optional] string GradientTableURL;
4824 [property, optional] string BitmapTableURL;
4825 [property, optional] boolean AutoCalculate;
4826 [property, optional] short PrinterIndependentLayout;
4827 [property, optional] boolean AddExternalLeading;
4828 [property, optional] boolean EmbedFonts;
4829 [property, optional] boolean EmbedSystemFonts;
4830 [property, optional] boolean EmbedOnlyUsedFonts;
4831 [property, optional] boolean EmbedLatinScriptFonts;
4832 [property, optional] boolean EmbedAsianScriptFonts;
4833 [property, optional] boolean EmbedComplexScriptFonts;
4835 published interface XTypeDetection {
4836 interface ::com::sun::star::uno::XInterface;
4837 string queryTypeByURL([in] string URL);
4838 string queryTypeByDescriptor([inout] sequence< ::com::sun::star::beans::PropertyValue > Descriptor, [in] boolean AllowDeep);
4840 published service TypeDetection {
4841 interface ::com::sun::star::document::XTypeDetection;
4842 interface ::com::sun::star::container::XNameAccess;
4843 [optional] interface ::com::sun::star::container::XNameContainer;
4844 [optional] interface ::com::sun::star::container::XContainerQuery;
4845 [optional] interface ::com::sun::star::util::XFlushable;
4847 published constants UpdateDocMode {
4848 const short ACCORDING_TO_CONFIG = 2;
4849 const short FULL_UPDATE = 3;
4850 const short NO_UPDATE = 0;
4851 const short QUIET_UPDATE = 1;
4853 published interface XActionLockable {
4854 interface ::com::sun::star::uno::XInterface;
4855 boolean isActionLocked();
4856 void addActionLock();
4857 void removeActionLock();
4858 void setActionLocks([in] short nLock);
4859 short resetActionLocks();
4861 published interface XBinaryStreamResolver {
4862 interface ::com::sun::star::uno::XInterface;
4863 ::com::sun::star::io::XInputStream getInputStream([in] string aURL);
4864 ::com::sun::star::io::XOutputStream createOutputStream();
4865 string resolveOutputStream([in] ::com::sun::star::io::XOutputStream aBinaryStream);
4867 published interface XDocumentInsertable {
4868 interface ::com::sun::star::uno::XInterface;
4869 void insertDocumentFromURL([in] string aURL, [in] sequence< ::com::sun::star::beans::PropertyValue > aOptions) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::io::IOException);
4871 published interface XEmbeddedObjectResolver {
4872 interface ::com::sun::star::uno::XInterface;
4873 string resolveEmbeddedObjectURL([in] string aURL);
4875 published interface XEmbeddedObjectSupplier {
4876 interface ::com::sun::star::uno::XInterface;
4877 ::com::sun::star::lang::XComponent getEmbeddedObject();
4879 /** @deprecated */ published interface XEventListener {
4880 interface ::com::sun::star::lang::XEventListener;
4881 void notifyEvent([in] ::com::sun::star::document::EventObject Event);
4883 /** @deprecated */ published interface XGraphicObjectResolver {
4884 interface ::com::sun::star::uno::XInterface;
4885 /** @deprecated */ string resolveGraphicObjectURL([in] string aURL);
4887 published interface XInteractionFilterOptions {
4888 interface ::com::sun::star::task::XInteractionContinuation;
4889 void setFilterOptions([in] sequence< ::com::sun::star::beans::PropertyValue > rProperties);
4890 sequence< ::com::sun::star::beans::PropertyValue > getFilterOptions();
4892 published interface XInteractionFilterSelect {
4893 interface ::com::sun::star::task::XInteractionContinuation;
4894 void setFilter([in] string Name);
4895 string getFilter();
4897 published interface XXMLBasicExporter {
4898 interface ::com::sun::star::document::XExporter;
4899 interface ::com::sun::star::document::XFilter;
4902 module xml {
4903 module sax {
4904 published interface XDocumentHandler;
4907 module document {
4908 published service XMLBasicExporter: ::com::sun::star::document::XXMLBasicExporter {
4909 createWithHandler([in] ::com::sun::star::xml::sax::XDocumentHandler DocumentHandler);
4911 published service XMLOasisBasicExporter: ::com::sun::star::document::XXMLBasicExporter {
4912 createWithHandler([in] ::com::sun::star::xml::sax::XDocumentHandler DocumentHandler);
4914 published interface XMimeTypeInfo {
4915 interface ::com::sun::star::uno::XInterface;
4916 boolean supportsMimeType([in] string MimeTypeName);
4917 sequence< string > getSupportedMimeTypeNames();
4919 published interface XRedlinesSupplier {
4920 interface ::com::sun::star::uno::XInterface;
4921 ::com::sun::star::container::XEnumerationAccess getRedlines();
4924 module frame {
4925 published exception DoubleInitializationException: ::com::sun::star::uno::Exception {
4928 module drawing {
4929 published service AppletShape {
4930 service ::com::sun::star::drawing::Shape;
4931 [property] string AppletCodeBase;
4932 [property] string AppletName;
4933 [property] string AppletCode;
4934 [property] sequence< ::com::sun::star::beans::PropertyValue > AppletCommands;
4935 [property, readonly] boolean AppletIsScript;
4937 /** @deprecated */ published enum Arrangement {
4938 FRONT = 0,
4939 MORE_FRONT = 1,
4940 MORE_BACK = 2,
4941 BACK = 3
4943 published service Background {
4944 service ::com::sun::star::drawing::FillProperties;
4946 /** @deprecated */ published struct BezierPoint {
4947 ::com::sun::star::awt::Point Position;
4948 ::com::sun::star::awt::Point ControlPoint1;
4949 ::com::sun::star::awt::Point ControlPoint2;
4951 published service BitmapTable {
4952 interface ::com::sun::star::container::XNameContainer;
4954 published struct Position3D {
4955 double PositionX;
4956 double PositionY;
4957 double PositionZ;
4959 published struct BoundVolume {
4960 ::com::sun::star::drawing::Position3D min;
4961 ::com::sun::star::drawing::Position3D max;
4963 published struct CameraGeometry {
4964 ::com::sun::star::drawing::Position3D vrp;
4965 ::com::sun::star::drawing::Direction3D vpn;
4966 ::com::sun::star::drawing::Direction3D vup;
4968 published constants CaptionEscapeDirection {
4969 const short auto = 2;
4970 const short horizontal = 0;
4971 const short vertical = 1;
4973 /** @deprecated */ published service RotationDescriptor {
4974 /** @deprecated */ [property] long RotateAngle;
4975 /** @deprecated */ [property, optional] long ShearAngle;
4977 published service ShadowProperties {
4978 [property] boolean Shadow;
4979 [property] ::com::sun::star::util::Color ShadowColor;
4980 [property] short ShadowTransparence;
4981 [property] long ShadowXDistance;
4982 [property] long ShadowYDistance;
4983 [property, optional] long ShadowBlur;
4985 published enum TextAnimationDirection {
4986 LEFT = 0,
4987 RIGHT = 1,
4988 UP = 2,
4989 DOWN = 3
4991 published enum TextAnimationKind {
4992 NONE = 0,
4993 BLINK = 1,
4994 SCROLL = 2,
4995 ALTERNATE = 3,
4996 SLIDE = 4
4998 published enum TextFitToSizeType {
4999 NONE = 0,
5000 PROPORTIONAL = 1,
5001 ALLLINES = 2,
5002 AUTOFIT = 3
5004 published enum TextHorizontalAdjust {
5005 LEFT = 0,
5006 CENTER = 1,
5007 RIGHT = 2,
5008 BLOCK = 3
5010 published enum TextVerticalAdjust {
5011 TOP = 0,
5012 CENTER = 1,
5013 BOTTOM = 2,
5014 BLOCK = 3
5017 module style {
5018 published service ParagraphPropertiesAsian {
5019 [property] boolean ParaIsHangingPunctuation;
5020 [property] boolean ParaIsCharacterDistance;
5021 [property] boolean ParaIsForbiddenRules;
5023 published service ParagraphPropertiesComplex {
5024 [property] short WritingMode;
5027 module text {
5028 /** @deprecated */ published enum WritingMode {
5029 LR_TB = 0,
5030 RL_TB = 1,
5031 TB_RL = 2
5033 published interface XTextColumns;
5035 module drawing {
5036 published service TextProperties {
5037 service ::com::sun::star::style::CharacterProperties;
5038 service ::com::sun::star::style::ParagraphProperties;
5039 [optional] service ::com::sun::star::style::CharacterPropertiesAsian;
5040 [optional] service ::com::sun::star::style::CharacterPropertiesComplex;
5041 [optional] service ::com::sun::star::style::ParagraphPropertiesAsian;
5042 [optional] service ::com::sun::star::style::ParagraphPropertiesComplex;
5043 [property, optional] boolean IsNumbering;
5044 [property, optional] ::com::sun::star::container::XIndexReplace NumberingRules;
5045 [property] boolean TextAutoGrowHeight;
5046 [property] boolean TextAutoGrowWidth;
5047 [property] boolean TextContourFrame;
5048 [property] ::com::sun::star::drawing::TextFitToSizeType TextFitToSize;
5049 [property] ::com::sun::star::drawing::TextHorizontalAdjust TextHorizontalAdjust;
5050 [property] ::com::sun::star::drawing::TextVerticalAdjust TextVerticalAdjust;
5051 [property] long TextLeftDistance;
5052 [property] long TextRightDistance;
5053 [property] long TextUpperDistance;
5054 [property] long TextLowerDistance;
5055 [property] long TextMaximumFrameHeight;
5056 [property] long TextMaximumFrameWidth;
5057 [property] long TextMinimumFrameHeight;
5058 [property] long TextMinimumFrameWidth;
5059 [property] short TextAnimationAmount;
5060 [property] short TextAnimationCount;
5061 [property] short TextAnimationDelay;
5062 [property] ::com::sun::star::drawing::TextAnimationDirection TextAnimationDirection;
5063 [property] ::com::sun::star::drawing::TextAnimationKind TextAnimationKind;
5064 [property] boolean TextAnimationStartInside;
5065 [property] boolean TextAnimationStopInside;
5066 [property] ::com::sun::star::text::WritingMode TextWritingMode;
5067 [property, optional] ::com::sun::star::text::XTextColumns TextColumns;
5070 module text {
5071 published interface XText;
5072 published interface XTextRange {
5073 interface ::com::sun::star::uno::XInterface;
5074 ::com::sun::star::text::XText getText();
5075 ::com::sun::star::text::XTextRange getStart();
5076 ::com::sun::star::text::XTextRange getEnd();
5077 string getString();
5078 void setString([in] string aString);
5080 published interface XTextCursor;
5081 published interface XSimpleText {
5082 interface ::com::sun::star::text::XTextRange;
5083 ::com::sun::star::text::XTextCursor createTextCursor();
5084 ::com::sun::star::text::XTextCursor createTextCursorByRange([in] ::com::sun::star::text::XTextRange aTextPosition);
5085 void insertString([in] ::com::sun::star::text::XTextRange xRange, [in] string aString, [in] boolean bAbsorb);
5086 void insertControlCharacter([in] ::com::sun::star::text::XTextRange xRange, [in] short nControlCharacter, [in] boolean bAbsorb) raises (::com::sun::star::lang::IllegalArgumentException);
5088 published interface XTextContent;
5089 published interface XText {
5090 interface ::com::sun::star::text::XSimpleText;
5091 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);
5092 void removeTextContent([in] ::com::sun::star::text::XTextContent xContent) raises (::com::sun::star::container::NoSuchElementException);
5095 module drawing {
5096 published service Text {
5097 service ::com::sun::star::drawing::TextProperties;
5098 interface ::com::sun::star::text::XText;
5100 published service CaptionShape {
5101 service ::com::sun::star::drawing::Shape;
5102 service ::com::sun::star::drawing::FillProperties;
5103 service ::com::sun::star::drawing::LineProperties;
5104 service ::com::sun::star::drawing::ShadowProperties;
5105 service ::com::sun::star::drawing::Text;
5106 service ::com::sun::star::drawing::RotationDescriptor;
5107 [property] long CornerRadius;
5108 [property] ::com::sun::star::awt::Point CaptionPoint;
5109 [property] short CaptionType;
5110 [property] boolean CaptionIsFixedAngle;
5111 [property] long CaptionAngle;
5112 [property] long CaptionGap;
5113 [property] long CaptionEscapeDirection;
5114 [property] boolean CaptionIsEscapeRelative;
5115 [property] long CaptionEscapeRelative;
5116 [property] long CaptionEscapeAbsolute;
5117 [property] long CaptionLineLength;
5118 [property] boolean CaptionIsFitLineLength;
5120 published constants CaptionType {
5121 const short angled = 1;
5122 const short connector = 2;
5123 const short straight = 0;
5125 published enum CircleKind {
5126 FULL = 0,
5127 SECTION = 1,
5128 CUT = 2,
5129 ARC = 3
5131 published enum PolygonKind {
5132 LINE = 0,
5133 POLY = 1,
5134 PLIN = 2,
5135 PATHLINE = 3,
5136 PATHFILL = 4,
5137 FREELINE = 5,
5138 FREEFILL = 6,
5139 PATHPOLY = 7,
5140 PATHPLIN = 8
5142 published service PolyPolygonBezierDescriptor {
5143 [property, readonly] ::com::sun::star::drawing::PolygonKind PolygonKind;
5144 [property] ::com::sun::star::drawing::PolyPolygonBezierCoords PolyPolygonBezier;
5145 [property] ::com::sun::star::drawing::PolyPolygonBezierCoords Geometry;
5147 published service ClosedBezierShape {
5148 service ::com::sun::star::drawing::Shape;
5149 service ::com::sun::star::drawing::LineProperties;
5150 service ::com::sun::star::drawing::FillProperties;
5151 service ::com::sun::star::drawing::PolyPolygonBezierDescriptor;
5152 service ::com::sun::star::drawing::Text;
5153 service ::com::sun::star::drawing::ShadowProperties;
5154 service ::com::sun::star::drawing::RotationDescriptor;
5156 published enum ColorMode {
5157 STANDARD = 0,
5158 GREYS = 1,
5159 MONO = 2,
5160 WATERMARK = 3
5162 published service ColorTable: ::com::sun::star::container::XNameContainer;
5163 published enum ConnectionType {
5164 AUTO = 0,
5165 LEFT = 1,
5166 TOP = 2,
5167 RIGHT = 3,
5168 BOTTOM = 4,
5169 SPECIAL = 5
5171 published enum ConnectorType {
5172 STANDARD = 0,
5173 CURVE = 1,
5174 LINE = 2,
5175 LINES = 3
5177 published service ConnectorProperties {
5178 [property] ::com::sun::star::drawing::ConnectorType EdgeKind;
5179 [property] long EdgeNode1HorzDist;
5180 [property] long EdgeNode1VertDist;
5181 [property] long EdgeNode2HorzDist;
5182 [property] long EdgeNode2VertDist;
5184 published service ConnectorShape {
5185 service ::com::sun::star::drawing::Shape;
5186 service ::com::sun::star::drawing::LineProperties;
5187 service ::com::sun::star::drawing::ConnectorProperties;
5188 service ::com::sun::star::drawing::ShadowProperties;
5189 service ::com::sun::star::drawing::Text;
5190 service ::com::sun::star::drawing::RotationDescriptor;
5191 [property] ::com::sun::star::drawing::XShape StartShape;
5192 [property] long StartGluePointIndex;
5193 [property] ::com::sun::star::awt::Point StartPosition;
5194 [property] ::com::sun::star::drawing::XShape EndShape;
5195 [property] ::com::sun::star::awt::Point EndPosition;
5196 [property] long EndGluePointIndex;
5197 [property] long EdgeLine1Delta;
5198 [property] long EdgeLine2Delta;
5199 [property] long EdgeLine3Delta;
5201 published interface XControlShape {
5202 interface ::com::sun::star::drawing::XShape;
5203 ::com::sun::star::awt::XControlModel getControl();
5204 void setControl([in] ::com::sun::star::awt::XControlModel xControl);
5206 published service ControlShape {
5207 service ::com::sun::star::drawing::Shape;
5208 interface ::com::sun::star::drawing::XControlShape;
5210 published typedef sequence< long > CoordinateSequence;
5211 published typedef sequence< ::com::sun::star::drawing::CoordinateSequence > CoordinateSequenceSequence;
5212 published service DashTable {
5213 interface ::com::sun::star::container::XNameContainer;
5215 /** @deprecated */ published enum MeasureKind {
5216 STANDARD = 0,
5217 RADIUS = 1
5219 published enum MeasureTextHorzPos {
5220 AUTO = 0,
5221 LEFTOUTSIDE = 1,
5222 INSIDE = 2,
5223 RIGHTOUTSIDE = 3
5225 published enum MeasureTextVertPos {
5226 AUTO = 0,
5227 EAST = 1,
5228 BREAKEDLINE = 2,
5229 WEST = 3,
5230 CENTERED = 4
5232 published service MeasureProperties {
5233 [property] boolean MeasureBelowReferenceEdge;
5234 [property] long MeasureHelpLine1Length;
5235 [property] long MeasureHelpLine2Length;
5236 [property] long MeasureHelpLineDistance;
5237 [property] long MeasureHelpLineOverhang;
5238 [property] ::com::sun::star::drawing::MeasureKind MeasureKind;
5239 [property] long MeasureLineDistance;
5240 [property] long MeasureOverhang;
5241 [property] boolean MeasureShowUnit;
5242 [property] boolean MeasureTextAutoAngle;
5243 [property] long MeasureTextAutoAngleView;
5244 [property] long MeasureTextFixedAngle;
5245 [property] ::com::sun::star::drawing::MeasureTextHorzPos MeasureTextHorizontalPosition;
5246 [property] ::com::sun::star::drawing::MeasureTextVertPos MeasureTextVerticalPosition;
5247 [property] boolean MeasureTextIsFixedAngle;
5248 [property] boolean MeasureTextRotate90;
5249 [property] boolean MeasureTextUpsideDown;
5250 [property, optional] short MeasureDecimalPlaces;
5252 published service Defaults {
5253 service ::com::sun::star::drawing::TextProperties;
5254 service ::com::sun::star::drawing::LineProperties;
5255 service ::com::sun::star::drawing::FillProperties;
5256 service ::com::sun::star::drawing::ShadowProperties;
5257 service ::com::sun::star::drawing::ConnectorProperties;
5258 service ::com::sun::star::drawing::MeasureProperties;
5260 published service DocumentSettings {
5261 service ::com::sun::star::document::Settings;
5262 [optional] service ::com::sun::star::document::HeaderFooterSettings;
5263 interface ::com::sun::star::beans::XPropertySet;
5264 [property, optional] short MeasureUnit;
5265 [property, optional] long ScaleNumerator;
5266 [property, optional] long ScaleDenominator;
5267 [property, optional] boolean IsPrintFitPage;
5268 [property, optional] boolean IsPrintTilePage;
5269 [property, optional] long PageNumberFormat;
5270 [property, optional] boolean ParagraphSummation;
5272 published typedef sequence< double > DoubleSequence;
5273 published typedef sequence< ::com::sun::star::drawing::DoubleSequence > DoubleSequenceSequence;
5274 published interface XShapes;
5275 published interface XShapeBinder {
5276 interface ::com::sun::star::uno::XInterface;
5277 ::com::sun::star::drawing::XShape bind([in] ::com::sun::star::drawing::XShapes xShapes);
5278 void unbind([in] ::com::sun::star::drawing::XShape xShape);
5280 published interface XShapeCombiner {
5281 interface ::com::sun::star::uno::XInterface;
5282 ::com::sun::star::drawing::XShape combine([in] ::com::sun::star::drawing::XShapes xShapes);
5283 void split([in] ::com::sun::star::drawing::XShape Group);
5285 published interface XShapeGroup;
5286 published interface XShapeGrouper {
5287 interface ::com::sun::star::uno::XInterface;
5288 ::com::sun::star::drawing::XShapeGroup group([in] ::com::sun::star::drawing::XShapes xShapes);
5289 void ungroup([in] ::com::sun::star::drawing::XShapeGroup aGroup);
5291 published interface XShapes {
5292 interface ::com::sun::star::container::XIndexAccess;
5293 void add([in] ::com::sun::star::drawing::XShape xShape);
5294 void remove([in] ::com::sun::star::drawing::XShape xShape);
5297 module view {
5298 published enum PaperOrientation {
5299 PORTRAIT = 0,
5300 LANDSCAPE = 1
5303 module drawing {
5304 published service GenericDrawPage {
5305 interface ::com::sun::star::drawing::XShapes;
5306 interface ::com::sun::star::drawing::XShapeGrouper;
5307 [optional] interface ::com::sun::star::drawing::XShapeCombiner;
5308 [optional] interface ::com::sun::star::drawing::XShapeBinder;
5309 [optional] interface ::com::sun::star::container::XNamed;
5310 [optional] interface ::com::sun::star::beans::XPropertySet;
5311 [property, optional] long BorderBottom;
5312 [property, optional] long BorderLeft;
5313 [property, optional] long BorderRight;
5314 [property, optional] long BorderTop;
5315 [property, optional] long Height;
5316 [property, optional] long Width;
5317 [property, optional, readonly] short Number;
5318 [property, optional] ::com::sun::star::view::PaperOrientation Orientation;
5319 [property, optional] ::com::sun::star::container::XNameContainer UserDefinedAttributes;
5320 [property, optional, readonly] boolean IsBackgroundDark;
5321 [property, optional] ::com::sun::star::container::XIndexAccess NavigationOrder;
5322 [property, optional] boolean BackgroundFullSize;
5324 published interface XMasterPageTarget {
5325 interface ::com::sun::star::uno::XInterface;
5326 ::com::sun::star::drawing::XDrawPage getMasterPage();
5327 void setMasterPage([in] ::com::sun::star::drawing::XDrawPage xMasterPage);
5330 module form {
5331 published interface XFormsSupplier {
5332 interface ::com::sun::star::uno::XInterface;
5333 ::com::sun::star::container::XNameContainer getForms();
5336 module drawing {
5337 published service DrawPage {
5338 service ::com::sun::star::drawing::GenericDrawPage;
5339 interface ::com::sun::star::drawing::XMasterPageTarget;
5340 [optional] interface ::com::sun::star::form::XFormsSupplier;
5342 published interface XDrawPages;
5343 /** @deprecated */ published interface XDrawPageExpander {
5344 interface ::com::sun::star::uno::XInterface;
5345 ::com::sun::star::drawing::XDrawPages expand([in] ::com::sun::star::drawing::XDrawPage xPage);
5347 /** @deprecated */ published interface XDrawPageSummarizer {
5348 interface ::com::sun::star::uno::XInterface;
5349 ::com::sun::star::drawing::XDrawPage summarize([in] ::com::sun::star::drawing::XDrawPages xPages);
5351 published interface XDrawPages {
5352 interface ::com::sun::star::container::XIndexAccess;
5353 ::com::sun::star::drawing::XDrawPage insertNewByIndex([in] long nIndex);
5354 void remove([in] ::com::sun::star::drawing::XDrawPage xPage);
5356 published service DrawPages {
5357 interface ::com::sun::star::drawing::XDrawPages;
5358 [optional] interface ::com::sun::star::drawing::XDrawPageSummarizer;
5359 [optional] interface ::com::sun::star::drawing::XDrawPageExpander;
5361 /** @deprecated */ published enum DrawViewMode {
5362 DRAW = 0,
5363 NOTES = 1,
5364 HANDOUT = 2
5366 published interface XDrawPageDuplicator {
5367 interface ::com::sun::star::uno::XInterface;
5368 ::com::sun::star::drawing::XDrawPage duplicate([in] ::com::sun::star::drawing::XDrawPage xPage);
5370 published interface XDrawPagesSupplier {
5371 interface ::com::sun::star::uno::XInterface;
5372 ::com::sun::star::drawing::XDrawPages getDrawPages();
5374 published interface XLayerSupplier {
5375 interface ::com::sun::star::uno::XInterface;
5376 ::com::sun::star::container::XNameAccess getLayerManager();
5378 published interface XMasterPagesSupplier {
5379 interface ::com::sun::star::uno::XInterface;
5380 ::com::sun::star::drawing::XDrawPages getMasterPages();
5382 published interface XDrawView {
5383 interface ::com::sun::star::uno::XInterface;
5384 void setCurrentPage([in] ::com::sun::star::drawing::XDrawPage xPage);
5385 ::com::sun::star::drawing::XDrawPage getCurrentPage();
5388 module frame {
5389 published interface XFrame;
5390 published interface XController {
5391 interface ::com::sun::star::lang::XComponent;
5392 void attachFrame([in] ::com::sun::star::frame::XFrame Frame);
5393 boolean attachModel([in] ::com::sun::star::frame::XModel Model);
5394 boolean suspend([in] boolean Suspend);
5395 any getViewData();
5396 void restoreViewData([in] any Data);
5397 ::com::sun::star::frame::XModel getModel();
5398 ::com::sun::star::frame::XFrame getFrame();
5401 module util {
5402 published struct URL {
5403 string Complete;
5404 string Main;
5405 string Protocol;
5406 string User;
5407 string Password;
5408 string Server;
5409 short Port;
5410 string Path;
5411 string Name;
5412 string Arguments;
5413 string Mark;
5416 module frame {
5417 published struct DispatchDescriptor {
5418 ::com::sun::star::util::URL FeatureURL;
5419 string FrameName;
5420 long SearchFlags;
5422 published interface XDispatch;
5423 published interface XDispatchProvider {
5424 interface ::com::sun::star::uno::XInterface;
5425 ::com::sun::star::frame::XDispatch queryDispatch([in] ::com::sun::star::util::URL URL, [in] string TargetFrameName, [in] long SearchFlags);
5426 sequence< ::com::sun::star::frame::XDispatch > queryDispatches([in] sequence< ::com::sun::star::frame::DispatchDescriptor > Requests);
5429 module ui {
5430 published interface XContextMenuInterceptor;
5431 published interface XContextMenuInterception {
5432 interface ::com::sun::star::uno::XInterface;
5433 void registerContextMenuInterceptor([in] ::com::sun::star::ui::XContextMenuInterceptor Interceptor);
5434 void releaseContextMenuInterceptor([in] ::com::sun::star::ui::XContextMenuInterceptor Interceptor);
5437 module frame {
5438 published service Controller {
5439 interface ::com::sun::star::frame::XController;
5440 interface ::com::sun::star::frame::XDispatchProvider;
5441 [optional] interface ::com::sun::star::ui::XContextMenuInterception;
5442 [optional] interface ::com::sun::star::awt::XUserInputInterception;
5443 [optional] interface ::com::sun::star::view::XSelectionSupplier;
5444 [optional] interface ::com::sun::star::datatransfer::XTransferableSupplier;
5447 module view {
5448 published interface XControlAccess {
5449 interface ::com::sun::star::uno::XInterface;
5450 ::com::sun::star::awt::XControl getControl([in] ::com::sun::star::awt::XControlModel xModel) raises (::com::sun::star::container::NoSuchElementException);
5453 module form {
5454 published interface XForm;
5455 module runtime {
5456 interface XFormController;
5459 module view {
5460 interface XFormLayerAccess {
5461 interface ::com::sun::star::view::XControlAccess;
5462 ::com::sun::star::form::runtime::XFormController getFormController([in] ::com::sun::star::form::XForm Form);
5463 boolean isFormDesignMode();
5464 void setFormDesignMode([in] boolean DesignMode);
5467 module drawing {
5468 published service DrawingDocumentDrawView {
5469 service ::com::sun::star::frame::Controller;
5470 interface ::com::sun::star::drawing::XDrawView;
5471 interface ::com::sun::star::beans::XPropertySet;
5472 interface ::com::sun::star::view::XSelectionSupplier;
5473 [optional] interface ::com::sun::star::awt::XWindow;
5474 [optional] interface ::com::sun::star::view::XFormLayerAccess;
5475 [property] boolean IsMasterPageMode;
5476 [property] boolean IsLayerMode;
5477 [property] ::com::sun::star::drawing::XDrawPage CurrentPage;
5478 [property, readonly] ::com::sun::star::awt::Rectangle VisibleArea;
5479 [property, optional] short ZoomType;
5480 [property, optional] short ZoomValue;
5481 [property, optional] ::com::sun::star::awt::Point ViewOffset;
5483 /** @deprecated */ published service DrawingDocumentFactory {
5484 /** @deprecated */ interface ::com::sun::star::lang::XMultiServiceFactory;
5486 published service EllipseShape {
5487 service ::com::sun::star::drawing::Shape;
5488 service ::com::sun::star::drawing::LineProperties;
5489 service ::com::sun::star::drawing::FillProperties;
5490 service ::com::sun::star::drawing::Text;
5491 service ::com::sun::star::drawing::ShadowProperties;
5492 service ::com::sun::star::drawing::RotationDescriptor;
5493 [property] ::com::sun::star::drawing::CircleKind CircleKind;
5494 [property] long CircleStartAngle;
5495 [property] long CircleEndAngle;
5497 published enum ProjectionMode {
5498 PARALLEL = 0,
5499 PERSPECTIVE = 1
5501 published enum ShadeMode {
5502 FLAT = 0,
5503 PHONG = 1,
5504 SMOOTH = 2,
5505 DRAFT = 3
5507 published enum EscapeDirection {
5508 SMART = 0,
5509 LEFT = 1,
5510 RIGHT = 2,
5511 UP = 3,
5512 DOWN = 4,
5513 HORIZONTAL = 5,
5514 VERTICAL = 6
5516 /** @deprecated */ published struct GluePoint {
5517 ::com::sun::star::awt::Point Position;
5518 short EscapeDirection;
5519 boolean PositionAbsolute;
5520 short Alignment;
5522 published struct GluePoint2 {
5523 ::com::sun::star::awt::Point Position;
5524 boolean IsRelative;
5525 ::com::sun::star::drawing::Alignment PositionAlignment;
5526 ::com::sun::star::drawing::EscapeDirection Escape;
5527 boolean IsUserDefined;
5529 published service GradientTable {
5530 interface ::com::sun::star::container::XNameContainer;
5532 published interface XGraphicExportFilter {
5533 interface ::com::sun::star::document::XFilter;
5534 interface ::com::sun::star::document::XExporter;
5535 interface ::com::sun::star::document::XMimeTypeInfo;
5537 published service GraphicExportFilter: ::com::sun::star::drawing::XGraphicExportFilter;
5538 published struct BarCode {
5539 long Type;
5540 string Payload;
5541 long ErrorCorrection;
5542 long Border;
5544 published service GraphicObjectShape {
5545 service ::com::sun::star::drawing::Shape;
5546 service ::com::sun::star::drawing::Text;
5547 service ::com::sun::star::drawing::ShadowProperties;
5548 service ::com::sun::star::drawing::RotationDescriptor;
5549 /** @deprecated */ [property] string GraphicURL;
5550 [property] string GraphicStreamURL;
5551 /** @deprecated */ [property, optional] ::com::sun::star::awt::XBitmap GraphicObjectFillBitmap;
5552 [property] short AdjustLuminance;
5553 [property] short AdjustContrast;
5554 [property] short AdjustRed;
5555 [property] short AdjustGreen;
5556 [property] short AdjustBlue;
5557 [property] double Gamma;
5558 [property] short Transparency;
5559 [property] ::com::sun::star::drawing::ColorMode GraphicColorMode;
5560 [property, optional] ::com::sun::star::container::XIndexContainer ImageMap;
5561 [property, optional] ::com::sun::star::graphic::XGraphic Graphic;
5562 [property, optional] boolean IsSignatureLine;
5563 [property, optional] string SignatureLineId;
5564 [property, optional] string SignatureLineSuggestedSignerName;
5565 [property, optional] string SignatureLineSuggestedSignerTitle;
5566 [property, optional] string SignatureLineSuggestedSignerEmail;
5567 [property, optional] string SignatureLineSigningInstructions;
5568 [property, optional] boolean SignatureLineShowSignDate;
5569 [property, optional] boolean SignatureLineCanAddComment;
5570 [property, optional] ::com::sun::star::graphic::XGraphic SignatureLineUnsignedImage;
5571 [property, optional] boolean SignatureLineIsSigned;
5572 [property, optional] ::com::sun::star::drawing::BarCode BarCodeProperties;
5574 /** @deprecated */ published interface XShapeGroup {
5575 interface ::com::sun::star::drawing::XShape;
5576 void enterGroup();
5577 void leaveGroup();
5579 published service GroupShape {
5580 service ::com::sun::star::drawing::Shape;
5581 interface ::com::sun::star::drawing::XShapeGroup;
5582 interface ::com::sun::star::drawing::XShapes;
5584 published service HatchTable {
5585 interface ::com::sun::star::container::XNameContainer;
5587 published struct HomogenMatrixLine {
5588 double Column1;
5589 double Column2;
5590 double Column3;
5591 double Column4;
5593 published struct HomogenMatrix {
5594 ::com::sun::star::drawing::HomogenMatrixLine Line1;
5595 ::com::sun::star::drawing::HomogenMatrixLine Line2;
5596 ::com::sun::star::drawing::HomogenMatrixLine Line3;
5597 ::com::sun::star::drawing::HomogenMatrixLine Line4;
5599 published struct HomogenMatrixLine4 {
5600 double Column1;
5601 double Column2;
5602 double Column3;
5603 double Column4;
5605 published struct HomogenMatrix4 {
5606 ::com::sun::star::drawing::HomogenMatrixLine4 Line1;
5607 ::com::sun::star::drawing::HomogenMatrixLine4 Line2;
5608 ::com::sun::star::drawing::HomogenMatrixLine4 Line3;
5609 ::com::sun::star::drawing::HomogenMatrixLine4 Line4;
5611 published enum HorizontalDimensioning {
5612 AUTO = 0,
5613 LEFT = 1,
5614 CENTERED = 2,
5615 RIGHT = 3
5617 published service Layer {
5618 interface ::com::sun::star::beans::XPropertySet;
5619 [property] string Name;
5620 [property] boolean IsVisible;
5621 [property] boolean IsPrintable;
5622 [property] boolean IsLocked;
5624 published interface XLayer;
5625 published interface XLayerManager {
5626 interface ::com::sun::star::container::XIndexAccess;
5627 ::com::sun::star::drawing::XLayer insertNewByIndex([in] long nIndex);
5628 void remove([in] ::com::sun::star::drawing::XLayer xLayer) raises (::com::sun::star::container::NoSuchElementException);
5629 void attachShapeToLayer([in] ::com::sun::star::drawing::XShape xShape, [in] ::com::sun::star::drawing::XLayer xLayer);
5630 ::com::sun::star::drawing::XLayer getLayerForShape([in] ::com::sun::star::drawing::XShape xShape);
5632 published service LayerManager {
5633 interface ::com::sun::star::drawing::XLayerManager;
5634 interface ::com::sun::star::container::XNameAccess;
5636 published enum LayerType {
5637 LAYOUT = 0,
5638 CONTROLSA = 1,
5639 DIMENSIONIANG_LINES = 2,
5640 USER_DEFINED = 3
5642 /** @deprecated */ published enum LineEndType {
5643 NONE = 0,
5644 ARROW = 1,
5645 CIRCLE = 2,
5646 SQUARE = 3,
5647 SPECIAL = 4
5649 published service PolyPolygonDescriptor {
5650 [property, readonly] ::com::sun::star::drawing::PolygonKind PolygonKind;
5651 [property] ::com::sun::star::drawing::PointSequenceSequence PolyPolygon;
5652 [property] ::com::sun::star::drawing::PointSequenceSequence Geometry;
5654 published service LineShape {
5655 service ::com::sun::star::drawing::Shape;
5656 service ::com::sun::star::drawing::LineProperties;
5657 service ::com::sun::star::drawing::PolyPolygonDescriptor;
5658 service ::com::sun::star::drawing::Text;
5659 service ::com::sun::star::drawing::ShadowProperties;
5660 service ::com::sun::star::drawing::RotationDescriptor;
5662 published service MarkerTable {
5663 interface ::com::sun::star::container::XNameContainer;
5665 published service MasterPage {
5666 service ::com::sun::star::drawing::GenericDrawPage;
5668 published service MasterPages {
5669 interface ::com::sun::star::drawing::XDrawPages;
5671 published service MeasureShape {
5672 service ::com::sun::star::drawing::Shape;
5673 service ::com::sun::star::drawing::MeasureProperties;
5674 service ::com::sun::star::drawing::LineProperties;
5675 service ::com::sun::star::drawing::Text;
5676 service ::com::sun::star::drawing::ShadowProperties;
5677 service ::com::sun::star::drawing::RotationDescriptor;
5678 [property] ::com::sun::star::awt::Point StartPosition;
5679 [property] ::com::sun::star::awt::Point EndPosition;
5681 published enum MirrorAxis {
5682 VERTICAL = 0,
5683 HORIZONTAL = 1
5685 published enum NormalsKind {
5686 SPECIFIC = 0,
5687 FLAT = 1,
5688 SPHERE = 2
5690 published service OLE2Shape {
5691 service ::com::sun::star::drawing::Shape;
5692 [property] string CLSID;
5693 [property] string PersistName;
5694 [property, readonly] ::com::sun::star::frame::XModel Model;
5695 [property, readonly] boolean IsInternal;
5697 published service OpenBezierShape {
5698 service ::com::sun::star::drawing::Shape;
5699 service ::com::sun::star::drawing::LineProperties;
5700 service ::com::sun::star::drawing::PolyPolygonBezierDescriptor;
5701 service ::com::sun::star::drawing::Text;
5702 service ::com::sun::star::drawing::ShadowProperties;
5703 service ::com::sun::star::drawing::RotationDescriptor;
5705 published service PageShape {
5706 service ::com::sun::star::drawing::Shape;
5707 [property, optional] long PageNumber;
5709 published service PluginShape {
5710 service ::com::sun::star::drawing::Shape;
5711 [property] string PluginMimeType;
5712 [property] string PluginURL;
5713 [property] sequence< ::com::sun::star::beans::PropertyValue > PluginCommands;
5715 published service PolyLineShape {
5716 service ::com::sun::star::drawing::Shape;
5717 service ::com::sun::star::drawing::LineProperties;
5718 service ::com::sun::star::drawing::PolyPolygonDescriptor;
5719 service ::com::sun::star::drawing::Text;
5720 service ::com::sun::star::drawing::ShadowProperties;
5721 service ::com::sun::star::drawing::RotationDescriptor;
5723 published service PolyPolygonBezierShape {
5724 service ::com::sun::star::drawing::Shape;
5725 service ::com::sun::star::drawing::LineProperties;
5726 service ::com::sun::star::drawing::FillProperties;
5727 service ::com::sun::star::drawing::PolyPolygonBezierDescriptor;
5728 service ::com::sun::star::drawing::Text;
5729 service ::com::sun::star::drawing::ShadowProperties;
5730 service ::com::sun::star::drawing::RotationDescriptor;
5732 published service PolyPolygonShape {
5733 service ::com::sun::star::drawing::Shape;
5734 service ::com::sun::star::drawing::LineProperties;
5735 service ::com::sun::star::drawing::FillProperties;
5736 service ::com::sun::star::drawing::PolyPolygonDescriptor;
5737 service ::com::sun::star::drawing::Text;
5738 service ::com::sun::star::drawing::ShadowProperties;
5739 service ::com::sun::star::drawing::RotationDescriptor;
5741 published struct PolyPolygonShape3D {
5742 ::com::sun::star::drawing::DoubleSequenceSequence SequenceX;
5743 ::com::sun::star::drawing::DoubleSequenceSequence SequenceY;
5744 ::com::sun::star::drawing::DoubleSequenceSequence SequenceZ;
5746 published constants BarCodeErrorCorrection {
5747 const long HIGH = 4;
5748 const long LOW = 1;
5749 const long MEDIUM = 2;
5750 const long QUARTILE = 3;
5752 published service RectangleShape {
5753 service ::com::sun::star::drawing::Shape;
5754 service ::com::sun::star::drawing::FillProperties;
5755 service ::com::sun::star::drawing::LineProperties;
5756 service ::com::sun::star::drawing::Text;
5757 service ::com::sun::star::drawing::ShadowProperties;
5758 service ::com::sun::star::drawing::RotationDescriptor;
5759 [property] long CornerRadius;
5761 published service ShapeCollection: ::com::sun::star::drawing::XShapes;
5762 published service Shapes {
5763 interface ::com::sun::star::drawing::XShapes;
5765 /** @deprecated */ published enum SnapObjectType {
5766 POINT = 0,
5767 VERTICAL = 1,
5768 HORIZONTAL = 2
5770 /** @deprecated */ published enum TextAdjust {
5771 LEFT = 0,
5772 CENTER = 1,
5773 RIGHT = 2,
5774 BLOCK = 3,
5775 STRETCH = 4
5777 published service TextShape {
5778 service ::com::sun::star::drawing::Shape;
5779 service ::com::sun::star::drawing::FillProperties;
5780 service ::com::sun::star::drawing::LineProperties;
5781 service ::com::sun::star::drawing::ShadowProperties;
5782 service ::com::sun::star::drawing::Text;
5783 service ::com::sun::star::drawing::RotationDescriptor;
5784 [property] long CornerRadius;
5786 /** @deprecated */ published enum TextureKind {
5787 LUMINANCE = 0,
5788 COLOR = 1
5790 published enum TextureKind2 {
5791 LUMINANCE = 0,
5792 INTENSITY = 1,
5793 COLOR = 2
5795 published enum TextureMode {
5796 REPLACE = 0,
5797 MODULATE = 1,
5798 BLEND = 2
5800 published enum TextureProjectionMode {
5801 OBJECTSPECIFIC = 0,
5802 PARALLEL = 1,
5803 SPHERE = 2
5805 published service TransparencyGradientTable {
5806 interface ::com::sun::star::container::XNameContainer;
5808 published enum VerticalDimensioning {
5809 AUTO = 0,
5810 TOP = 1,
5811 CENTERED = 2,
5812 BOTTOM = 3
5814 /** @deprecated */ published interface XConnectableShape {
5815 interface ::com::sun::star::uno::XInterface;
5816 boolean canConnect([in] ::com::sun::star::awt::Point nPos, [in] boolean bCreateGluePoint, [in] long nMaxDist);
5817 boolean doConnect([in] ::com::sun::star::awt::Point nPos, [in] boolean bCreateGluePoint, [in] long nMaxDist);
5819 /** @deprecated */ published interface XConnectorShape {
5820 interface ::com::sun::star::drawing::XShape;
5821 void connectStart([in] ::com::sun::star::drawing::XConnectableShape xShape, [in] ::com::sun::star::drawing::ConnectionType nPos);
5822 void connectEnd([in] ::com::sun::star::drawing::XConnectableShape xShape, [in] ::com::sun::star::drawing::ConnectionType nPos);
5823 void disconnectBegin([in] ::com::sun::star::drawing::XConnectableShape xShape);
5824 void disconnectEnd([in] ::com::sun::star::drawing::XConnectableShape xShape);
5826 published interface XDrawPage {
5827 interface ::com::sun::star::drawing::XShapes;
5829 published interface XLayer {
5830 interface ::com::sun::star::beans::XPropertySet;
5833 module frame {
5834 published interface XStatusListener;
5835 published interface XDispatch {
5836 interface ::com::sun::star::uno::XInterface;
5837 void dispatch([in] ::com::sun::star::util::URL URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments);
5838 void addStatusListener([in] ::com::sun::star::frame::XStatusListener Control, [in] ::com::sun::star::util::URL URL);
5839 void removeStatusListener([in] ::com::sun::star::frame::XStatusListener Control, [in] ::com::sun::star::util::URL URL);
5842 module drawing {
5843 published interface XSelectionFunction {
5844 interface ::com::sun::star::lang::XComponent;
5845 interface ::com::sun::star::lang::XServiceInfo;
5846 interface ::com::sun::star::frame::XDispatch;
5847 interface ::com::sun::star::awt::XKeyHandler;
5848 interface ::com::sun::star::awt::XMouseClickHandler;
5849 interface ::com::sun::star::awt::XMouseMotionHandler;
5850 interface ::com::sun::star::view::XSelectionChangeListener;
5852 /** @deprecated */ published interface XShapeAligner {
5853 interface ::com::sun::star::uno::XInterface;
5854 void alignShapes([inout] ::com::sun::star::drawing::XShapes aShapes, [in] ::com::sun::star::drawing::Alignment eType);
5856 /** @deprecated */ published interface XShapeArranger {
5857 interface ::com::sun::star::uno::XInterface;
5858 void arrange([in] ::com::sun::star::drawing::XShapes xShapes, [in] ::com::sun::star::drawing::Arrangement eType);
5859 void bringToFront([in] ::com::sun::star::drawing::XShapes xShapes, [in] short nSteps);
5860 void sendToBack([in] ::com::sun::star::drawing::XShapes xShapes, [in] short nSteps);
5861 void setBehindShape([in] ::com::sun::star::drawing::XShapes xShapes, [in] ::com::sun::star::drawing::XShape xShape);
5862 void setInFrontOf([in] ::com::sun::star::drawing::XShapes xShapes, [in] ::com::sun::star::drawing::XShape xShape);
5863 void reverseOrder([in] ::com::sun::star::drawing::XShapes xShapes);
5865 /** @deprecated */ published interface XShapeMirror {
5866 interface ::com::sun::star::uno::XInterface;
5867 void mirror([inout] ::com::sun::star::drawing::XShapes aShapes, [in] ::com::sun::star::drawing::MirrorAxis eAxis);
5868 void mirrorAtAxis([inout] ::com::sun::star::drawing::XShapes aShapes, [in] ::com::sun::star::drawing::XShape aLine);
5870 /** @deprecated */ published interface XUniversalShapeDescriptor {
5871 interface ::com::sun::star::drawing::XShapeDescriptor;
5872 void setShapeType([in] string aShapeTypeName);
5875 module embed {
5876 published constants Actions {
5877 const long PREVENT_CLOSE = 1;
5878 const long PREVENT_TERMINATION = 2;
5880 published constants Aspects {
5881 const hyper MSOLE_CONTENT = 1;
5882 const hyper MSOLE_DOCPRINT = 8;
5883 const hyper MSOLE_ICON = 4;
5884 const hyper MSOLE_THUMBNAIL = 2;
5886 published exception InvalidStorageException: ::com::sun::star::io::IOException {
5888 published exception StorageWrappedTargetException: ::com::sun::star::lang::WrappedTargetException {
5891 module packages {
5892 published exception NoEncryptionException: ::com::sun::star::uno::Exception {
5894 published exception WrongPasswordException: ::com::sun::star::uno::Exception {
5897 module embed {
5898 published interface XStorage {
5899 interface ::com::sun::star::container::XNameAccess;
5900 interface ::com::sun::star::lang::XComponent;
5901 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);
5902 ::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);
5903 ::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);
5904 ::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);
5905 ::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);
5906 ::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);
5907 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);
5908 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);
5909 boolean isStreamElement([in] string sElementName) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::embed::InvalidStorageException);
5910 boolean isStorageElement([in] string sElementName) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::embed::InvalidStorageException);
5911 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);
5912 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);
5913 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);
5914 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);
5916 published service BaseStorage {
5917 interface ::com::sun::star::embed::XStorage;
5918 interface ::com::sun::star::beans::XPropertySet;
5919 [property, readonly] long OpenMode;
5920 [property, optional, readonly] string URL;
5922 published service DocumentCloser: ::com::sun::star::lang::XComponent {
5923 DocumentCloserCtor1([in] ::com::sun::star::frame::XFrame xFrame) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::frame::DoubleInitializationException, ::com::sun::star::uno::Exception);
5925 published constants ElementModes {
5926 const long NOCREATE = 16;
5927 const long READ = 1;
5928 const long READWRITE = 7;
5929 const long SEEKABLE = 2;
5930 const long SEEKABLEREAD = 3;
5931 const long TRUNCATE = 8;
5932 const long WRITE = 4;
5934 published constants EmbedMapUnits {
5935 const long ONE_1000TH_INCH = 4;
5936 const long ONE_100TH_INCH = 5;
5937 const long ONE_100TH_MM = 0;
5938 const long ONE_10TH_INCH = 6;
5939 const long ONE_10TH_MM = 1;
5940 const long ONE_CM = 3;
5941 const long ONE_INCH = 7;
5942 const long ONE_MM = 2;
5943 const long PIXEL = 10;
5944 const long POINT = 8;
5945 const long TWIP = 9;
5947 published constants EmbedMisc {
5948 const hyper EMBED_ACTIVATEIMMEDIATELY = 4294967296;
5949 const hyper EMBED_NEEDSSIZEONLOAD = 17179869184;
5950 const hyper EMBED_NEVERRESIZE = 8589934592;
5951 const hyper MS_EMBED_ACTIVATEWHENVISIBLE = 256;
5952 const hyper MS_EMBED_ACTSLIKEBUTTON = 4096;
5953 const hyper MS_EMBED_ACTSLIKELABEL = 8192;
5954 const hyper MS_EMBED_ALIGNABLE = 32768;
5955 const hyper MS_EMBED_ALWAYSRUN = 2048;
5956 const hyper MS_EMBED_CANLINKBYOLE1 = 32;
5957 const hyper MS_EMBED_CANTLINKINSIDE = 16;
5958 const hyper MS_EMBED_IGNOREACTIVATEWHENVISIBLE = 524288;
5959 const hyper MS_EMBED_IMEMODE = 262144;
5960 const hyper MS_EMBED_INSERTNOTREPLACE = 4;
5961 const hyper MS_EMBED_INSIDEOUT = 128;
5962 const hyper MS_EMBED_INVISIBLEATRUNTIME = 1024;
5963 const hyper MS_EMBED_ISLINKOBJECT = 64;
5964 const hyper MS_EMBED_NOUIACTIVATE = 16384;
5965 const hyper MS_EMBED_ONLYICONIC = 2;
5966 const hyper MS_EMBED_RECOMPOSEONRESIZE = 1;
5967 const hyper MS_EMBED_RENDERINGISDEVICEINDEPENDENT = 512;
5968 const hyper MS_EMBED_SETCLIENTSITEFIRST = 131072;
5969 const hyper MS_EMBED_SIMPLEFRAME = 65536;
5970 const hyper MS_EMBED_STATIC = 8;
5971 const hyper MS_EMBED_SUPPORTSMULTILEVELUNDO = 2097152;
5972 const hyper MS_EMBED_WANTSTOMENUMERGE = 1048576;
5974 published constants EmbedStates {
5975 const long ACTIVE = 2;
5976 const long INPLACE_ACTIVE = 3;
5977 const long LOADED = 0;
5978 const long RUNNING = 1;
5979 const long UI_ACTIVE = 4;
5981 published constants EmbedUpdateModes {
5982 const long ALWAYS_UPDATE = 0;
5983 const long EXPLICIT_UPDATE = 1;
5985 published constants EmbedVerbs {
5986 const long MS_OLEVERB_DISCARDUNDOSTATE = -6;
5987 const long MS_OLEVERB_HIDE = -3;
5988 const long MS_OLEVERB_IPACTIVATE = -5;
5989 const long MS_OLEVERB_OPEN = -2;
5990 const long MS_OLEVERB_PRIMARY = 0;
5991 const long MS_OLEVERB_SHOW = -1;
5992 const long MS_OLEVERB_UIACTIVATE = -4;
5994 published interface XEmbedObjectCreator {
5995 interface ::com::sun::star::uno::XInterface;
5996 ::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);
5997 ::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);
5998 ::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);
6000 published interface XEmbedObjectFactory {
6001 interface ::com::sun::star::uno::XInterface;
6002 ::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);
6004 published interface XLinkCreator {
6005 interface ::com::sun::star::uno::XInterface;
6006 ::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);
6008 published interface XLinkFactory {
6009 interface ::com::sun::star::uno::XInterface;
6010 ::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);
6013 module frame {
6014 published interface XDispatchProviderInterceptor;
6016 module embed {
6017 published service EmbeddedObjectDescriptor {
6018 [property, optional] boolean StoreVisualReplacement;
6019 [property, optional] ::com::sun::star::frame::XDispatchProviderInterceptor OutplaceDispatchInterceptor;
6020 [property, optional] ::com::sun::star::embed::XStorage RecoveryStorage;
6022 published constants EntryInitModes {
6023 const long DEFAULT_INIT = 0;
6024 const long MEDIA_DESCRIPTOR_INIT = 3;
6025 const long NO_INIT = 2;
6026 const long TRUNCATE_INIT = 1;
6027 const long URL_LINK_INIT = 4;
6029 published service FileSystemStorage {
6030 service ::com::sun::star::embed::BaseStorage;
6032 published service FileSystemStorageFactory: ::com::sun::star::lang::XSingleServiceFactory;
6033 published interface XHatchWindow;
6034 published interface XHatchWindowFactory {
6035 interface ::com::sun::star::uno::XInterface;
6036 ::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);
6038 published interface XEmbeddedObject;
6039 published struct InsertedObjectInfo {
6040 ::com::sun::star::embed::XEmbeddedObject Object;
6041 sequence< ::com::sun::star::beans::NamedValue > Options;
6043 published interface XActionsApproval;
6044 published service InstanceLocker: ::com::sun::star::lang::XComponent {
6045 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);
6046 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);
6048 published exception LinkageMisuseException: ::com::sun::star::uno::Exception {
6050 published interface XEmbedObjectClipboardCreator {
6051 interface ::com::sun::star::uno::XInterface;
6052 ::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);
6054 published exception WrongStateException: ::com::sun::star::uno::Exception {
6056 published exception NeedsRunningStateException: ::com::sun::star::embed::WrongStateException {
6058 published exception NoVisualAreaSizeException: ::com::sun::star::uno::Exception {
6060 published interface XClassifiedObject {
6061 interface ::com::sun::star::uno::XInterface;
6062 sequence< byte > getClassID();
6063 string getClassName();
6064 void setClassInfo([in] sequence< byte > aClassID, [in] string sClassName) raises (::com::sun::star::lang::NoSupportException);
6066 published interface XTransactedObject {
6067 interface ::com::sun::star::uno::XInterface;
6068 void commit() raises (::com::sun::star::io::IOException, ::com::sun::star::lang::WrappedTargetException);
6069 void revert() raises (::com::sun::star::io::IOException, ::com::sun::star::lang::WrappedTargetException);
6071 published interface XOLESimpleStorage {
6072 interface ::com::sun::star::container::XNameContainer;
6073 interface ::com::sun::star::lang::XComponent;
6074 interface ::com::sun::star::embed::XTransactedObject;
6075 interface ::com::sun::star::embed::XClassifiedObject;
6077 published service OLESimpleStorage: ::com::sun::star::embed::XOLESimpleStorage {
6078 createFromInputStream([in] ::com::sun::star::io::XInputStream xInputStream, [in] boolean bNoTempCopy);
6079 createFromStream([in] ::com::sun::star::io::XStream xStream, [in] boolean bNoTempCopy);
6081 published exception ObjectSaveVetoException: ::com::sun::star::uno::Exception {
6083 published exception StateChangeInProgressException: ::com::sun::star::embed::WrongStateException {
6084 long TargetState;
6086 published interface XEncryptionProtectedSource {
6087 interface ::com::sun::star::uno::XInterface;
6088 void setEncryptionPassword([in] string sPassword) raises (::com::sun::star::io::IOException);
6089 void removeEncryption() raises (::com::sun::star::io::IOException);
6091 published interface XTransactionListener;
6092 published interface XTransactionBroadcaster {
6093 interface ::com::sun::star::uno::XInterface;
6094 void addTransactionListener([in] ::com::sun::star::embed::XTransactionListener aListener);
6095 void removeTransactionListener([in] ::com::sun::star::embed::XTransactionListener aListener);
6097 published service Storage {
6098 service ::com::sun::star::embed::BaseStorage;
6099 interface ::com::sun::star::embed::XTransactedObject;
6100 interface ::com::sun::star::embed::XTransactionBroadcaster;
6101 [optional] interface ::com::sun::star::embed::XEncryptionProtectedSource;
6102 [property] string MediaType;
6103 [property, optional] string Version;
6104 [property, readonly] boolean MediaTypeFallbackIsUsed;
6105 [property, readonly] boolean IsRoot;
6106 [property, optional, readonly] boolean RepairPackage;
6107 [property, optional, readonly] boolean HasEncryptedEntries;
6108 [property, optional, readonly] boolean HasNonEncryptedEntries;
6110 published service StorageFactory: ::com::sun::star::lang::XSingleServiceFactory;
6111 published constants StorageFormats {
6112 const long OFOPXML = 3;
6113 const long PACKAGE = 1;
6114 const long ZIP = 2;
6116 published service StorageStream {
6117 interface ::com::sun::star::io::XStream;
6118 interface ::com::sun::star::lang::XComponent;
6119 interface ::com::sun::star::beans::XPropertySet;
6120 [optional] interface ::com::sun::star::io::XSeekable;
6121 [optional] interface ::com::sun::star::embed::XEncryptionProtectedSource;
6122 [property] string MediaType;
6123 [property] boolean IsCompressed;
6124 [property, readonly] boolean IsEncrypted;
6125 [property] boolean UseCommonStoragePasswordEncryption;
6126 [property, readonly] long Size;
6128 published exception UnreachableStateException: ::com::sun::star::uno::Exception {
6129 long CurrentState;
6130 long NextState;
6132 published exception UseBackupException: ::com::sun::star::io::IOException {
6133 string TemporaryFileURL;
6135 published constants VerbAttributes {
6136 const long MS_VERBATTR_NEVERDIRTIES = 1;
6137 const long MS_VERBATTR_ONCONTAINERMENU = 2;
6139 published struct VerbDescriptor {
6140 long VerbID;
6141 string VerbName;
6142 long VerbFlags;
6143 long VerbAttributes;
6145 published struct VisualRepresentation {
6146 ::com::sun::star::datatransfer::DataFlavor Flavor;
6147 any Data;
6149 published interface XActionsApproval {
6150 interface ::com::sun::star::uno::XInterface;
6151 boolean approveAction([in] long nAction);
6153 published interface XCommonEmbedPersist {
6154 interface ::com::sun::star::uno::XInterface;
6155 void storeOwn() raises (::com::sun::star::embed::WrongStateException, ::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
6156 boolean isReadonly() raises (::com::sun::star::embed::WrongStateException);
6157 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);
6160 module util {
6161 published interface XCloseable;
6163 module embed {
6164 published interface XComponentSupplier {
6165 interface ::com::sun::star::uno::XInterface;
6166 ::com::sun::star::util::XCloseable getComponent();
6168 published interface XEmbedPersist {
6169 interface ::com::sun::star::embed::XCommonEmbedPersist;
6170 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);
6171 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);
6172 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);
6173 void saveCompleted([in] boolean bUseNew) raises (::com::sun::star::embed::WrongStateException, ::com::sun::star::uno::Exception);
6174 boolean hasEntry() raises (::com::sun::star::embed::WrongStateException);
6175 string getEntryName() raises (::com::sun::star::embed::WrongStateException);
6177 published interface XEmbeddedClient {
6178 interface ::com::sun::star::embed::XComponentSupplier;
6179 void saveObject() raises (::com::sun::star::embed::ObjectSaveVetoException, ::com::sun::star::uno::Exception);
6180 void visibilityChanged([in] boolean bVisible) raises (::com::sun::star::embed::WrongStateException);
6182 published interface XStateChangeListener;
6183 published interface XStateChangeBroadcaster {
6184 interface ::com::sun::star::uno::XInterface;
6185 void addStateChangeListener([in] ::com::sun::star::embed::XStateChangeListener xListener);
6186 void removeStateChangeListener([in] ::com::sun::star::embed::XStateChangeListener xListener);
6188 published interface XVisualObject {
6189 interface ::com::sun::star::uno::XInterface;
6190 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);
6191 ::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);
6192 ::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);
6193 long getMapUnit([in] hyper nAspect) raises (::com::sun::star::uno::Exception);
6196 module util {
6197 published interface XCloseListener;
6198 published interface XCloseBroadcaster {
6199 interface ::com::sun::star::uno::XInterface;
6200 void addCloseListener([in] ::com::sun::star::util::XCloseListener Listener);
6201 void removeCloseListener([in] ::com::sun::star::util::XCloseListener Listener);
6203 published interface XCloseable {
6204 interface ::com::sun::star::util::XCloseBroadcaster;
6205 void close([in] boolean DeliverOwnership) raises (::com::sun::star::util::CloseVetoException);
6208 module embed {
6209 published interface XEmbeddedObject {
6210 interface ::com::sun::star::embed::XVisualObject;
6211 interface ::com::sun::star::embed::XClassifiedObject;
6212 interface ::com::sun::star::embed::XComponentSupplier;
6213 interface ::com::sun::star::embed::XStateChangeBroadcaster;
6214 interface ::com::sun::star::document::XEventBroadcaster;
6215 interface ::com::sun::star::util::XCloseable;
6216 void changeState([in] long nNewState) raises (::com::sun::star::embed::UnreachableStateException, ::com::sun::star::embed::WrongStateException, ::com::sun::star::uno::Exception);
6217 sequence< long > getReachableStates() raises (::com::sun::star::embed::NeedsRunningStateException, ::com::sun::star::embed::WrongStateException);
6218 long getCurrentState() raises (::com::sun::star::embed::WrongStateException);
6219 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);
6220 sequence< ::com::sun::star::embed::VerbDescriptor > getSupportedVerbs() raises (::com::sun::star::embed::NeedsRunningStateException, ::com::sun::star::embed::WrongStateException);
6221 void setClientSite([in] ::com::sun::star::embed::XEmbeddedClient xClient) raises (::com::sun::star::embed::WrongStateException);
6222 ::com::sun::star::embed::XEmbeddedClient getClientSite() raises (::com::sun::star::embed::WrongStateException);
6223 void update() raises (::com::sun::star::embed::WrongStateException, ::com::sun::star::uno::Exception);
6224 void setUpdateMode([in] long nMode) raises (::com::sun::star::embed::WrongStateException);
6225 hyper getStatus([in] hyper nAspect) raises (::com::sun::star::embed::WrongStateException);
6226 void setContainerName([in] string sName);
6228 published interface XExtendedStorageStream {
6229 interface ::com::sun::star::io::XStream;
6230 interface ::com::sun::star::lang::XComponent;
6231 [optional] interface ::com::sun::star::io::XSeekable;
6232 [optional] interface ::com::sun::star::embed::XEncryptionProtectedSource;
6233 [optional] interface ::com::sun::star::beans::XPropertySet;
6234 [optional] interface ::com::sun::star::embed::XTransactedObject;
6235 [optional] interface ::com::sun::star::embed::XTransactionBroadcaster;
6237 published interface XHatchWindowController;
6238 published interface XHatchWindow {
6239 interface ::com::sun::star::lang::XComponent;
6240 [attribute] ::com::sun::star::awt::Size HatchBorderSize;
6241 void setController([in] ::com::sun::star::embed::XHatchWindowController xController);
6243 published interface XHatchWindowController {
6244 interface ::com::sun::star::uno::XInterface;
6245 void requestPositioning([in] ::com::sun::star::awt::Rectangle aRect);
6246 ::com::sun::star::awt::Rectangle calcAdjustedRectangle([in] ::com::sun::star::awt::Rectangle aRect);
6247 void activated();
6248 void deactivated();
6250 published interface XHierarchicalStorageAccess {
6251 interface ::com::sun::star::uno::XInterface;
6252 ::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);
6253 ::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);
6254 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);
6256 published interface XInplaceObject {
6257 interface ::com::sun::star::uno::XInterface;
6258 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);
6259 void enableModeless([in] boolean bEnable) raises (::com::sun::star::embed::WrongStateException, ::com::sun::star::uno::Exception);
6260 void translateAccelerators([in] sequence< ::com::sun::star::awt::KeyEvent > aKeys) raises (::com::sun::star::embed::WrongStateException);
6262 published interface XInsertObjectDialog {
6263 interface ::com::sun::star::uno::XInterface;
6264 ::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);
6266 published interface XLinkageSupport {
6267 interface ::com::sun::star::embed::XCommonEmbedPersist;
6268 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);
6269 boolean isLink() raises (::com::sun::star::embed::WrongStateException);
6270 string getLinkURL() raises (::com::sun::star::embed::WrongStateException, ::com::sun::star::uno::Exception);
6273 module packages {
6274 published exception NoRawFormatException: ::com::sun::star::io::IOException {
6277 module embed {
6278 published interface XOptimizedStorage {
6279 interface ::com::sun::star::uno::XInterface;
6280 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);
6281 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);
6282 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);
6283 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);
6284 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);
6285 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);
6286 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);
6288 published interface XPackageStructureCreator {
6289 interface ::com::sun::star::uno::XInterface;
6290 void convertToPackage([in] string sFolderURL, [in] ::com::sun::star::io::XOutputStream xTargetStream) raises (::com::sun::star::io::IOException);
6292 published interface XPersistanceHolder {
6293 interface ::com::sun::star::uno::XInterface;
6294 void disconnectPersistence() raises (::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
6295 void connectPersistance([in] ::com::sun::star::io::XStream xStream) raises (::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
6297 published interface XRelationshipAccess {
6298 interface ::com::sun::star::uno::XInterface;
6299 boolean hasByID([in] string sID) raises (::com::sun::star::io::IOException);
6300 string getTargetByID([in] string sID) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::io::IOException);
6301 string getTypeByID([in] string sID) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::io::IOException);
6302 sequence< ::com::sun::star::beans::StringPair > getRelationshipByID([in] string sID) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::io::IOException);
6303 sequence< sequence< ::com::sun::star::beans::StringPair > > getRelationshipsByType([in] string sType) raises (::com::sun::star::io::IOException);
6304 sequence< sequence< ::com::sun::star::beans::StringPair > > getAllRelationships() raises (::com::sun::star::io::IOException);
6305 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);
6306 void removeRelationshipByID([in] string sID) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::io::IOException);
6307 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);
6308 void clearRelationships() raises (::com::sun::star::io::IOException);
6310 published interface XStateChangeListener {
6311 interface ::com::sun::star::lang::XEventListener;
6312 void changingState([in] ::com::sun::star::lang::EventObject aEvent, [in] long nOldState, [in] long nNewState) raises (::com::sun::star::embed::WrongStateException);
6313 void stateChanged([in] ::com::sun::star::lang::EventObject aEvent, [in] long nOldState, [in] long nNewState);
6315 published interface XStorageRawAccess {
6316 interface ::com::sun::star::uno::XInterface;
6317 ::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);
6318 ::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);
6319 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);
6321 published interface XTransactionListener {
6322 interface ::com::sun::star::lang::XEventListener;
6323 void preCommit([in] ::com::sun::star::lang::EventObject aEvent) raises (::com::sun::star::uno::Exception);
6324 void commited([in] ::com::sun::star::lang::EventObject aEvent);
6325 void preRevert([in] ::com::sun::star::lang::EventObject aEvent) raises (::com::sun::star::uno::Exception);
6326 void reverted([in] ::com::sun::star::lang::EventObject aEvent);
6328 published interface XTransferableSupplier {
6329 interface ::com::sun::star::uno::XInterface;
6330 ::com::sun::star::datatransfer::XTransferable getTransferable();
6332 published interface XWindowSupplier {
6333 interface ::com::sun::star::uno::XInterface;
6334 ::com::sun::star::awt::XWindow getWindow();
6337 module form {
6338 published service ControlFontDialog: ::com::sun::star::ui::dialogs::XExecutableDialog {
6339 createWithGridModel([in] ::com::sun::star::beans::XPropertySet GridModel);
6341 published interface XFormComponent {
6342 interface ::com::sun::star::container::XChild;
6344 published service FormComponent {
6345 interface ::com::sun::star::form::XFormComponent;
6346 interface ::com::sun::star::lang::XComponent;
6347 interface ::com::sun::star::container::XNamed;
6348 interface ::com::sun::star::beans::XPropertySet;
6349 interface ::com::sun::star::io::XPersistObject;
6350 [optional] interface ::com::sun::star::beans::XPropertyBag;
6351 [property] string Name;
6353 published service FormControlModel {
6354 service ::com::sun::star::awt::UnoControlModel;
6355 service ::com::sun::star::form::FormComponent;
6356 [optional] interface ::com::sun::star::beans::XFastPropertySet;
6357 [optional] interface ::com::sun::star::beans::XPropertyState;
6358 [property, readonly] short ClassId;
6359 [property, optional] short TabIndex;
6360 [property] string Tag;
6362 published interface XUpdateListener;
6363 published interface XUpdateBroadcaster {
6364 interface ::com::sun::star::uno::XInterface;
6365 void addUpdateListener([in] ::com::sun::star::form::XUpdateListener aListener);
6366 void removeUpdateListener([in] ::com::sun::star::form::XUpdateListener aListener);
6368 published interface XBoundComponent {
6369 interface ::com::sun::star::form::XUpdateBroadcaster;
6370 boolean commit();
6372 published interface XLoadListener {
6373 interface ::com::sun::star::lang::XEventListener;
6374 void loaded([in] ::com::sun::star::lang::EventObject aEvent);
6375 void unloading([in] ::com::sun::star::lang::EventObject aEvent);
6376 void unloaded([in] ::com::sun::star::lang::EventObject aEvent);
6377 void reloading([in] ::com::sun::star::lang::EventObject aEvent);
6378 void reloaded([in] ::com::sun::star::lang::EventObject aEvent);
6380 published interface XResetListener;
6381 published interface XReset {
6382 interface ::com::sun::star::uno::XInterface;
6383 void reset();
6384 void addResetListener([in] ::com::sun::star::form::XResetListener aListener);
6385 void removeResetListener([in] ::com::sun::star::form::XResetListener aListener);
6387 published service DataAwareControlModel {
6388 service ::com::sun::star::form::FormControlModel;
6389 interface ::com::sun::star::form::XLoadListener;
6390 interface ::com::sun::star::form::XReset;
6391 [optional] interface ::com::sun::star::form::XBoundComponent;
6392 [property] string DataField;
6393 [property, optional] boolean InputRequired;
6394 [property, readonly] ::com::sun::star::beans::XPropertySet BoundField;
6395 [property] ::com::sun::star::beans::XPropertySet LabelControl;
6397 /** @deprecated */ published enum DataSelectionType {
6398 TABLE = 0,
6399 QUERY = 1,
6400 SQL = 2,
6401 SQLPASSTHROUGH = 3
6403 /** @deprecated */ published struct DatabaseDeleteEvent: ::com::sun::star::lang::EventObject {
6404 sequence< any > Bookmarks;
6406 published struct DatabaseParameterEvent: ::com::sun::star::lang::EventObject {
6407 ::com::sun::star::container::XIndexAccess Parameters;
6409 /** @deprecated */ published struct ErrorEvent: ::com::sun::star::lang::EventObject {
6410 any Reason;
6412 published enum FormButtonType {
6413 PUSH = 0,
6414 SUBMIT = 1,
6415 RESET = 2,
6416 URL = 3
6418 published constants FormComponentType {
6419 const short CHECKBOX = 5;
6420 const short COMBOBOX = 7;
6421 const short COMMANDBUTTON = 2;
6422 const short CONTROL = 1;
6423 const short CURRENCYFIELD = 18;
6424 const short DATEFIELD = 15;
6425 const short FILECONTROL = 12;
6426 const short FIXEDTEXT = 10;
6427 const short GRIDCONTROL = 11;
6428 const short GROUPBOX = 8;
6429 const short HIDDENCONTROL = 13;
6430 const short IMAGEBUTTON = 4;
6431 const short IMAGECONTROL = 14;
6432 const short LISTBOX = 6;
6433 const short NAVIGATIONBAR = 22;
6434 const short NUMERICFIELD = 17;
6435 const short PATTERNFIELD = 19;
6436 const short RADIOBUTTON = 3;
6437 const short SCROLLBAR = 20;
6438 const short SPINBUTTON = 21;
6439 const short TEXTFIELD = 9;
6440 const short TIMEFIELD = 16;
6442 published service FormComponents {
6443 interface ::com::sun::star::container::XContainer;
6444 interface ::com::sun::star::container::XNameContainer;
6445 interface ::com::sun::star::container::XIndexContainer;
6446 interface ::com::sun::star::container::XEnumerationAccess;
6447 interface ::com::sun::star::script::XEventAttacherManager;
6449 /** @deprecated */ published service FormControllerDispatcher {
6450 [optional] interface ::com::sun::star::frame::XDispatchProvider;
6452 published interface XConfirmDeleteListener;
6453 published interface XConfirmDeleteBroadcaster {
6454 interface ::com::sun::star::uno::XInterface;
6455 void addConfirmDeleteListener([in] ::com::sun::star::form::XConfirmDeleteListener aListener);
6456 void removeConfirmDeleteListener([in] ::com::sun::star::form::XConfirmDeleteListener aListener);
6458 published interface XDatabaseParameterListener;
6459 published interface XDatabaseParameterBroadcaster {
6460 interface ::com::sun::star::uno::XInterface;
6461 void addParameterListener([in] ::com::sun::star::form::XDatabaseParameterListener aListener);
6462 void removeParameterListener([in] ::com::sun::star::form::XDatabaseParameterListener aListener);
6464 published interface XFormControllerListener;
6465 /** @deprecated */ published interface XFormController {
6466 interface ::com::sun::star::awt::XTabController;
6467 ::com::sun::star::awt::XControl getCurrentControl();
6468 void addActivateListener([in] ::com::sun::star::form::XFormControllerListener l);
6469 void removeActivateListener([in] ::com::sun::star::form::XFormControllerListener l);
6472 module sdb {
6473 published interface XRowSetApproveListener;
6474 published interface XRowSetApproveBroadcaster {
6475 interface ::com::sun::star::uno::XInterface;
6476 void addRowSetApproveListener([in] ::com::sun::star::sdb::XRowSetApproveListener listener);
6477 void removeRowSetApproveListener([in] ::com::sun::star::sdb::XRowSetApproveListener listener);
6479 published interface XSQLErrorListener;
6480 published interface XSQLErrorBroadcaster {
6481 interface ::com::sun::star::uno::XInterface;
6482 void addSQLErrorListener([in] ::com::sun::star::sdb::XSQLErrorListener Listener);
6483 void removeSQLErrorListener([in] ::com::sun::star::sdb::XSQLErrorListener Listener);
6486 module form {
6487 /** @deprecated */ published service FormController {
6488 [optional] service ::com::sun::star::form::FormControllerDispatcher;
6489 interface ::com::sun::star::form::XFormController;
6490 interface ::com::sun::star::awt::XTabController;
6491 interface ::com::sun::star::container::XChild;
6492 interface ::com::sun::star::lang::XComponent;
6493 interface ::com::sun::star::container::XEnumerationAccess;
6494 interface ::com::sun::star::util::XModifyBroadcaster;
6495 interface ::com::sun::star::form::XConfirmDeleteBroadcaster;
6496 interface ::com::sun::star::sdb::XSQLErrorBroadcaster;
6497 interface ::com::sun::star::sdb::XRowSetApproveBroadcaster;
6498 interface ::com::sun::star::form::XDatabaseParameterBroadcaster;
6500 published enum FormSubmitEncoding {
6501 URL = 0,
6502 MULTIPART = 1,
6503 TEXT = 2
6505 published enum FormSubmitMethod {
6506 GET = 0,
6507 POST = 1
6509 published interface XForms {
6510 interface ::com::sun::star::container::XContainer;
6511 interface ::com::sun::star::container::XNameContainer;
6512 interface ::com::sun::star::container::XIndexContainer;
6513 interface ::com::sun::star::container::XEnumerationAccess;
6514 interface ::com::sun::star::script::XEventAttacherManager;
6515 interface ::com::sun::star::container::XChild;
6516 interface ::com::sun::star::util::XCloneable;
6517 interface ::com::sun::star::lang::XComponent;
6519 published service Forms: ::com::sun::star::form::XForms;
6520 published enum ListSourceType {
6521 VALUELIST = 0,
6522 TABLE = 1,
6523 QUERY = 2,
6524 SQL = 3,
6525 SQLPASSTHROUGH = 4,
6526 TABLEFIELDS = 5
6528 published enum NavigationBarMode {
6529 NONE = 0,
6530 CURRENT = 1,
6531 PARENT = 2
6533 /** @deprecated */ published service PropertyBrowserController {
6534 interface ::com::sun::star::frame::XController;
6535 interface ::com::sun::star::beans::XPropertySet;
6536 interface ::com::sun::star::beans::XFastPropertySet;
6537 interface ::com::sun::star::beans::XMultiPropertySet;
6538 [property] ::com::sun::star::beans::XPropertySet IntrospectedObject;
6539 [property] string CurrentPage;
6541 published service TabOrderDialog: ::com::sun::star::ui::dialogs::XExecutableDialog {
6542 createWithModel([in] ::com::sun::star::awt::XTabControllerModel TabbingModel, [in] ::com::sun::star::awt::XControlContainer ControlContext, [in] ::com::sun::star::awt::XWindow ParentWindow);
6544 published enum TabulatorCycle {
6545 RECORDS = 0,
6546 CURRENT = 1,
6547 PAGE = 2
6549 published interface XApproveActionListener;
6550 published interface XApproveActionBroadcaster {
6551 interface ::com::sun::star::uno::XInterface;
6552 void addApproveActionListener([in] ::com::sun::star::form::XApproveActionListener aListener);
6553 void removeApproveActionListener([in] ::com::sun::star::form::XApproveActionListener aListener);
6555 published interface XApproveActionListener {
6556 interface ::com::sun::star::lang::XEventListener;
6557 boolean approveAction([in] ::com::sun::star::lang::EventObject aEvent);
6559 published interface XBoundControl {
6560 interface ::com::sun::star::uno::XInterface;
6561 boolean getLock();
6562 void setLock([in] boolean bLock);
6564 published interface XChangeListener;
6565 published interface XChangeBroadcaster {
6566 interface ::com::sun::star::uno::XInterface;
6567 void addChangeListener([in] ::com::sun::star::form::XChangeListener aListener);
6568 void removeChangeListener([in] ::com::sun::star::form::XChangeListener aListener);
6570 published interface XChangeListener {
6571 interface ::com::sun::star::lang::XEventListener;
6572 void changed([in] ::com::sun::star::lang::EventObject rEvent);
6575 module sdb {
6576 published struct RowChangeEvent: ::com::sun::star::lang::EventObject {
6577 long Action;
6578 long Rows;
6581 module form {
6582 published interface XConfirmDeleteListener {
6583 interface ::com::sun::star::lang::XEventListener;
6584 boolean confirmDelete([in] ::com::sun::star::sdb::RowChangeEvent aEvent);
6586 published interface XDatabaseParameterListener {
6587 interface ::com::sun::star::lang::XEventListener;
6588 boolean approveParameter([in] ::com::sun::star::form::DatabaseParameterEvent aEvent);
6590 /** @deprecated */ published interface XDeleteListener {
6591 interface ::com::sun::star::lang::XEventListener;
6592 boolean approveDelete([in] ::com::sun::star::lang::EventObject aEvent);
6593 void deleted([in] ::com::sun::star::lang::EventObject aEvent);
6595 published interface XErrorListener;
6596 /** @deprecated */ published interface XErrorBroadcaster {
6597 interface ::com::sun::star::uno::XInterface;
6598 void addErrorListener([in] ::com::sun::star::form::XErrorListener aListener);
6599 void removeErrorListener([in] ::com::sun::star::form::XErrorListener aListener);
6601 /** @deprecated */ published interface XErrorListener {
6602 interface ::com::sun::star::lang::XEventListener;
6603 void errorOccured([in] ::com::sun::star::form::ErrorEvent aEvent);
6605 published interface XForm {
6606 interface ::com::sun::star::form::XFormComponent;
6608 published interface XFormControllerListener {
6609 interface ::com::sun::star::lang::XEventListener;
6610 void formActivated([in] ::com::sun::star::lang::EventObject rEvent);
6611 void formDeactivated([in] ::com::sun::star::lang::EventObject rEvent);
6613 /** @deprecated */ published interface XGrid {
6614 interface ::com::sun::star::uno::XInterface;
6615 short getCurrentColumnPosition();
6616 void setCurrentColumnPosition([in] short nPos);
6618 published interface XGridColumnFactory {
6619 interface ::com::sun::star::uno::XInterface;
6620 ::com::sun::star::beans::XPropertySet createColumn([in] string aColumnType) raises (::com::sun::star::lang::IllegalArgumentException);
6621 sequence< string > getColumnTypes();
6623 /** @deprecated */ published interface XGridFieldDataSupplier {
6624 interface ::com::sun::star::uno::XInterface;
6625 sequence< boolean > queryFieldDataType([in] type xType);
6626 sequence< any > queryFieldData([in] long nRow, [in] type xType);
6628 interface XGridControlListener;
6629 interface XGridControl {
6630 interface ::com::sun::star::form::XGrid;
6631 interface ::com::sun::star::form::XGridFieldDataSupplier;
6632 void addGridControlListener([in] ::com::sun::star::form::XGridControlListener listener);
6633 void removeGridControlListener([in] ::com::sun::star::form::XGridControlListener listener);
6635 /** @deprecated */ published interface XGridPeer {
6636 interface ::com::sun::star::uno::XInterface;
6637 ::com::sun::star::container::XIndexContainer getColumns();
6638 void setColumns([in] ::com::sun::star::container::XIndexContainer aColumns);
6640 published interface XImageProducerSupplier {
6641 interface ::com::sun::star::uno::XInterface;
6642 ::com::sun::star::awt::XImageProducer getImageProducer();
6644 /** @deprecated */ published interface XInsertListener {
6645 interface ::com::sun::star::lang::XEventListener;
6646 void inserting([in] ::com::sun::star::lang::EventObject aEvent);
6647 void inserted([in] ::com::sun::star::lang::EventObject aEvent);
6649 published interface XLoadable {
6650 interface ::com::sun::star::uno::XInterface;
6651 void load();
6652 void unload();
6653 void reload();
6654 boolean isLoaded();
6655 void addLoadListener([in] ::com::sun::star::form::XLoadListener aListener);
6656 void removeLoadListener([in] ::com::sun::star::form::XLoadListener aListener);
6658 /** @deprecated */ published interface XPositioningListener {
6659 interface ::com::sun::star::lang::XEventListener;
6660 void positioned([in] ::com::sun::star::lang::EventObject aEvent);
6662 published interface XResetListener {
6663 interface ::com::sun::star::lang::XEventListener;
6664 boolean approveReset([in] ::com::sun::star::lang::EventObject rEvent);
6665 void resetted([in] ::com::sun::star::lang::EventObject rEvent);
6667 /** @deprecated */ published interface XRestoreListener {
6668 interface ::com::sun::star::lang::XEventListener;
6669 void restored([in] ::com::sun::star::lang::EventObject aEvent);
6671 published interface XSubmitListener;
6672 published interface XSubmit {
6673 interface ::com::sun::star::uno::XInterface;
6674 void submit([in] ::com::sun::star::awt::XControl aControl, [in] ::com::sun::star::awt::MouseEvent aMouseEvt);
6675 void addSubmitListener([in] ::com::sun::star::form::XSubmitListener aListener);
6676 void removeSubmitListener([in] ::com::sun::star::form::XSubmitListener aListener);
6678 /** @deprecated */ published interface XSubmitListener {
6679 interface ::com::sun::star::lang::XEventListener;
6680 boolean approveSubmit([in] ::com::sun::star::lang::EventObject Event);
6682 published interface XUpdateListener {
6683 interface ::com::sun::star::lang::XEventListener;
6684 boolean approveUpdate([in] ::com::sun::star::lang::EventObject aEvent);
6685 void updated([in] ::com::sun::star::lang::EventObject aEvent);
6687 module component {
6688 published service CheckBox {
6689 service ::com::sun::star::awt::UnoControlCheckBoxModel;
6690 service ::com::sun::star::form::FormControlModel;
6691 interface ::com::sun::star::form::XReset;
6692 [property] short DefaultState;
6693 [property] string RefValue;
6695 published service DatabaseCheckBox {
6696 service ::com::sun::star::form::component::CheckBox;
6697 service ::com::sun::star::form::DataAwareControlModel;
6699 published service ComboBox {
6700 service ::com::sun::star::awt::UnoControlComboBoxModel;
6701 service ::com::sun::star::form::FormControlModel;
6702 interface ::com::sun::star::form::XReset;
6703 [property] string DefaultText;
6705 published service DatabaseComboBox {
6706 service ::com::sun::star::form::component::ComboBox;
6707 service ::com::sun::star::form::DataAwareControlModel;
6708 [property] boolean ConvertEmptyToNull;
6709 [property] string ListSource;
6710 [property] ::com::sun::star::form::ListSourceType ListSourceType;
6712 published service DateField {
6713 service ::com::sun::star::awt::UnoControlDateFieldModel;
6714 service ::com::sun::star::form::FormControlModel;
6715 interface ::com::sun::star::form::XReset;
6716 [property] long DefaultDate;
6718 published service DatabaseDateField {
6719 service ::com::sun::star::form::component::DateField;
6720 service ::com::sun::star::form::DataAwareControlModel;
6722 published service FormattedField {
6723 service ::com::sun::star::awt::UnoControlFormattedFieldModel;
6724 service ::com::sun::star::form::FormControlModel;
6725 interface ::com::sun::star::form::XReset;
6727 published service DatabaseFormattedField {
6728 service ::com::sun::star::form::component::FormattedField;
6729 service ::com::sun::star::form::DataAwareControlModel;
6730 [property] boolean ConvertEmptyToNull;
6732 published service ListBox {
6733 service ::com::sun::star::awt::UnoControlListBoxModel;
6734 service ::com::sun::star::form::FormControlModel;
6735 interface ::com::sun::star::form::XReset;
6736 [property] sequence< short > DefaultSelection;
6737 [property] sequence< string > ListSource;
6739 published service DatabaseListBox {
6740 service ::com::sun::star::form::component::ListBox;
6741 service ::com::sun::star::form::DataAwareControlModel;
6742 [property] short BoundColumn;
6743 [property] ::com::sun::star::form::ListSourceType ListSourceType;
6744 [property, optional, transient] sequence< any > SelectedValues;
6745 [property, optional, transient] any SelectedValue;
6747 published service NumericField {
6748 service ::com::sun::star::awt::UnoControlNumericFieldModel;
6749 service ::com::sun::star::form::FormControlModel;
6750 interface ::com::sun::star::form::XReset;
6751 [property] double DefaultValue;
6753 published service DatabaseNumericField {
6754 service ::com::sun::star::form::component::NumericField;
6755 service ::com::sun::star::form::DataAwareControlModel;
6757 published service RadioButton {
6758 service ::com::sun::star::awt::UnoControlRadioButtonModel;
6759 service ::com::sun::star::form::FormControlModel;
6760 interface ::com::sun::star::form::XReset;
6761 [property] short DefaultState;
6762 [property] string RefValue;
6763 [property, optional] string UncheckedRefValue;
6765 published service DatabaseRadioButton {
6766 service ::com::sun::star::form::component::RadioButton;
6767 service ::com::sun::star::form::DataAwareControlModel;
6771 module text {
6772 published service TextRange {
6773 service ::com::sun::star::style::CharacterProperties;
6774 service ::com::sun::star::style::ParagraphProperties;
6775 [optional] service ::com::sun::star::style::CharacterPropertiesAsian;
6776 [optional] service ::com::sun::star::style::CharacterPropertiesComplex;
6777 [optional] service ::com::sun::star::style::ParagraphPropertiesAsian;
6778 [optional] service ::com::sun::star::style::ParagraphPropertiesComplex;
6779 interface ::com::sun::star::text::XTextRange;
6780 interface ::com::sun::star::beans::XPropertySet;
6781 interface ::com::sun::star::beans::XPropertyState;
6782 [optional] interface ::com::sun::star::container::XContentEnumerationAccess;
6785 module form {
6786 module component {
6787 published service RichTextControl {
6788 service ::com::sun::star::awt::UnoControlEditModel;
6789 service ::com::sun::star::form::FormControlModel;
6790 service ::com::sun::star::text::TextRange;
6791 [property] boolean HardLineBreaks;
6792 [property] boolean RichText;
6794 published service TextField {
6795 service ::com::sun::star::awt::UnoControlEditModel;
6796 service ::com::sun::star::form::FormControlModel;
6797 [optional] service ::com::sun::star::form::component::RichTextControl;
6798 interface ::com::sun::star::form::XReset;
6799 [property] string DefaultText;
6801 published service DatabaseTextField {
6802 service ::com::sun::star::form::component::TextField;
6803 service ::com::sun::star::form::DataAwareControlModel;
6804 [property] boolean ConvertEmptyToNull;
6806 published service TimeField {
6807 service ::com::sun::star::awt::UnoControlTimeFieldModel;
6808 service ::com::sun::star::form::FormControlModel;
6809 interface ::com::sun::star::form::XReset;
6810 [property] long DefaultTime;
6812 published service DatabaseTimeField {
6813 service ::com::sun::star::form::component::TimeField;
6814 service ::com::sun::star::form::DataAwareControlModel;
6816 published service CommandButton {
6817 service ::com::sun::star::awt::UnoControlButtonModel;
6818 service ::com::sun::star::form::FormControlModel;
6819 interface ::com::sun::star::form::XImageProducerSupplier;
6820 [optional] interface ::com::sun::star::form::XReset;
6821 [property] ::com::sun::star::form::FormButtonType ButtonType;
6822 [property] string TargetFrame;
6823 [property] string TargetURL;
6824 [property, optional] boolean DefaultState;
6826 published service CurrencyField {
6827 service ::com::sun::star::awt::UnoControlCurrencyFieldModel;
6828 service ::com::sun::star::form::FormControlModel;
6829 interface ::com::sun::star::form::XReset;
6830 [property] double DefaultValue;
6832 published service Form {
6833 service ::com::sun::star::form::FormComponent;
6834 service ::com::sun::star::form::FormComponents;
6835 interface ::com::sun::star::form::XForm;
6836 interface ::com::sun::star::awt::XTabControllerModel;
6840 module sdbc {
6841 published interface XCloseable {
6842 interface ::com::sun::star::uno::XInterface;
6843 void close() raises (::com::sun::star::sdbc::SQLException);
6845 published interface XColumnLocate {
6846 interface ::com::sun::star::uno::XInterface;
6847 long findColumn([in] string columnName) raises (::com::sun::star::sdbc::SQLException);
6849 published interface XResultSetMetaData;
6850 published interface XResultSetMetaDataSupplier {
6851 interface ::com::sun::star::uno::XInterface;
6852 ::com::sun::star::sdbc::XResultSetMetaData getMetaData() raises (::com::sun::star::sdbc::SQLException);
6854 published interface XResultSetUpdate {
6855 interface ::com::sun::star::uno::XInterface;
6856 void insertRow() raises (::com::sun::star::sdbc::SQLException);
6857 void updateRow() raises (::com::sun::star::sdbc::SQLException);
6858 void deleteRow() raises (::com::sun::star::sdbc::SQLException);
6859 void cancelRowUpdates() raises (::com::sun::star::sdbc::SQLException);
6860 void moveToInsertRow() raises (::com::sun::star::sdbc::SQLException);
6861 void moveToCurrentRow() raises (::com::sun::star::sdbc::SQLException);
6863 published interface XRow {
6864 interface ::com::sun::star::uno::XInterface;
6865 boolean wasNull() raises (::com::sun::star::sdbc::SQLException);
6866 string getString([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6867 boolean getBoolean([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6868 byte getByte([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6869 short getShort([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6870 long getInt([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6871 hyper getLong([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6872 float getFloat([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6873 double getDouble([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6874 sequence< byte > getBytes([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6875 ::com::sun::star::util::Date getDate([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6876 ::com::sun::star::util::Time getTime([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6877 ::com::sun::star::util::DateTime getTimestamp([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6878 ::com::sun::star::io::XInputStream getBinaryStream([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6879 ::com::sun::star::io::XInputStream getCharacterStream([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6880 any getObject([in] long columnIndex, [in] ::com::sun::star::container::XNameAccess typeMap) raises (::com::sun::star::sdbc::SQLException);
6881 ::com::sun::star::sdbc::XRef getRef([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6882 ::com::sun::star::sdbc::XBlob getBlob([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6883 ::com::sun::star::sdbc::XClob getClob([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6884 ::com::sun::star::sdbc::XArray getArray([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6886 published interface XRowUpdate {
6887 interface ::com::sun::star::uno::XInterface;
6888 void updateNull([in] long columnIndex) raises (::com::sun::star::sdbc::SQLException);
6889 void updateBoolean([in] long columnIndex, [in] boolean x) raises (::com::sun::star::sdbc::SQLException);
6890 void updateByte([in] long columnIndex, [in] byte x) raises (::com::sun::star::sdbc::SQLException);
6891 void updateShort([in] long columnIndex, [in] short x) raises (::com::sun::star::sdbc::SQLException);
6892 void updateInt([in] long columnIndex, [in] long x) raises (::com::sun::star::sdbc::SQLException);
6893 void updateLong([in] long columnIndex, [in] hyper x) raises (::com::sun::star::sdbc::SQLException);
6894 void updateFloat([in] long columnIndex, [in] float x) raises (::com::sun::star::sdbc::SQLException);
6895 void updateDouble([in] long columnIndex, [in] double x) raises (::com::sun::star::sdbc::SQLException);
6896 void updateString([in] long columnIndex, [in] string x) raises (::com::sun::star::sdbc::SQLException);
6897 void updateBytes([in] long columnIndex, [in] sequence< byte > x) raises (::com::sun::star::sdbc::SQLException);
6898 void updateDate([in] long columnIndex, [in] ::com::sun::star::util::Date x) raises (::com::sun::star::sdbc::SQLException);
6899 void updateTime([in] long columnIndex, [in] ::com::sun::star::util::Time x) raises (::com::sun::star::sdbc::SQLException);
6900 void updateTimestamp([in] long columnIndex, [in] ::com::sun::star::util::DateTime x) raises (::com::sun::star::sdbc::SQLException);
6901 void updateBinaryStream([in] long columnIndex, [in] ::com::sun::star::io::XInputStream x, [in] long length) raises (::com::sun::star::sdbc::SQLException);
6902 void updateCharacterStream([in] long columnIndex, [in] ::com::sun::star::io::XInputStream x, [in] long length) raises (::com::sun::star::sdbc::SQLException);
6903 void updateObject([in] long columnIndex, [in] any x) raises (::com::sun::star::sdbc::SQLException);
6904 void updateNumericObject([in] long columnIndex, [in] any x, [in] long scale) raises (::com::sun::star::sdbc::SQLException);
6906 published interface XWarningsSupplier {
6907 interface ::com::sun::star::uno::XInterface;
6908 any getWarnings() raises (::com::sun::star::sdbc::SQLException);
6909 void clearWarnings() raises (::com::sun::star::sdbc::SQLException);
6911 published service ResultSet {
6912 interface ::com::sun::star::beans::XPropertySet;
6913 interface ::com::sun::star::sdbc::XResultSetMetaDataSupplier;
6914 interface ::com::sun::star::sdbc::XResultSet;
6915 interface ::com::sun::star::sdbc::XRow;
6916 interface ::com::sun::star::sdbc::XColumnLocate;
6917 [optional] interface ::com::sun::star::lang::XComponent;
6918 [optional] interface ::com::sun::star::sdbc::XCloseable;
6919 [optional] interface ::com::sun::star::sdbc::XWarningsSupplier;
6920 [optional] interface ::com::sun::star::sdbc::XResultSetUpdate;
6921 [optional] interface ::com::sun::star::sdbc::XRowUpdate;
6922 [property, optional, readonly] string CursorName;
6923 [property, readonly] long ResultSetConcurrency;
6924 [property, readonly] long ResultSetType;
6925 [property] long FetchDirection;
6926 [property] long FetchSize;
6929 module sdbcx {
6930 published interface XDeleteRows {
6931 interface ::com::sun::star::uno::XInterface;
6932 sequence< long > deleteRows([in] sequence< any > rows) raises (::com::sun::star::sdbc::SQLException);
6934 published interface XRowLocate {
6935 interface ::com::sun::star::uno::XInterface;
6936 any getBookmark() raises (::com::sun::star::sdbc::SQLException);
6937 boolean moveToBookmark([in] any bookmark) raises (::com::sun::star::sdbc::SQLException);
6938 boolean moveRelativeToBookmark([in] any bookmark, [in] long rows) raises (::com::sun::star::sdbc::SQLException);
6939 long compareBookmarks([in] any first, [in] any second) raises (::com::sun::star::sdbc::SQLException);
6940 boolean hasOrderedBookmarks() raises (::com::sun::star::sdbc::SQLException);
6941 long hashBookmark([in] any bookmark) raises (::com::sun::star::sdbc::SQLException);
6944 module util {
6945 published interface XCancellable {
6946 interface ::com::sun::star::uno::XInterface;
6947 void cancel();
6950 module sdbcx {
6951 published service ResultSet {
6952 service ::com::sun::star::sdbc::ResultSet;
6953 interface ::com::sun::star::sdbcx::XRowLocate;
6954 [optional] interface ::com::sun::star::util::XCancellable;
6955 [optional] interface ::com::sun::star::sdbcx::XDeleteRows;
6956 [property, readonly] boolean IsBookmarkable;
6957 [property, optional, readonly] boolean CanUpdateInsertedRows;
6959 published interface XColumnsSupplier {
6960 interface ::com::sun::star::uno::XInterface;
6961 ::com::sun::star::container::XNameAccess getColumns();
6964 module sdb {
6965 published service ResultSet {
6966 service ::com::sun::star::sdbcx::ResultSet;
6967 interface ::com::sun::star::sdbcx::XColumnsSupplier;
6969 published interface XCompletedExecution {
6970 interface ::com::sun::star::uno::XInterface;
6971 void executeWithCompletion([in] ::com::sun::star::task::XInteractionHandler handler) raises (::com::sun::star::sdbc::SQLException);
6973 published interface XParametersSupplier {
6974 interface ::com::sun::star::uno::XInterface;
6975 ::com::sun::star::container::XIndexAccess getParameters();
6977 published interface XResultSetAccess {
6978 interface ::com::sun::star::uno::XInterface;
6979 ::com::sun::star::sdbc::XResultSet createResultSet() raises (::com::sun::star::sdbc::SQLException);
6982 module sdbc {
6983 published service RowSet {
6984 service ::com::sun::star::sdbc::ResultSet;
6985 interface ::com::sun::star::sdbc::XRowSet;
6986 interface ::com::sun::star::sdbc::XParameters;
6987 interface ::com::sun::star::sdbc::XColumnLocate;
6988 [property] string DataSourceName;
6989 [property] string URL;
6990 [property] string Command;
6991 [property] long TransactionIsolation;
6992 [property] ::com::sun::star::container::XNameAccess TypeMap;
6993 [property] boolean EscapeProcessing;
6994 [property] long QueryTimeOut;
6995 [property] long MaxFieldSize;
6996 [property] long MaxRows;
6997 [property] string User;
6998 [property] string Password;
6999 [property] long ResultSetType;
7001 published interface XConnection;
7003 module sdb {
7004 published service RowSet {
7005 service ::com::sun::star::sdbc::RowSet;
7006 service ::com::sun::star::sdb::ResultSet;
7007 interface ::com::sun::star::sdb::XCompletedExecution;
7008 interface ::com::sun::star::sdb::XRowSetApproveBroadcaster;
7009 interface ::com::sun::star::sdb::XResultSetAccess;
7010 [optional] interface ::com::sun::star::sdbc::XResultSetUpdate;
7011 [optional] interface ::com::sun::star::sdbcx::XDeleteRows;
7012 [optional] interface ::com::sun::star::sdb::XParametersSupplier;
7013 [property] ::com::sun::star::sdbc::XConnection ActiveConnection;
7014 [property] string DataSourceName;
7015 [property] string Command;
7016 [property] long CommandType;
7017 [property, readonly] string ActiveCommand;
7018 [property] boolean IgnoreResult;
7019 [property] string Filter;
7020 [property] boolean ApplyFilter;
7021 [property, optional] string HavingClause;
7022 [property, optional] string GroupBy;
7023 [property] string Order;
7024 [property, readonly] long Privileges;
7025 [property, readonly] boolean IsModified;
7026 [property, readonly] boolean IsNew;
7027 [property, readonly] long RowCount;
7028 [property, readonly] boolean IsRowCountFinal;
7029 [property, optional] string UpdateTableName;
7030 [property, optional] string UpdateCatalogName;
7031 [property, optional] string UpdateSchemaName;
7034 module form {
7035 module component {
7036 published service DataForm {
7037 service ::com::sun::star::sdb::RowSet;
7038 service ::com::sun::star::form::component::Form;
7039 interface ::com::sun::star::form::XReset;
7040 interface ::com::sun::star::form::XLoadable;
7041 interface ::com::sun::star::sdb::XCompletedExecution;
7042 interface ::com::sun::star::form::XDatabaseParameterBroadcaster;
7043 [property] sequence< string > MasterFields;
7044 [property] sequence< string > DetailFields;
7045 [property] ::com::sun::star::form::TabulatorCycle Cycle;
7046 [property] ::com::sun::star::form::NavigationBarMode NavigationBarMode;
7047 [property] boolean AllowInserts;
7048 [property] boolean AllowUpdates;
7049 [property] boolean AllowDeletes;
7051 published service DatabaseCurrencyField {
7052 service ::com::sun::star::form::component::CurrencyField;
7053 service ::com::sun::star::form::DataAwareControlModel;
7055 published service DatabaseImageControl {
7056 service ::com::sun::star::awt::UnoControlImageControlModel;
7057 service ::com::sun::star::form::DataAwareControlModel;
7058 interface ::com::sun::star::form::XImageProducerSupplier;
7059 [property] boolean ReadOnly;
7061 published service PatternField {
7062 service ::com::sun::star::awt::UnoControlPatternFieldModel;
7063 service ::com::sun::star::form::FormControlModel;
7064 interface ::com::sun::star::form::XReset;
7065 [property] string DefaultText;
7067 published service DatabasePatternField {
7068 service ::com::sun::star::form::component::PatternField;
7069 service ::com::sun::star::form::DataAwareControlModel;
7070 [property] boolean ConvertEmptyToNull;
7072 published service FileControl {
7073 service ::com::sun::star::awt::UnoControlFileControlModel;
7074 service ::com::sun::star::form::FormControlModel;
7075 interface ::com::sun::star::form::XReset;
7076 [property] string DefaultText;
7078 published service FixedText {
7079 service ::com::sun::star::awt::UnoControlFixedTextModel;
7080 service ::com::sun::star::form::FormControlModel;
7082 published service GridControl {
7083 service ::com::sun::star::form::FormControlModel;
7084 service ::com::sun::star::form::FormComponents;
7085 interface ::com::sun::star::form::XGridColumnFactory;
7086 /** @deprecated */ interface ::com::sun::star::view::XSelectionSupplier;
7087 interface ::com::sun::star::form::XReset;
7088 [property] short Border;
7089 [property, optional] long BorderColor;
7090 [property] boolean Enabled;
7091 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
7092 [property] long RowHeight;
7093 [property] boolean Tabstop;
7094 [property] ::com::sun::star::util::Color TextColor;
7096 published service GroupBox {
7097 service ::com::sun::star::awt::UnoControlGroupBoxModel;
7098 service ::com::sun::star::form::FormControlModel;
7100 published service HTMLForm {
7101 service ::com::sun::star::form::component::Form;
7102 interface ::com::sun::star::form::XReset;
7103 interface ::com::sun::star::form::XSubmit;
7104 [property] string TargetFrame;
7105 [property] string TargetURL;
7106 [property] ::com::sun::star::form::FormSubmitMethod SubmitMethod;
7107 [property] ::com::sun::star::form::FormSubmitEncoding SubmitEncoding;
7109 published service HiddenControl {
7110 service ::com::sun::star::form::FormComponent;
7111 [property] string HiddenValue;
7113 published service ImageButton {
7114 service ::com::sun::star::awt::UnoControlImageControlModel;
7115 service ::com::sun::star::form::FormControlModel;
7116 interface ::com::sun::star::form::XImageProducerSupplier;
7117 [property] ::com::sun::star::form::FormButtonType ButtonType;
7118 [property] string TargetFrame;
7119 [property] string TargetURL;
7122 module control {
7123 published service CheckBox {
7124 service ::com::sun::star::awt::UnoControlCheckBox;
7125 interface ::com::sun::star::form::XBoundControl;
7127 published service ComboBox {
7128 service ::com::sun::star::awt::UnoControlComboBox;
7129 interface ::com::sun::star::form::XBoundControl;
7131 published service CommandButton {
7132 service ::com::sun::star::awt::UnoControlButton;
7133 interface ::com::sun::star::form::XApproveActionBroadcaster;
7135 published service CurrencyField {
7136 service ::com::sun::star::awt::UnoControlCurrencyField;
7137 interface ::com::sun::star::form::XBoundControl;
7139 published service DateField {
7140 service ::com::sun::star::awt::UnoControlDateField;
7141 interface ::com::sun::star::form::XBoundControl;
7143 published service FormattedField {
7144 service ::com::sun::star::awt::UnoControlFormattedField;
7145 interface ::com::sun::star::form::XBoundControl;
7149 module frame {
7150 published interface XDispatchProviderInterception {
7151 interface ::com::sun::star::uno::XInterface;
7152 void registerDispatchProviderInterceptor([in] ::com::sun::star::frame::XDispatchProviderInterceptor Interceptor);
7153 void releaseDispatchProviderInterceptor([in] ::com::sun::star::frame::XDispatchProviderInterceptor Interceptor);
7156 module util {
7157 published interface XModeSelector {
7158 interface ::com::sun::star::uno::XInterface;
7159 void setMode([in] string aMode) raises (::com::sun::star::lang::NoSupportException);
7160 string getMode();
7161 sequence< string > getSupportedModes();
7162 boolean supportsMode([in] string aMode);
7165 module form {
7166 module control {
7167 published service GridControl {
7168 service ::com::sun::star::awt::UnoControl;
7169 interface ::com::sun::star::form::XBoundComponent;
7170 interface ::com::sun::star::form::XGrid;
7171 interface ::com::sun::star::util::XModifyBroadcaster;
7172 interface ::com::sun::star::container::XIndexAccess;
7173 interface ::com::sun::star::container::XEnumerationAccess;
7174 [optional] interface ::com::sun::star::form::XGridControl;
7175 [optional] interface ::com::sun::star::form::XGridFieldDataSupplier;
7176 [optional] interface ::com::sun::star::util::XModeSelector;
7177 [optional] interface ::com::sun::star::view::XSelectionSupplier;
7178 [optional] interface ::com::sun::star::frame::XDispatchProviderInterception;
7180 published service GroupBox {
7181 service ::com::sun::star::awt::UnoControlGroupBox;
7183 published service ImageButton {
7184 service ::com::sun::star::awt::UnoControlImageControl;
7185 interface ::com::sun::star::form::XApproveActionBroadcaster;
7187 published service ImageControl {
7188 service ::com::sun::star::awt::UnoControlImageControl;
7189 interface ::com::sun::star::form::XBoundControl;
7191 published service InteractionGridControl {
7192 service ::com::sun::star::form::control::GridControl;
7193 interface ::com::sun::star::frame::XDispatch;
7195 published service ListBox {
7196 service ::com::sun::star::awt::UnoControlListBox;
7197 interface ::com::sun::star::form::XBoundControl;
7198 interface ::com::sun::star::form::XChangeBroadcaster;
7200 published service NumericField {
7201 service ::com::sun::star::awt::UnoControlNumericField;
7202 interface ::com::sun::star::form::XBoundControl;
7204 published service PatternField {
7205 service ::com::sun::star::awt::UnoControlPatternField;
7206 interface ::com::sun::star::form::XBoundControl;
7208 published service RadioButton {
7209 service ::com::sun::star::awt::UnoControlRadioButton;
7210 interface ::com::sun::star::form::XBoundControl;
7212 published service TextField {
7213 service ::com::sun::star::awt::UnoControlEdit;
7214 interface ::com::sun::star::form::XBoundControl;
7215 interface ::com::sun::star::form::XChangeBroadcaster;
7217 published service TimeField {
7218 service ::com::sun::star::awt::UnoControlTimeField;
7219 interface ::com::sun::star::form::XBoundControl;
7223 module formula {
7224 published service FormulaProperties {
7225 [property] short Alignment;
7226 [property] short BaseFontHeight;
7227 [property] string CustomFontNameFixed;
7228 [property] boolean FontFixedIsItalic;
7229 [property] boolean FontFixedIsBold;
7230 [property] string CustomFontNameSans;
7231 [property] boolean FontSansIsItalic;
7232 [property] boolean FontSansIsBold;
7233 [property] string CustomFontNameSerif;
7234 [property] boolean FontSerifIsItalic;
7235 [property] boolean FontSerifIsBold;
7236 [property] string FontNameFunctions;
7237 [property] boolean FontFunctionsIsItalic;
7238 [property] boolean FontFunctionsIsBold;
7239 [property] string FontNameNumbers;
7240 [property] boolean FontNumbersIsItalic;
7241 [property] boolean FontNumbersIsBold;
7242 [property] string FontNameText;
7243 [property] boolean FontTextIsItalic;
7244 [property] boolean FontTextIsBold;
7245 [property] string FontNameVariables;
7246 [property] boolean FontVariablesIsItalic;
7247 [property] boolean FontVariablesIsBold;
7248 [property] string Formula;
7249 [property] boolean IsScaleAllBrackets;
7250 [property] boolean IsTextMode;
7251 [property] short RelativeFontHeightFunctions;
7252 [property] short RelativeFontHeightIndices;
7253 [property] short RelativeFontHeightLimits;
7254 [property] short RelativeFontHeightOperators;
7255 [property] short RelativeFontHeightText;
7256 [property] short RelativeBracketDistance;
7257 [property] short RelativeBracketExcessSize;
7258 [property] short RelativeFractionBarExcessLength;
7259 [property] short RelativeFractionBarLineWeight;
7260 [property] short RelativeFractionDenominatorDepth;
7261 [property] short RelativeFractionNumeratorHeight;
7262 [property] short RelativeIndexSubscript;
7263 [property] short RelativeIndexSuperscript;
7264 [property] short RelativeLineSpacing;
7265 [property] short RelativeLowerLimitDistance;
7266 [property] short RelativeMatrixColumnSpacing;
7267 [property] short RelativeMatrixLineSpacing;
7268 [property] short RelativeOperatorExcessSize;
7269 [property] short RelativeOperatorSpacing;
7270 [property] short RelativeRootSpacing;
7271 [property] short RelativeScaleBracketExcessSize;
7272 [property] short RelativeSpacing;
7273 [property] short RelativeSymbolMinimumHeight;
7274 [property] short RelativeSymbolPrimaryHeight;
7275 [property] short RelativeUpperLimitDistance;
7276 [property] short TopMargin;
7277 [property] short BottomMargin;
7278 [property] short LeftMargin;
7279 [property] short RightMargin;
7280 [property, optional] short BaseLine;
7282 /** @deprecated */ published struct SymbolDescriptor {
7283 string sName;
7284 string sExportName;
7285 string sSymbolSet;
7286 long nCharacter;
7287 string sFontName;
7288 short nCharSet;
7289 short nFamily;
7290 short nPitch;
7291 short nWeight;
7292 short nItalic;
7295 module frame {
7296 published struct DispatchInformation {
7297 string Command;
7298 short GroupId;
7300 published interface XDispatchInformationProvider {
7301 interface ::com::sun::star::uno::XInterface;
7302 sequence< short > getSupportedCommandGroups();
7303 sequence< ::com::sun::star::frame::DispatchInformation > getConfigurableDispatchInformation([in] short CommandGroup);
7305 published service Bibliography: ::com::sun::star::container::XNameAccess;
7306 published constants CommandGroup {
7307 const short APPLICATION = 1;
7308 const short CHART = 20;
7309 const short CONNECTOR = 22;
7310 const short CONTROLS = 25;
7311 const short DATA = 17;
7312 const short DOCUMENT = 3;
7313 const short DRAWING = 24;
7314 const short EDIT = 4;
7315 const short ENUMERATION = 16;
7316 const short EXPLORER = 21;
7317 const short FORMAT = 10;
7318 const short FRAME = 13;
7319 const short GRAPHIC = 14;
7320 const short IMAGE = 19;
7321 const short INSERT = 9;
7322 const short INTERNAL = 0;
7323 const short MACRO = 5;
7324 const short MATH = 7;
7325 const short MODIFY = 23;
7326 const short NAVIGATOR = 8;
7327 const short OPTIONS = 6;
7328 const short SPECIAL = 18;
7329 const short TABLE = 15;
7330 const short TEMPLATE = 11;
7331 const short TEXT = 12;
7332 const short VIEW = 2;
7334 published service Components {
7335 interface ::com::sun::star::container::XEnumerationAccess;
7337 published interface XDispatchResultListener;
7338 published interface XNotifyingDispatch {
7339 interface ::com::sun::star::frame::XDispatch;
7340 void dispatchWithNotification([in] ::com::sun::star::util::URL URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments, [in] ::com::sun::star::frame::XDispatchResultListener Listener);
7342 published service ContentHandler {
7343 interface ::com::sun::star::frame::XNotifyingDispatch;
7345 published interface XLoaderFactory {
7346 interface ::com::sun::star::lang::XMultiServiceFactory;
7347 interface ::com::sun::star::container::XNameAccess;
7348 interface ::com::sun::star::container::XContainerQuery;
7350 published service ContentHandlerFactory: ::com::sun::star::frame::XLoaderFactory;
7351 published interface XComponentLoader {
7352 interface ::com::sun::star::uno::XInterface;
7353 ::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);
7355 published interface XTerminateListener;
7356 published interface XDesktop {
7357 interface ::com::sun::star::uno::XInterface;
7358 boolean terminate();
7359 void addTerminateListener([in] ::com::sun::star::frame::XTerminateListener Listener);
7360 void removeTerminateListener([in] ::com::sun::star::frame::XTerminateListener Listener);
7361 ::com::sun::star::container::XEnumerationAccess getComponents();
7362 ::com::sun::star::lang::XComponent getCurrentComponent();
7363 ::com::sun::star::frame::XFrame getCurrentFrame();
7365 published interface XFrameActionListener;
7366 published interface XFramesSupplier;
7367 published interface XFrame {
7368 interface ::com::sun::star::lang::XComponent;
7369 void initialize([in] ::com::sun::star::awt::XWindow xWindow);
7370 ::com::sun::star::awt::XWindow getContainerWindow();
7371 void setCreator([in] ::com::sun::star::frame::XFramesSupplier Creator);
7372 ::com::sun::star::frame::XFramesSupplier getCreator();
7373 string getName();
7374 void setName([in] string aName);
7375 ::com::sun::star::frame::XFrame findFrame([in] string aTargetFrameName, [in] long nSearchFlags);
7376 boolean isTop();
7377 void activate();
7378 void deactivate();
7379 boolean isActive();
7380 boolean setComponent([in] ::com::sun::star::awt::XWindow xComponentWindow, [in] ::com::sun::star::frame::XController xController);
7381 ::com::sun::star::awt::XWindow getComponentWindow();
7382 ::com::sun::star::frame::XController getController();
7383 void contextChanged();
7384 void addFrameActionListener([in] ::com::sun::star::frame::XFrameActionListener xListener);
7385 void removeFrameActionListener([in] ::com::sun::star::frame::XFrameActionListener xListener);
7387 published interface XFrames;
7388 published interface XFramesSupplier {
7389 interface ::com::sun::star::frame::XFrame;
7390 ::com::sun::star::frame::XFrames getFrames();
7391 ::com::sun::star::frame::XFrame getActiveFrame();
7392 void setActiveFrame([in] ::com::sun::star::frame::XFrame Frame);
7394 published interface XDesktop2 {
7395 interface ::com::sun::star::frame::XDispatchProvider;
7396 interface ::com::sun::star::frame::XDispatchProviderInterception;
7397 interface ::com::sun::star::frame::XFramesSupplier;
7398 interface ::com::sun::star::frame::XDesktop;
7399 interface ::com::sun::star::frame::XComponentLoader;
7401 /** @deprecated */ published service Desktop: ::com::sun::star::frame::XDesktop2;
7402 /** @deprecated */ published interface XDesktopTask {
7403 interface ::com::sun::star::lang::XComponent;
7404 /** @deprecated */ void initialize([in] ::com::sun::star::awt::XWindow TaskWindow);
7405 /** @deprecated */ boolean close();
7407 /** @deprecated */ published interface XWindowArranger {
7408 interface ::com::sun::star::uno::XInterface;
7409 /** @deprecated */ boolean hasArrangeCommand([in] short nCommand);
7410 /** @deprecated */ void arrange([in] short nCommand);
7412 /** @deprecated */ published service DesktopTask {
7413 interface ::com::sun::star::frame::XDesktopTask;
7414 interface ::com::sun::star::frame::XFrame;
7415 interface ::com::sun::star::beans::XPropertySet;
7416 interface ::com::sun::star::frame::XWindowArranger;
7417 interface ::com::sun::star::frame::XFramesSupplier;
7418 [property, readonly] string Title;
7419 [property, readonly] boolean IsDesktop;
7420 [property] boolean IsVisible;
7421 [property] boolean IsFloating;
7422 [property] boolean IsAlwaysVisible;
7423 [property] ::com::sun::star::awt::Point Position;
7424 [property] ::com::sun::star::awt::Size Size;
7426 /** @deprecated */ published service DesktopTasks {
7427 interface ::com::sun::star::container::XEnumerationAccess;
7429 published interface XDispatchHelper {
7430 interface ::com::sun::star::uno::XInterface;
7431 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);
7433 published service DispatchHelper: ::com::sun::star::frame::XDispatchHelper;
7434 published service DispatchProvider {
7435 interface ::com::sun::star::frame::XDispatchProvider;
7436 [optional] interface ::com::sun::star::frame::XDispatchProviderInterception;
7438 published interface XDispatchRecorder {
7439 interface ::com::sun::star::uno::XInterface;
7440 void startRecording([in] ::com::sun::star::frame::XFrame Frame);
7441 void endRecording();
7442 void recordDispatch([in] ::com::sun::star::util::URL URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments);
7443 void recordDispatchAsComment([in] ::com::sun::star::util::URL URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments);
7444 string getRecordedMacro();
7446 published service DispatchRecorder: ::com::sun::star::frame::XDispatchRecorder;
7447 published interface XDispatchRecorderSupplier {
7448 interface ::com::sun::star::uno::XInterface;
7449 void setDispatchRecorder([in] ::com::sun::star::frame::XDispatchRecorder Recorder);
7450 ::com::sun::star::frame::XDispatchRecorder getDispatchRecorder();
7451 void dispatchAndRecord([in] ::com::sun::star::util::URL URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments, [in] ::com::sun::star::frame::XDispatch Dispatcher);
7453 published service DispatchRecorderSupplier: ::com::sun::star::frame::XDispatchRecorderSupplier;
7454 published struct DispatchResultEvent: ::com::sun::star::lang::EventObject {
7455 short State;
7456 any Result;
7458 published constants DispatchResultState {
7459 const short DONTKNOW = 2;
7460 const short FAILURE = 0;
7461 const short SUCCESS = 1;
7463 published struct DispatchStatement {
7464 string aCommand;
7465 string aTarget;
7466 sequence< ::com::sun::star::beans::PropertyValue > aArgs;
7467 long nFlags;
7468 boolean bIsComment;
7471 module ucb {
7472 published interface XContent;
7474 module frame {
7475 published interface XDocumentTemplates {
7476 interface ::com::sun::star::uno::XInterface;
7477 ::com::sun::star::ucb::XContent getContent();
7478 boolean storeTemplate([in] string GroupName, [in] string TemplateName, [in] ::com::sun::star::frame::XStorable Storable);
7479 boolean addTemplate([in] string GroupName, [in] string TemplateName, [in] string SourceURL);
7480 boolean removeTemplate([in] string GroupName, [in] string TemplateName);
7481 boolean renameTemplate([in] string GroupName, [in] string OldTemplateName, [in] string NewTemplateName);
7482 boolean addGroup([in] string GroupName);
7483 boolean removeGroup([in] string GroupName);
7484 boolean renameGroup([in] string OldGroupName, [in] string NewGroupName);
7485 void update();
7487 published service DocumentTemplates: ::com::sun::star::frame::XDocumentTemplates;
7488 published struct FeatureStateEvent: ::com::sun::star::lang::EventObject {
7489 ::com::sun::star::util::URL FeatureURL;
7490 string FeatureDescriptor;
7491 boolean IsEnabled;
7492 boolean Requery;
7493 any State;
7496 module task {
7497 published interface XStatusIndicator;
7498 published interface XStatusIndicatorFactory {
7499 interface ::com::sun::star::uno::XInterface;
7500 ::com::sun::star::task::XStatusIndicator createStatusIndicator();
7503 module frame {
7504 published interface XFrame2 {
7505 interface ::com::sun::star::frame::XDispatchProvider;
7506 interface ::com::sun::star::frame::XDispatchInformationProvider;
7507 interface ::com::sun::star::frame::XDispatchProviderInterception;
7508 interface ::com::sun::star::frame::XFramesSupplier;
7509 interface ::com::sun::star::task::XStatusIndicatorFactory;
7510 [attribute, readonly] ::com::sun::star::container::XNameContainer UserDefinedAttributes;
7511 [attribute] string Title;
7512 [attribute] ::com::sun::star::frame::XDispatchRecorderSupplier DispatchRecorderSupplier;
7513 [attribute] ::com::sun::star::uno::XInterface LayoutManager;
7515 published service Frame: ::com::sun::star::frame::XFrame2;
7516 published enum FrameAction {
7517 COMPONENT_ATTACHED = 0,
7518 COMPONENT_DETACHING = 1,
7519 COMPONENT_REATTACHED = 2,
7520 FRAME_ACTIVATED = 3,
7521 FRAME_DEACTIVATING = 4,
7522 CONTEXT_CHANGED = 5,
7523 FRAME_UI_ACTIVATED = 6,
7524 FRAME_UI_DEACTIVATING = 7
7526 published struct FrameActionEvent: ::com::sun::star::lang::EventObject {
7527 ::com::sun::star::frame::XFrame Frame;
7528 ::com::sun::star::frame::FrameAction Action;
7530 published service FrameControl {
7531 service ::com::sun::star::awt::UnoControl;
7532 [property] string ComponentUrl;
7533 [property, readonly] string Frame;
7535 published interface XLoadEventListener;
7536 published interface XFrameLoader {
7537 interface ::com::sun::star::uno::XInterface;
7538 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);
7539 void cancel();
7541 published service FrameLoader {
7542 interface ::com::sun::star::frame::XFrameLoader;
7543 [optional] interface ::com::sun::star::lang::XInitialization;
7544 [optional] interface ::com::sun::star::container::XNamed;
7546 published service FrameLoaderFactory: ::com::sun::star::frame::XLoaderFactory;
7547 published constants FrameSearchFlag {
7548 const long ALL = 23;
7549 /** @deprecated */ const long AUTO = 0;
7550 const long CHILDREN = 4;
7551 const long CREATE = 8;
7552 const long GLOBAL = 55;
7553 const long PARENT = 1;
7554 const long SELF = 2;
7555 const long SIBLINGS = 16;
7556 const long TASKS = 32;
7558 published interface XFrames {
7559 interface ::com::sun::star::container::XIndexAccess;
7560 void append([in] ::com::sun::star::frame::XFrame xFrame);
7561 sequence< ::com::sun::star::frame::XFrame > queryFrames([in] long nSearchFlags);
7562 void remove([in] ::com::sun::star::frame::XFrame xFrame);
7564 published service FramesContainer {
7565 interface ::com::sun::star::frame::XFrames;
7567 published exception IllegalArgumentIOException: ::com::sun::star::io::IOException {
7569 published interface XFrameActionListener {
7570 interface ::com::sun::star::lang::XEventListener;
7571 void frameAction([in] ::com::sun::star::frame::FrameActionEvent Action);
7574 module ui {
7575 published struct ConfigurationEvent: ::com::sun::star::container::ContainerEvent {
7576 string ResourceURL;
7577 any aInfo;
7579 published interface XUIConfigurationListener {
7580 interface ::com::sun::star::lang::XEventListener;
7581 void elementInserted([in] ::com::sun::star::ui::ConfigurationEvent Event);
7582 void elementRemoved([in] ::com::sun::star::ui::ConfigurationEvent Event);
7583 void elementReplaced([in] ::com::sun::star::ui::ConfigurationEvent Event);
7586 module util {
7587 published interface XStringMapping {
7588 interface ::com::sun::star::uno::XInterface;
7589 boolean mapStrings([inout] sequence< string > Parameter);
7592 module frame {
7593 published service MediaTypeDetectionHelper: ::com::sun::star::util::XStringMapping;
7594 published interface XSynchronousFrameLoader {
7595 interface ::com::sun::star::uno::XInterface;
7596 boolean load([in] sequence< ::com::sun::star::beans::PropertyValue > Descriptor, [in] ::com::sun::star::frame::XFrame Frame);
7597 void cancel();
7599 published interface XStatusListener {
7600 interface ::com::sun::star::lang::XEventListener;
7601 void statusChanged([in] ::com::sun::star::frame::FeatureStateEvent State);
7603 published interface XUIControllerRegistration {
7604 interface ::com::sun::star::uno::XInterface;
7605 boolean hasController([in] string aCommandURL, [in] string aModelName);
7606 void registerController([in] string aCommandURL, [in] string aModelName, [in] string aControllerImplementationName);
7607 void deregisterController([in] string aCommandURL, [in] string aModelName);
7609 published service ProtocolHandler {
7610 interface ::com::sun::star::frame::XDispatchProvider;
7611 [optional] interface ::com::sun::star::lang::XInitialization;
7613 /** @deprecated */ published service Settings {
7614 interface ::com::sun::star::container::XNameAccess;
7617 module util {
7618 published interface XUpdatable {
7619 interface ::com::sun::star::uno::XInterface;
7620 void update();
7623 module frame {
7624 published service SynchronousFrameLoader {
7625 interface ::com::sun::star::frame::XSynchronousFrameLoader;
7626 [optional] interface ::com::sun::star::lang::XInitialization;
7627 [optional] interface ::com::sun::star::container::XNamed;
7629 /** @deprecated */ published interface XTask {
7630 interface ::com::sun::star::frame::XFrame;
7631 /** @deprecated */ boolean close();
7632 /** @deprecated */ void tileWindows();
7633 /** @deprecated */ void arrangeWindowsVertical();
7634 /** @deprecated */ void arrangeWindowsHorizontal();
7636 /** @deprecated */ published service Task {
7637 /** @deprecated */ interface ::com::sun::star::frame::XFrame;
7638 /** @deprecated */ interface ::com::sun::star::frame::XTask;
7640 published service TemplateAccess {
7641 interface ::com::sun::star::frame::XDocumentTemplates;
7642 interface ::com::sun::star::lang::XLocalizable;
7644 published exception TerminationVetoException: ::com::sun::star::uno::Exception {
7646 published constants WindowArrange {
7647 const short CASCADE = 4;
7648 const short HORIZONTAL = 3;
7649 const short MAXIMIZE = 5;
7650 const short MINIMIZE = 6;
7651 const short TILE = 1;
7652 const short VERTICAL = 2;
7654 /** @deprecated */ published interface XBrowseHistoryRegistry {
7655 interface ::com::sun::star::uno::XInterface;
7656 /** @deprecated */ void updateViewData([in] any Value);
7657 /** @deprecated */ void createNewEntry([in] string URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments, [in] string Title);
7659 /** @deprecated */ published interface XComponentRegistry {
7660 interface ::com::sun::star::uno::XInterface;
7661 /** @deprecated */ ::com::sun::star::uno::XInterface createObject([in] string URL, [in] ::com::sun::star::uno::Uik Uik);
7663 /** @deprecated */ published interface XConfigManager {
7664 interface ::com::sun::star::uno::XInterface;
7665 /** @deprecated */ void addPropertyChangeListener([in] string KeyName, [in] ::com::sun::star::beans::XPropertyChangeListener Listener);
7666 /** @deprecated */ void removePropertyChangeListener([in] string KeyName, [in] ::com::sun::star::beans::XPropertyChangeListener Listener);
7667 string substituteVariables([in] string Text);
7668 /** @deprecated */ void flush();
7670 published interface XDispatchProviderInterceptor {
7671 interface ::com::sun::star::frame::XDispatchProvider;
7672 ::com::sun::star::frame::XDispatchProvider getSlaveDispatchProvider();
7673 void setSlaveDispatchProvider([in] ::com::sun::star::frame::XDispatchProvider NewDispatchProvider);
7674 ::com::sun::star::frame::XDispatchProvider getMasterDispatchProvider();
7675 void setMasterDispatchProvider([in] ::com::sun::star::frame::XDispatchProvider NewSupplier);
7677 published interface XDispatchResultListener {
7678 interface ::com::sun::star::lang::XEventListener;
7679 void dispatchFinished([in] ::com::sun::star::frame::DispatchResultEvent Result);
7681 /** @deprecated */ published interface XExtendedFilterDetection {
7682 interface ::com::sun::star::uno::XInterface;
7683 /** @deprecated */ string detect([in] string URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Argumentlist);
7685 /** @deprecated */ published interface XFilterDetect {
7686 interface ::com::sun::star::uno::XInterface;
7687 string getContentType([in] string URL);
7688 boolean useExternBrowser([in] string URL);
7690 /** @deprecated */ published interface XFrameLoaderQuery {
7691 interface ::com::sun::star::uno::XInterface;
7692 /** @deprecated */ sequence< string > getAvailableFilterNames();
7693 /** @deprecated */ sequence< ::com::sun::star::beans::PropertyValue > getLoaderProperties([in] string sFilterName);
7694 /** @deprecated */ string searchFilter([in] string sURL, [in] sequence< ::com::sun::star::beans::PropertyValue > seqArguments);
7696 /** @deprecated */ published interface XFrameSetModel {
7697 interface ::com::sun::star::uno::XInterface;
7698 string getSource();
7699 void setSource([in] string Source);
7701 published interface XInterceptorInfo {
7702 interface ::com::sun::star::uno::XInterface;
7703 sequence< string > getInterceptedURLs();
7705 published interface XLoadEventListener {
7706 interface ::com::sun::star::lang::XEventListener;
7707 void loadFinished([in] ::com::sun::star::frame::XFrameLoader Loader);
7708 void loadCancelled([in] ::com::sun::star::frame::XFrameLoader Loader);
7710 published interface XLoadable {
7711 interface ::com::sun::star::uno::XInterface;
7712 void initNew() raises (::com::sun::star::frame::DoubleInitializationException, ::com::sun::star::io::IOException, ::com::sun::star::uno::Exception);
7713 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);
7715 published interface XRecordableDispatch {
7716 interface ::com::sun::star::uno::XInterface;
7717 void dispatchAndRecord([in] ::com::sun::star::util::URL URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments, [in] ::com::sun::star::frame::XDispatchRecorder Recorder);
7719 published interface XStorable2 {
7720 interface ::com::sun::star::frame::XStorable;
7721 void storeSelf([in] sequence< ::com::sun::star::beans::PropertyValue > lArguments) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::io::IOException);
7723 published interface XSynchronousDispatch {
7724 interface ::com::sun::star::uno::XInterface;
7725 any dispatchWithReturnValue([in] ::com::sun::star::util::URL URL, [in] sequence< ::com::sun::star::beans::PropertyValue > Arguments);
7727 /** @deprecated */ published interface XTasksSupplier {
7728 interface ::com::sun::star::uno::XInterface;
7729 /** @deprecated */ ::com::sun::star::container::XEnumerationAccess getTasks();
7730 /** @deprecated */ ::com::sun::star::frame::XTask getActiveTask();
7732 published interface XTerminateListener {
7733 interface ::com::sun::star::lang::XEventListener;
7734 void queryTermination([in] ::com::sun::star::lang::EventObject Event) raises (::com::sun::star::frame::TerminationVetoException);
7735 void notifyTermination([in] ::com::sun::star::lang::EventObject Event);
7737 /** @deprecated */ published interface XUrlList {
7738 interface ::com::sun::star::uno::XInterface;
7739 [attribute] sequence< string > List;
7741 published singleton theDesktop: ::com::sun::star::frame::XDesktop2;
7743 module graphic {
7744 published service GraphicDescriptor {
7745 interface ::com::sun::star::beans::XPropertySet;
7746 [property] byte GraphicType;
7747 [property] string MimeType;
7748 [property, optional] ::com::sun::star::awt::Size SizePixel;
7749 [property, optional] ::com::sun::star::awt::Size Size100thMM;
7750 [property, optional] byte BitsPerPixel;
7751 [property, optional] boolean Transparent;
7752 [property, optional] boolean Alpha;
7753 [property, optional] boolean Animated;
7754 [property, optional] boolean Linked;
7755 [property, optional] string OriginURL;
7757 published interface XGraphic {
7758 interface ::com::sun::star::uno::XInterface;
7759 byte getType();
7761 published service Graphic {
7762 service ::com::sun::star::graphic::GraphicDescriptor;
7763 interface ::com::sun::star::graphic::XGraphic;
7765 published interface XGraphicProvider {
7766 interface ::com::sun::star::uno::XInterface;
7767 ::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);
7768 ::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);
7769 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);
7771 published service GraphicProvider: ::com::sun::star::graphic::XGraphicProvider;
7772 published constants GraphicType {
7773 const byte EMPTY = 0;
7774 const byte PIXEL = 1;
7775 const byte VECTOR = 2;
7777 published service MediaProperties {
7778 [property, optional] string URL;
7779 [property, optional] ::com::sun::star::io::XInputStream InputStream;
7780 [property, optional] ::com::sun::star::io::XStream OutputStream;
7781 [property, optional] string MimeType;
7782 [property, optional] ::com::sun::star::beans::PropertyValues FilterData;
7785 module i18n {
7786 published constants AmPmValue {
7787 const short AM = 0;
7788 const short PM = 1;
7790 published struct Boundary {
7791 long startPos;
7792 long endPos;
7795 module linguistic2 {
7796 published interface XHyphenator;
7798 module i18n {
7799 published struct LineBreakHyphenationOptions {
7800 ::com::sun::star::linguistic2::XHyphenator rHyphenator;
7801 ::com::sun::star::beans::PropertyValues aHyphenationOptions;
7802 long hyphenIndex;
7805 module linguistic2 {
7806 published interface XHyphenatedWord;
7808 module i18n {
7809 published struct LineBreakResults {
7810 short breakType;
7811 long breakIndex;
7812 ::com::sun::star::linguistic2::XHyphenatedWord rHyphenatedWord;
7814 published struct LineBreakUserOptions {
7815 string forbiddenBeginCharacters;
7816 string forbiddenEndCharacters;
7817 boolean applyForbiddenRules;
7818 boolean allowPunctuationOutsideMargin;
7819 boolean allowHyphenateEnglish;
7821 published interface XBreakIterator {
7822 interface ::com::sun::star::uno::XInterface;
7823 long nextCharacters([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nCharacterIteratorMode, [in] long nCount, [out] long nDone);
7824 long previousCharacters([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nCharacterIteratorMode, [in] long nCount, [out] long nDone);
7825 ::com::sun::star::i18n::Boundary nextWord([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nWordType);
7826 ::com::sun::star::i18n::Boundary previousWord([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nWordType);
7827 ::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);
7828 /** @deprecated */ short getWordType([in] string aText, [in] long nPos, [in] ::com::sun::star::lang::Locale aLocale);
7829 boolean isBeginWord([in] string aText, [in] long nPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nWordType);
7830 boolean isEndWord([in] string aText, [in] long nPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nWordType);
7831 long beginOfSentence([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale);
7832 long endOfSentence([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale);
7833 ::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);
7834 long beginOfScript([in] string aText, [in] long nStartPos, [in] short nScriptType);
7835 long endOfScript([in] string aText, [in] long nStartPos, [in] short nScriptType);
7836 long nextScript([in] string aText, [in] long nStartPos, [in] short nScriptType);
7837 long previousScript([in] string aText, [in] long nStartPos, [in] short nScriptType);
7838 short getScriptType([in] string aText, [in] long nPos);
7839 long beginOfCharBlock([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nCharType);
7840 long endOfCharBlock([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nCharType);
7841 long nextCharBlock([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nCharType);
7842 long previousCharBlock([in] string aText, [in] long nStartPos, [in] ::com::sun::star::lang::Locale aLocale, [in] short nCharType);
7844 published service BreakIterator: ::com::sun::star::i18n::XBreakIterator;
7845 published constants BreakType {
7846 const short HANGINGPUNCTUATION = 3;
7847 const short HYPHENATION = 2;
7848 const short WORDBOUNDARY = 1;
7850 published constants CTLScriptType {
7851 const short CTL_ARABIC = 2;
7852 const short CTL_HEBREW = 1;
7853 const short CTL_INDIC = 4;
7854 const short CTL_THAI = 3;
7855 const short CTL_UNKNOWN = 0;
7857 published struct CalendarItem {
7858 string ID;
7859 string AbbrevName;
7860 string FullName;
7862 published struct Calendar {
7863 sequence< ::com::sun::star::i18n::CalendarItem > Days;
7864 sequence< ::com::sun::star::i18n::CalendarItem > Months;
7865 sequence< ::com::sun::star::i18n::CalendarItem > Eras;
7866 string StartOfWeek;
7867 short MinimumNumberOfDaysForFirstWeek;
7868 boolean Default;
7869 string Name;
7871 published struct CalendarItem2: ::com::sun::star::i18n::CalendarItem {
7872 string NarrowName;
7874 published struct Calendar2 {
7875 sequence< ::com::sun::star::i18n::CalendarItem2 > Days;
7876 sequence< ::com::sun::star::i18n::CalendarItem2 > Months;
7877 sequence< ::com::sun::star::i18n::CalendarItem2 > GenitiveMonths;
7878 sequence< ::com::sun::star::i18n::CalendarItem2 > PartitiveMonths;
7879 sequence< ::com::sun::star::i18n::CalendarItem2 > Eras;
7880 string StartOfWeek;
7881 short MinimumNumberOfDaysForFirstWeek;
7882 boolean Default;
7883 string Name;
7885 published constants CalendarDisplayCode {
7886 const long LONG_DAY = 2;
7887 const long LONG_DAY_NAME = 4;
7888 const long LONG_ERA = 12;
7889 const long LONG_GENITIVE_MONTH_NAME = 18;
7890 const long LONG_MONTH = 6;
7891 const long LONG_MONTH_NAME = 8;
7892 const long LONG_PARTITIVE_MONTH_NAME = 21;
7893 const long LONG_QUARTER = 16;
7894 const long LONG_YEAR = 10;
7895 const long LONG_YEAR_AND_ERA = 14;
7896 const long NARROW_DAY_NAME = 23;
7897 const long NARROW_GENITIVE_MONTH_NAME = 19;
7898 const long NARROW_MONTH_NAME = 24;
7899 const long NARROW_PARTITIVE_MONTH_NAME = 22;
7900 const long SHORT_DAY = 1;
7901 const long SHORT_DAY_NAME = 3;
7902 const long SHORT_ERA = 11;
7903 const long SHORT_GENITIVE_MONTH_NAME = 17;
7904 const long SHORT_MONTH = 5;
7905 const long SHORT_MONTH_NAME = 7;
7906 const long SHORT_PARTITIVE_MONTH_NAME = 20;
7907 const long SHORT_QUARTER = 15;
7908 const long SHORT_YEAR = 9;
7909 const long SHORT_YEAR_AND_ERA = 13;
7911 published constants CalendarDisplayIndex {
7912 const short AM_PM = 0;
7913 const short DAY = 1;
7914 const short ERA = 4;
7915 const short GENITIVE_MONTH = 5;
7916 const short MONTH = 2;
7917 const short PARTITIVE_MONTH = 6;
7918 const short YEAR = 3;
7920 published constants CalendarFieldIndex {
7921 const short AM_PM = 0;
7922 const short DAY_OF_MONTH = 1;
7923 const short DAY_OF_WEEK = 2;
7924 const short DAY_OF_YEAR = 3;
7925 const short DST_OFFSET = 4;
7926 const short DST_OFFSET_SECOND_MILLIS = 16;
7927 const short ERA = 13;
7928 const short FIELD_COUNT = 15;
7929 const short FIELD_COUNT2 = 17;
7930 const short HOUR = 5;
7931 const short MILLISECOND = 8;
7932 const short MINUTE = 6;
7933 const short MONTH = 12;
7934 const short SECOND = 7;
7935 const short WEEK_OF_MONTH = 9;
7936 const short WEEK_OF_YEAR = 10;
7937 const short YEAR = 11;
7938 const short ZONE_OFFSET = 14;
7939 const short ZONE_OFFSET_SECOND_MILLIS = 15;
7941 published interface XCollator {
7942 interface ::com::sun::star::uno::XInterface;
7943 long compareSubstring([in] string aStr1, [in] long nOff1, [in] long nLen1, [in] string aStr2, [in] long nOff2, [in] long nLen2);
7944 long compareString([in] string aStr1, [in] string aStr2);
7945 long loadDefaultCollator([in] ::com::sun::star::lang::Locale aLocale, [in] long nCollatorOptions);
7946 long loadCollatorAlgorithm([in] string aAlgorithmName, [in] ::com::sun::star::lang::Locale aLocale, [in] long nCollatorOptions);
7947 sequence< string > listCollatorAlgorithms([in] ::com::sun::star::lang::Locale aLocale);
7948 void loadCollatorAlgorithmWithEndUserOption([in] string aAlgorithmName, [in] ::com::sun::star::lang::Locale aLocale, [in] sequence< long > aCollatorOptions);
7949 sequence< long > listCollatorOptions([in] string aAlgorithmName);
7951 published service ChapterCollator: ::com::sun::star::i18n::XCollator;
7952 published constants CharType {
7953 const short ANY_CHAR = 0;
7954 const short COMBINING_SPACING_MARK = 8;
7955 const short CONNECTOR_PUNCTUATION = 22;
7956 const short CONTROL = 15;
7957 const short CURRENCY_SYMBOL = 25;
7958 const short DASH_PUNCTUATION = 19;
7959 const short DECIMAL_DIGIT_NUMBER = 9;
7960 const short ENCLOSING_MARK = 7;
7961 const short END_PUNCTUATION = 21;
7962 const short FINAL_PUNCTUATION = 29;
7963 const short FORMAT = 16;
7964 const short GENERAL_TYPES_COUNT = 30;
7965 const short INITIAL_PUNCTUATION = 28;
7966 const short LETTER_NUMBER = 10;
7967 const short LINE_SEPARATOR = 13;
7968 const short LOWERCASE_LETTER = 2;
7969 const short MATH_SYMBOL = 24;
7970 const short MODIFIER_LETTER = 4;
7971 const short MODIFIER_SYMBOL = 26;
7972 const short NON_SPACING_MARK = 6;
7973 const short OTHER_LETTER = 5;
7974 const short OTHER_NUMBER = 11;
7975 const short OTHER_PUNCTUATION = 23;
7976 const short OTHER_SYMBOL = 27;
7977 const short PARAGRAPH_SEPARATOR = 14;
7978 const short PRIVATE_USE = 17;
7979 const short SPACE_SEPARATOR = 12;
7980 const short START_PUNCTUATION = 20;
7981 const short SURROGATE = 18;
7982 const short TITLECASE_LETTER = 3;
7983 const short UPPERCASE_LETTER = 1;
7985 published struct ParseResult {
7986 long LeadingWhiteSpace;
7987 long EndPos;
7988 long CharLen;
7989 double Value;
7990 long TokenType;
7991 long StartFlags;
7992 long ContFlags;
7993 string DequotedNameOrString;
7995 published interface XCharacterClassification {
7996 interface ::com::sun::star::uno::XInterface;
7997 string toUpper([in] string aText, [in] long nPos, [in] long nCount, [in] ::com::sun::star::lang::Locale aLocale);
7998 string toLower([in] string aText, [in] long nPos, [in] long nCount, [in] ::com::sun::star::lang::Locale aLocale);
7999 string toTitle([in] string aText, [in] long nPos, [in] long nCount, [in] ::com::sun::star::lang::Locale aLocale);
8000 short getType([in] string aText, [in] long nPos);
8001 short getCharacterDirection([in] string aText, [in] long nPos);
8002 short getScript([in] string aText, [in] long nPos);
8003 long getCharacterType([in] string aText, [in] long nPos, [in] ::com::sun::star::lang::Locale aLocale);
8004 long getStringType([in] string aText, [in] long nPos, [in] long nCount, [in] ::com::sun::star::lang::Locale aLocale);
8005 ::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);
8006 ::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);
8008 published service CharacterClassification: ::com::sun::star::i18n::XCharacterClassification;
8009 published constants CharacterIteratorMode {
8010 const short SKIPCELL = 1;
8011 const short SKIPCHARACTER = 0;
8012 const short SKIPCONTROLCHARACTER = 2;
8014 published service Collator: ::com::sun::star::i18n::XCollator;
8015 published constants CollatorOptions {
8016 const short CollatorOptions_IGNORE_CASE = 1;
8017 const short CollatorOptions_IGNORE_CASE_ACCENT = 8;
8018 const short CollatorOptions_IGNORE_KANA = 2;
8019 const short CollatorOptions_IGNORE_WIDTH = 4;
8021 published struct Currency {
8022 string ID;
8023 string Symbol;
8024 string BankSymbol;
8025 string Name;
8026 boolean Default;
8027 boolean UsedInCompatibleFormatCodes;
8028 short DecimalPlaces;
8030 published struct Currency2: ::com::sun::star::i18n::Currency {
8031 boolean LegacyOnly;
8033 published enum DirectionProperty {
8034 LEFT_TO_RIGHT = 0,
8035 RIGHT_TO_LEFT = 1,
8036 EUROPEAN_NUMBER = 2,
8037 EUROPEAN_NUMBER_SEPARATOR = 3,
8038 EUROPEAN_NUMBER_TERMINATOR = 4,
8039 ARABIC_NUMBER = 5,
8040 COMMON_NUMBER_SEPARATOR = 6,
8041 BLOCK_SEPARATOR = 7,
8042 SEGMENT_SEPARATOR = 8,
8043 WHITE_SPACE_NEUTRAL = 9,
8044 OTHER_NEUTRAL = 10,
8045 LEFT_TO_RIGHT_EMBEDDING = 11,
8046 LEFT_TO_RIGHT_OVERRIDE = 12,
8047 RIGHT_TO_LEFT_ARABIC = 13,
8048 RIGHT_TO_LEFT_EMBEDDING = 14,
8049 RIGHT_TO_LEFT_OVERRIDE = 15,
8050 POP_DIRECTIONAL_FORMAT = 16,
8051 DIR_NON_SPACING_MARK = 17,
8052 BOUNDARY_NEUTRAL = 18
8054 published struct ForbiddenCharacters {
8055 string beginLine;
8056 string endLine;
8058 published struct FormatElement {
8059 string formatCode;
8060 string formatName;
8061 string formatKey;
8062 string formatType;
8063 string formatUsage;
8064 short formatIndex;
8065 boolean isDefault;
8067 published struct Implementation {
8068 string unoID;
8069 boolean isDefault;
8071 published interface XIndexEntrySupplier {
8072 interface ::com::sun::star::uno::XInterface;
8073 string getIndexCharacter([in] string aIndexEntry, [in] ::com::sun::star::lang::Locale aLocale, [in] string aSortAlgorithm);
8074 string getIndexFollowPageWord([in] boolean bMorePages, [in] ::com::sun::star::lang::Locale aLocale);
8076 published interface XExtendedIndexEntrySupplier {
8077 interface ::com::sun::star::i18n::XIndexEntrySupplier;
8078 sequence< ::com::sun::star::lang::Locale > getLocaleList();
8079 sequence< string > getAlgorithmList([in] ::com::sun::star::lang::Locale aLocale);
8080 boolean usePhoneticEntry([in] ::com::sun::star::lang::Locale aLocale);
8081 string getPhoneticCandidate([in] string aIndexEntry, [in] ::com::sun::star::lang::Locale aLocale);
8082 boolean loadAlgorithm([in] ::com::sun::star::lang::Locale aLocale, [in] string aIndexAlgorithm, [in] long nCollatorOptions);
8083 string getIndexKey([in] string aIndexEntry, [in] string aPhoneticEntry, [in] ::com::sun::star::lang::Locale aLocale);
8084 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);
8086 published service IndexEntrySupplier: ::com::sun::star::i18n::XExtendedIndexEntrySupplier;
8087 published constants InputSequenceCheckMode {
8088 const short BASIC = 1;
8089 const short PASSTHROUGH = 0;
8090 const short STRICT = 2;
8092 published interface XInputSequenceChecker {
8093 interface ::com::sun::star::uno::XInterface;
8094 boolean checkInputSequence([in] string aText, [in] long nPos, [in] char cInputChar, [in] short nInputCheckMode);
8096 published interface XExtendedInputSequenceChecker {
8097 interface ::com::sun::star::i18n::XInputSequenceChecker;
8098 long correctInputSequence([inout] string aText, [in] long nPos, [in] char cInputChar, [in] short nInputCheckMode);
8100 published service InputSequenceChecker: ::com::sun::star::i18n::XExtendedInputSequenceChecker;
8101 published constants KCharacterType {
8102 const long ALPHA = 14;
8103 const long BASE_FORM = 64;
8104 const long CONTROL = 16;
8105 const long DIGIT = 1;
8106 const long LETTER = 128;
8107 const long LOWER = 4;
8108 const long PRINTABLE = 32;
8109 const long TITLE_CASE = 8;
8110 const long UPPER = 2;
8112 published constants KNumberFormatType {
8113 const short LONG = 3;
8114 const short MEDIUM = 2;
8115 const short SHORT = 1;
8117 published constants KNumberFormatUsage {
8118 const short CURRENCY = 8;
8119 const short DATE = 1;
8120 const short DATE_TIME = 3;
8121 const short FIXED_NUMBER = 4;
8122 const short FRACTION_NUMBER = 5;
8123 const short PERCENT_NUMBER = 6;
8124 const short SCIENTIFIC_NUMBER = 7;
8125 const short TIME = 2;
8127 published constants KParseTokens {
8128 const long ANY_ALNUM = 61447;
8129 const long ANY_ALPHA = 45059;
8130 const long ANY_DIGIT = 16388;
8131 const long ANY_LETTER = 241667;
8132 const long ANY_LETTER_OR_NUMBER = 1044487;
8133 const long ANY_NUMBER = 802820;
8134 const long ASC_ALNUM = 7;
8135 const long ASC_ALPHA = 3;
8136 const long ASC_ANY_BUT_CONTROL = 1024;
8137 const long ASC_COLON = 64;
8138 const long ASC_CONTROL = 512;
8139 const long ASC_DIGIT = 4;
8140 const long ASC_DOLLAR = 16;
8141 const long ASC_DOT = 32;
8142 const long ASC_LOALPHA = 2;
8143 const long ASC_OTHER = 2048;
8144 const long ASC_UNDERSCORE = 8;
8145 const long ASC_UPALPHA = 1;
8146 const long GROUP_SEPARATOR_IN_NUMBER = 134217728;
8147 const long IGNORE_LEADING_WS = 1073741824;
8148 const long TWO_DOUBLE_QUOTES_BREAK_STRING = 268435456;
8149 const long UNI_ALNUM = 61440;
8150 const long UNI_ALPHA = 45056;
8151 const long UNI_DIGIT = 16384;
8152 const long UNI_LETTER = 241664;
8153 const long UNI_LETTER_NUMBER = 262144;
8154 const long UNI_LOALPHA = 8192;
8155 const long UNI_MODIFIER_LETTER = 65536;
8156 const long UNI_NUMBER = 802816;
8157 const long UNI_OTHER = 536870912;
8158 const long UNI_OTHER_LETTER = 131072;
8159 const long UNI_OTHER_NUMBER = 524288;
8160 const long UNI_TITLE_ALPHA = 32768;
8161 const long UNI_UPALPHA = 4096;
8163 published constants KParseType {
8164 const long ANY_NUMBER = 96;
8165 const long ASC_NUMBER = 32;
8166 const long BOOLEAN = 2;
8167 const long DOUBLE_QUOTE_STRING = 16;
8168 const long IDENTNAME = 4;
8169 const long MISSING_QUOTE = 1073741824;
8170 const long ONE_SINGLE_CHAR = 1;
8171 const long SINGLE_QUOTE_NAME = 8;
8172 const long UNI_NUMBER = 64;
8174 published struct LanguageCountryInfo {
8175 string Language;
8176 string LanguageDefaultName;
8177 string Country;
8178 string CountryDefaultName;
8179 string Variant;
8181 published interface XCalendar {
8182 interface ::com::sun::star::uno::XInterface;
8183 void loadDefaultCalendar([in] ::com::sun::star::lang::Locale rLocale);
8184 void loadCalendar([in] string uniqueID, [in] ::com::sun::star::lang::Locale rLocale);
8185 ::com::sun::star::i18n::Calendar getLoadedCalendar();
8186 sequence< string > getAllCalendars([in] ::com::sun::star::lang::Locale rLocale);
8187 string getUniqueID();
8188 void setDateTime([in] double nTimeInDays);
8189 double getDateTime();
8190 void setValue([in] short nCalendarFieldIndex, [in] short nValue);
8191 short getValue([in] short nCalendarFieldIndex);
8192 boolean isValid();
8193 void addValue([in] short nCalendarFieldIndex, [in] long nAmount);
8194 short getFirstDayOfWeek();
8195 void setFirstDayOfWeek([in] short nDay);
8196 void setMinimumNumberOfDaysForFirstWeek([in] short nDays);
8197 short getMinimumNumberOfDaysForFirstWeek();
8198 short getNumberOfMonthsInYear();
8199 short getNumberOfDaysInWeek();
8200 sequence< ::com::sun::star::i18n::CalendarItem > getMonths();
8201 sequence< ::com::sun::star::i18n::CalendarItem > getDays();
8202 string getDisplayName([in] short nCalendarDisplayIndex, [in] short nIdx, [in] short nNameType);
8204 published interface XExtendedCalendar {
8205 interface ::com::sun::star::i18n::XCalendar;
8206 string getDisplayString([in] long nCalendarDisplayCode, [in] short nNativeNumberMode);
8208 published interface XCalendar3 {
8209 interface ::com::sun::star::i18n::XExtendedCalendar;
8210 ::com::sun::star::i18n::Calendar2 getLoadedCalendar2();
8211 sequence< ::com::sun::star::i18n::CalendarItem2 > getDays2();
8212 sequence< ::com::sun::star::i18n::CalendarItem2 > getMonths2();
8213 sequence< ::com::sun::star::i18n::CalendarItem2 > getGenitiveMonths2();
8214 sequence< ::com::sun::star::i18n::CalendarItem2 > getPartitiveMonths2();
8216 published service LocaleCalendar: ::com::sun::star::i18n::XCalendar3;
8217 published struct LocaleDataItem {
8218 string unoID;
8219 string dateSeparator;
8220 string thousandSeparator;
8221 string decimalSeparator;
8222 string timeSeparator;
8223 string time100SecSeparator;
8224 string listSeparator;
8225 string quotationStart;
8226 string quotationEnd;
8227 string doubleQuotationStart;
8228 string doubleQuotationEnd;
8229 string timeAM;
8230 string timePM;
8231 string measurementSystem;
8232 string LongDateDayOfWeekSeparator;
8233 string LongDateDaySeparator;
8234 string LongDateMonthSeparator;
8235 string LongDateYearSeparator;
8237 published interface XLocaleData {
8238 interface ::com::sun::star::uno::XInterface;
8239 ::com::sun::star::i18n::LanguageCountryInfo getLanguageCountryInfo([in] ::com::sun::star::lang::Locale aLocale);
8240 ::com::sun::star::i18n::LocaleDataItem getLocaleItem([in] ::com::sun::star::lang::Locale aLocale);
8241 sequence< ::com::sun::star::i18n::Calendar > getAllCalendars([in] ::com::sun::star::lang::Locale aLocale);
8242 sequence< ::com::sun::star::i18n::Currency > getAllCurrencies([in] ::com::sun::star::lang::Locale aLocale);
8243 sequence< ::com::sun::star::i18n::FormatElement > getAllFormats([in] ::com::sun::star::lang::Locale aLocale);
8244 sequence< ::com::sun::star::i18n::Implementation > getCollatorImplementations([in] ::com::sun::star::lang::Locale aLocale);
8245 sequence< string > getSearchOptions([in] ::com::sun::star::lang::Locale aLocale);
8246 sequence< string > getCollationOptions([in] ::com::sun::star::lang::Locale aLocale);
8247 sequence< string > getTransliterations([in] ::com::sun::star::lang::Locale aLocale);
8248 ::com::sun::star::i18n::ForbiddenCharacters getForbiddenCharacters([in] ::com::sun::star::lang::Locale aLocale);
8249 sequence< string > getReservedWord([in] ::com::sun::star::lang::Locale aLocale);
8250 sequence< ::com::sun::star::lang::Locale > getAllInstalledLocaleNames();
8252 published interface XLocaleData2 {
8253 interface ::com::sun::star::i18n::XLocaleData;
8254 sequence< ::com::sun::star::i18n::Currency2 > getAllCurrencies2([in] ::com::sun::star::lang::Locale aLocale);
8256 published interface XLocaleData3 {
8257 interface ::com::sun::star::i18n::XLocaleData2;
8258 sequence< ::com::sun::star::i18n::Calendar2 > getAllCalendars2([in] ::com::sun::star::lang::Locale aLocale);
8260 published interface XLocaleData4 {
8261 interface ::com::sun::star::i18n::XLocaleData3;
8262 sequence< string > getDateAcceptancePatterns([in] ::com::sun::star::lang::Locale aLocale);
8264 published service LocaleData: ::com::sun::star::i18n::XLocaleData4;
8265 /** @deprecated */ published constants LocaleItem {
8266 const short COUNT = 17;
8267 const short COUNT2 = 18;
8268 const short DATE_SEPARATOR = 0;
8269 const short DECIMAL_SEPARATOR = 2;
8270 const short DECIMAL_SEPARATOR_ALTERNATIVE = 17;
8271 const short DOUBLE_QUOTATION_END = 9;
8272 const short DOUBLE_QUOTATION_START = 8;
8273 const short LIST_SEPARATOR = 5;
8274 const short LONG_DATE_DAY_OF_WEEK_SEPARATOR = 13;
8275 const short LONG_DATE_DAY_SEPARATOR = 14;
8276 const short LONG_DATE_MONTH_SEPARATOR = 15;
8277 const short LONG_DATE_YEAR_SEPARATOR = 16;
8278 const short MEASUREMENT_SYSTEM = 10;
8279 const short SINGLE_QUOTATION_END = 7;
8280 const short SINGLE_QUOTATION_START = 6;
8281 const short THOUSAND_SEPARATOR = 1;
8282 const short TIME_100SEC_SEPARATOR = 4;
8283 const short TIME_AM = 11;
8284 const short TIME_PM = 12;
8285 const short TIME_SEPARATOR = 3;
8287 published constants Months {
8288 const short APRIL = 3;
8289 const short AUGUST = 7;
8290 const short DECEMBER = 11;
8291 const short FEBURARY = 1;
8292 const short JANUARY = 0;
8293 const short JULY = 6;
8294 const short JUNE = 5;
8295 const short MARCH = 2;
8296 const short MAY = 4;
8297 const short NOVEMBER = 10;
8298 const short OCTOBER = 9;
8299 const short SEPTEMBER = 8;
8301 published exception MultipleCharsOutputException: ::com::sun::star::uno::Exception {
8303 published constants NativeNumberMode {
8304 const short NATNUM0 = 0;
8305 const short NATNUM1 = 1;
8306 const short NATNUM10 = 10;
8307 const short NATNUM11 = 11;
8308 const short NATNUM12 = 12;
8309 const short NATNUM2 = 2;
8310 const short NATNUM3 = 3;
8311 const short NATNUM4 = 4;
8312 const short NATNUM5 = 5;
8313 const short NATNUM6 = 6;
8314 const short NATNUM7 = 7;
8315 const short NATNUM8 = 8;
8316 const short NATNUM9 = 9;
8318 published struct NativeNumberXmlAttributes {
8319 ::com::sun::star::lang::Locale Locale;
8320 string Format;
8321 string Style;
8323 published interface XNativeNumberSupplier {
8324 interface ::com::sun::star::uno::XInterface;
8325 string getNativeNumberString([in] string aNumberString, [in] ::com::sun::star::lang::Locale aLocale, [in] short nNativeNumberMode);
8326 boolean isValidNatNum([in] ::com::sun::star::lang::Locale aLocale, [in] short nNativeNumberMode);
8327 ::com::sun::star::i18n::NativeNumberXmlAttributes convertToXmlAttributes([in] ::com::sun::star::lang::Locale aLocale, [in] short nNativeNumberMode);
8328 short convertFromXmlAttributes([in] ::com::sun::star::i18n::NativeNumberXmlAttributes aAttr);
8330 published service NativeNumberSupplier: ::com::sun::star::i18n::XNativeNumberSupplier;
8331 published struct NumberFormatCode {
8332 short Type;
8333 short Usage;
8334 string Code;
8335 string DefaultName;
8336 string NameID;
8337 short Index;
8338 boolean Default;
8340 published constants NumberFormatIndex {
8341 const short BOOLEAN = 48;
8342 const short CURRENCY_1000DEC2 = 13;
8343 const short CURRENCY_1000DEC2_CCC = 16;
8344 const short CURRENCY_1000DEC2_DASHED = 17;
8345 const short CURRENCY_1000DEC2_RED = 15;
8346 const short CURRENCY_1000INT = 12;
8347 const short CURRENCY_1000INT_RED = 14;
8348 const short CURRENCY_END = 17;
8349 const short CURRENCY_START = 12;
8350 const short DATETIME_END = 47;
8351 const short DATETIME_START = 46;
8352 const short DATETIME_SYSTEM_SHORT_HHMM = 46;
8353 const short DATETIME_SYS_DDMMYYYY_HHMMSS = 47;
8354 const short DATE_DEF_NNDDMMMYY = 28;
8355 const short DATE_DIN_DMMMMYYYY = 26;
8356 const short DATE_DIN_DMMMYYYY = 24;
8357 const short DATE_DIN_MMDD = 31;
8358 const short DATE_DIN_YYMMDD = 32;
8359 const short DATE_DIN_YYYYMMDD = 33;
8360 const short DATE_END = 38;
8361 const short DATE_MMMM = 36;
8362 const short DATE_QQJJ = 37;
8363 const short DATE_START = 18;
8364 const short DATE_SYSTEM_LONG = 19;
8365 const short DATE_SYSTEM_SHORT = 18;
8366 const short DATE_SYS_DDMMM = 35;
8367 const short DATE_SYS_DDMMYY = 20;
8368 const short DATE_SYS_DDMMYYYY = 21;
8369 const short DATE_SYS_DMMMMYYYY = 25;
8370 const short DATE_SYS_DMMMYY = 22;
8371 const short DATE_SYS_DMMMYYYY = 23;
8372 const short DATE_SYS_MMYY = 34;
8373 const short DATE_SYS_NNDMMMMYYYY = 29;
8374 const short DATE_SYS_NNDMMMYY = 27;
8375 const short DATE_SYS_NNNNDMMMMYYYY = 30;
8376 const short DATE_WW = 38;
8377 const short FRACTION_1 = 10;
8378 const short FRACTION_2 = 11;
8379 const short FRACTION_END = 11;
8380 const short FRACTION_START = 10;
8381 const short INDEX_TABLE_ENTRIES = 50;
8382 const short NUMBER_1000DEC2 = 4;
8383 const short NUMBER_1000INT = 3;
8384 const short NUMBER_DEC2 = 2;
8385 const short NUMBER_END = 5;
8386 const short NUMBER_INT = 1;
8387 const short NUMBER_STANDARD = 0;
8388 const short NUMBER_START = 0;
8389 const short NUMBER_SYSTEM = 5;
8390 const short PERCENT_DEC2 = 9;
8391 const short PERCENT_END = 9;
8392 const short PERCENT_INT = 8;
8393 const short PERCENT_START = 8;
8394 const short SCIENTIFIC_000E00 = 7;
8395 const short SCIENTIFIC_000E000 = 6;
8396 const short SCIENTIFIC_END = 7;
8397 const short SCIENTIFIC_START = 6;
8398 const short TEXT = 49;
8399 const short TIME_END = 45;
8400 const short TIME_HHMM = 39;
8401 const short TIME_HHMMAMPM = 41;
8402 const short TIME_HHMMSS = 40;
8403 const short TIME_HHMMSSAMPM = 42;
8404 const short TIME_HH_MMSS = 43;
8405 const short TIME_HH_MMSS00 = 45;
8406 const short TIME_MMSS00 = 44;
8407 const short TIME_START = 39;
8409 published interface XNumberFormatCode {
8410 interface ::com::sun::star::uno::XInterface;
8411 ::com::sun::star::i18n::NumberFormatCode getDefault([in] short nFormatType, [in] short nFormatUsage, [in] ::com::sun::star::lang::Locale rLocale);
8412 ::com::sun::star::i18n::NumberFormatCode getFormatCode([in] short nFormatIndex, [in] ::com::sun::star::lang::Locale rLocale);
8413 sequence< ::com::sun::star::i18n::NumberFormatCode > getAllFormatCode([in] short nFormatUsage, [in] ::com::sun::star::lang::Locale rLocale);
8414 sequence< ::com::sun::star::i18n::NumberFormatCode > getAllFormatCodes([in] ::com::sun::star::lang::Locale rLocale);
8416 published service NumberFormatMapper: ::com::sun::star::i18n::XNumberFormatCode;
8417 published constants ScriptDirection {
8418 const short LEFT_TO_RIGHT = 1;
8419 const short NEUTRAL = 0;
8420 const short RIGHT_TO_LEFT = 2;
8422 published constants ScriptType {
8423 const short ASIAN = 2;
8424 const short COMPLEX = 3;
8425 const short LATIN = 1;
8426 const short WEAK = 4;
8428 published struct TextConversionResult {
8429 ::com::sun::star::i18n::Boundary Boundary;
8430 sequence< string > Candidates;
8432 published interface XTextConversion {
8433 interface ::com::sun::star::uno::XInterface;
8434 ::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);
8435 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);
8436 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);
8438 published interface XExtendedTextConversion {
8439 interface ::com::sun::star::i18n::XTextConversion;
8440 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);
8442 published service TextConversion: ::com::sun::star::i18n::XExtendedTextConversion;
8443 published constants TextConversionOption {
8444 const long CHARACTER_BY_CHARACTER = 1;
8445 const long IGNORE_POST_POSITIONAL_WORD = 2;
8446 const long NONE = 0;
8447 const long USE_CHARACTER_VARIANTS = 2;
8449 published constants TextConversionType {
8450 const short TO_HANGUL = 1;
8451 const short TO_HANJA = 2;
8452 const short TO_SCHINESE = 3;
8453 const short TO_TCHINESE = 4;
8455 published enum TransliterationModules {
8456 UPPERCASE_LOWERCASE = 1,
8457 LOWERCASE_UPPERCASE = 2,
8458 HALFWIDTH_FULLWIDTH = 3,
8459 FULLWIDTH_HALFWIDTH = 4,
8460 KATAKANA_HIRAGANA = 5,
8461 HIRAGANA_KATAKANA = 6,
8462 NumToTextLower_zh_CN = 7,
8463 NumToTextUpper_zh_CN = 8,
8464 NumToTextLower_zh_TW = 9,
8465 NumToTextUpper_zh_TW = 10,
8466 NumToTextFormalHangul_ko = 11,
8467 NumToTextFormalLower_ko = 12,
8468 NumToTextFormalUpper_ko = 13,
8469 NON_IGNORE_MASK = 255,
8470 IGNORE_MASK = -256,
8471 IGNORE_CASE = 256,
8472 IGNORE_KANA = 512,
8473 IGNORE_WIDTH = 1024,
8474 IgnoreTraditionalKanji_ja_JP = 4096,
8475 IgnoreTraditionalKana_ja_JP = 8192,
8476 IgnoreMinusSign_ja_JP = 16384,
8477 IgnoreIterationMark_ja_JP = 32768,
8478 IgnoreSeparator_ja_JP = 65536,
8479 IgnoreZiZu_ja_JP = 131072,
8480 IgnoreBaFa_ja_JP = 262144,
8481 IgnoreTiJi_ja_JP = 524288,
8482 IgnoreHyuByu_ja_JP = 1048576,
8483 IgnoreSeZe_ja_JP = 2097152,
8484 IgnoreIandEfollowedByYa_ja_JP = 4194304,
8485 IgnoreKiKuFollowedBySa_ja_JP = 8388608,
8486 IgnoreSize_ja_JP = 16777216,
8487 IgnoreProlongedSoundMark_ja_JP = 33554432,
8488 IgnoreMiddleDot_ja_JP = 67108864,
8489 IgnoreSpace_ja_JP = 134217728,
8490 SmallToLarge_ja_JP = 268435456,
8491 LargeToSmall_ja_JP = 536870912,
8492 END_OF_MODULE = 0
8494 published enum TransliterationModulesNew {
8495 UPPERCASE_LOWERCASE = 1,
8496 LOWERCASE_UPPERCASE = 2,
8497 HALFWIDTH_FULLWIDTH = 3,
8498 FULLWIDTH_HALFWIDTH = 4,
8499 KATAKANA_HIRAGANA = 5,
8500 HIRAGANA_KATAKANA = 6,
8501 IGNORE_CASE = 7,
8502 IGNORE_KANA = 8,
8503 IGNORE_WIDTH = 9,
8504 IgnoreTraditionalKanji_ja_JP = 10,
8505 IgnoreTraditionalKana_ja_JP = 11,
8506 IgnoreMinusSign_ja_JP = 12,
8507 IgnoreIterationMark_ja_JP = 13,
8508 IgnoreSeparator_ja_JP = 14,
8509 IgnoreZiZu_ja_JP = 15,
8510 IgnoreBaFa_ja_JP = 16,
8511 IgnoreTiJi_ja_JP = 17,
8512 IgnoreHyuByu_ja_JP = 18,
8513 IgnoreSeZe_ja_JP = 19,
8514 IgnoreIandEfollowedByYa_ja_JP = 20,
8515 IgnoreKiKuFollowedBySa_ja_JP = 21,
8516 IgnoreSize_ja_JP = 22,
8517 IgnoreProlongedSoundMark_ja_JP = 23,
8518 IgnoreMiddleDot_ja_JP = 24,
8519 IgnoreSpace_ja_JP = 25,
8520 SmallToLarge_ja_JP = 26,
8521 LargeToSmall_ja_JP = 27,
8522 NumToTextLower_zh_CN = 28,
8523 NumToTextUpper_zh_CN = 29,
8524 NumToTextLower_zh_TW = 30,
8525 NumToTextUpper_zh_TW = 31,
8526 NumToTextFormalHangul_ko = 32,
8527 NumToTextFormalLower_ko = 33,
8528 NumToTextFormalUpper_ko = 34,
8529 NumToTextInformalHangul_ko = 35,
8530 NumToTextInformalLower_ko = 36,
8531 NumToTextInformalUpper_ko = 37,
8532 NumToCharLower_zh_CN = 38,
8533 NumToCharUpper_zh_CN = 39,
8534 NumToCharLower_zh_TW = 40,
8535 NumToCharUpper_zh_TW = 41,
8536 NumToCharHangul_ko = 42,
8537 NumToCharLower_ko = 43,
8538 NumToCharUpper_ko = 44,
8539 NumToCharFullwidth = 45,
8540 NumToCharKanjiShort_ja_JP = 46,
8541 TextToNumLower_zh_CN = 47,
8542 TextToNumUpper_zh_CN = 48,
8543 TextToNumLower_zh_TW = 49,
8544 TextToNumUpper_zh_TW = 50,
8545 TextToNumFormalHangul_ko = 51,
8546 TextToNumFormalLower_ko = 52,
8547 TextToNumFormalUpper_ko = 53,
8548 TextToNumInformalHangul_ko = 54,
8549 TextToNumInformalLower_ko = 55,
8550 TextToNumInformalUpper_ko = 56,
8551 CharToNumLower_zh_CN = 59,
8552 CharToNumUpper_zh_CN = 60,
8553 CharToNumLower_zh_TW = 61,
8554 CharToNumUpper_zh_TW = 62,
8555 CharToNumHangul_ko = 63,
8556 CharToNumLower_ko = 64,
8557 CharToNumUpper_ko = 65,
8558 END_OF_MODULE = 0
8560 published interface XTransliteration {
8561 interface ::com::sun::star::uno::XInterface;
8562 string getName();
8563 short getType();
8564 void loadModule([in] ::com::sun::star::i18n::TransliterationModules eModType, [in] ::com::sun::star::lang::Locale aLocale);
8565 void loadModuleNew([in] sequence< ::com::sun::star::i18n::TransliterationModulesNew > aModType, [in] ::com::sun::star::lang::Locale aLocale);
8566 void loadModuleByImplName([in] string aImplName, [in] ::com::sun::star::lang::Locale aLocale);
8567 void loadModulesByImplNames([in] sequence< string > aImplNameList, [in] ::com::sun::star::lang::Locale aLocale);
8568 sequence< string > getAvailableModules([in] ::com::sun::star::lang::Locale aLocale, [in] short nType);
8569 string transliterate([in] string aInStr, [in] long nStartPos, [in] long nCount, [out] sequence< long > rOffset);
8570 /** @deprecated */ string folding([in] string aInStr, [in] long nStartPos, [in] long nCount, [out] sequence< long > rOffset);
8571 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);
8572 sequence< string > transliterateRange([in] string aStr1, [in] string aStr2);
8573 long compareSubstring([in] string aStr1, [in] long nOff1, [in] long nLen1, [in] string aStr2, [in] long nOff2, [in] long nLen2);
8574 long compareString([in] string aStr1, [in] string aStr2);
8576 published interface XExtendedTransliteration {
8577 interface ::com::sun::star::i18n::XTransliteration;
8578 string transliterateString2String([in] string aStr, [in] long nStartPos, [in] long nCount);
8579 string transliterateChar2String([in] char cChar);
8580 char transliterateChar2Char([in] char cChar) raises (::com::sun::star::i18n::MultipleCharsOutputException);
8582 published service Transliteration: ::com::sun::star::i18n::XExtendedTransliteration;
8583 published constants TransliterationType {
8584 const short CASCADE = 8;
8585 const short IGNORE = 4;
8586 const short NONE = 0;
8587 const short NUMERIC = 2;
8588 const short ONE_TO_ONE = 1;
8589 const short ONE_TO_ONE_NUMERIC = 3;
8591 published enum UnicodeScript {
8592 kBasicLatin = 0,
8593 kLatin1Supplement = 1,
8594 kLatinExtendedA = 2,
8595 kLatinExtendedB = 3,
8596 kIPAExtension = 4,
8597 kSpacingModifier = 5,
8598 kCombiningDiacritical = 6,
8599 kGreek = 7,
8600 kCyrillic = 8,
8601 kArmenian = 9,
8602 kHebrew = 10,
8603 kArabic = 11,
8604 kSyriac = 12,
8605 kThaana = 13,
8606 kDevanagari = 14,
8607 kBengali = 15,
8608 kGurmukhi = 16,
8609 kGujarati = 17,
8610 kOriya = 18,
8611 kTamil = 19,
8612 kTelugu = 20,
8613 kKannada = 21,
8614 kMalayalam = 22,
8615 kSinhala = 23,
8616 kThai = 24,
8617 kLao = 25,
8618 kTibetan = 26,
8619 kMyanmar = 27,
8620 kGeorgian = 28,
8621 kHangulJamo = 29,
8622 kEthiopic = 30,
8623 kCherokee = 31,
8624 kUnifiedCanadianAboriginalSyllabics = 32,
8625 kOgham = 33,
8626 kRunic = 34,
8627 kKhmer = 35,
8628 kMongolian = 36,
8629 kLatinExtendedAdditional = 37,
8630 kGreekExtended = 38,
8631 kGeneralPunctuation = 39,
8632 kSuperSubScript = 40,
8633 kCurrencySymbolScript = 41,
8634 kSymbolCombiningMark = 42,
8635 kLetterlikeSymbol = 43,
8636 kNumberForm = 44,
8637 kArrow = 45,
8638 kMathOperator = 46,
8639 kMiscTechnical = 47,
8640 kControlPicture = 48,
8641 kOpticalCharacter = 49,
8642 kEnclosedAlphanumeric = 50,
8643 kBoxDrawing = 51,
8644 kBlockElement = 52,
8645 kGeometricShape = 53,
8646 kMiscSymbol = 54,
8647 kDingbat = 55,
8648 kBraillePatterns = 56,
8649 kCJKRadicalsSupplement = 57,
8650 kKangxiRadicals = 58,
8651 kIdeographicDescriptionCharacters = 59,
8652 kCJKSymbolPunctuation = 60,
8653 kHiragana = 61,
8654 kKatakana = 62,
8655 kBopomofo = 63,
8656 kHangulCompatibilityJamo = 64,
8657 kKanbun = 65,
8658 kBopomofoExtended = 66,
8659 kEnclosedCJKLetterMonth = 67,
8660 kCJKCompatibility = 68,
8661 kCJKUnifiedIdeographsExtensionA = 69,
8662 kCJKUnifiedIdeograph = 70,
8663 kYiSyllables = 71,
8664 kYiRadicals = 72,
8665 kHangulSyllable = 73,
8666 kHighSurrogate = 74,
8667 kHighPrivateUseSurrogate = 75,
8668 kLowSurrogate = 76,
8669 kPrivateUse = 77,
8670 kCJKCompatibilityIdeograph = 78,
8671 kAlphabeticPresentation = 79,
8672 kArabicPresentationA = 80,
8673 kCombiningHalfMark = 81,
8674 kCJKCompatibilityForm = 82,
8675 kSmallFormVariant = 83,
8676 kArabicPresentationB = 84,
8677 kNoScript = 85,
8678 kHalfwidthFullwidthForm = 86,
8679 kScriptCount = 87
8681 published constants UnicodeType {
8682 const short COMBINING_SPACING_MARK = 8;
8683 const short CONNECTOR_PUNCTUATION = 22;
8684 const short CONTROL = 15;
8685 const short CURRENCY_SYMBOL = 25;
8686 const short DASH_PUNCTUATION = 19;
8687 const short DECIMAL_DIGIT_NUMBER = 9;
8688 const short ENCLOSING_MARK = 7;
8689 const short END_PUNCTUATION = 29;
8690 const short FINAL_PUNCTUATION = 21;
8691 const short FORMAT = 16;
8692 const short GENERAL_TYPES_COUNT = 30;
8693 const short INITIAL_PUNCTUATION = 20;
8694 const short LETTER_NUMBER = 10;
8695 const short LINE_SEPARATOR = 13;
8696 const short LOWERCASE_LETTER = 2;
8697 const short MATH_SYMBOL = 24;
8698 const short MODIFIER_LETTER = 4;
8699 const short MODIFIER_SYMBOL = 26;
8700 const short NON_SPACING_MARK = 6;
8701 const short OTHER_LETTER = 5;
8702 const short OTHER_NUMBER = 11;
8703 const short OTHER_PUNCTUATION = 23;
8704 const short OTHER_SYMBOL = 27;
8705 const short PARAGRAPH_SEPARATOR = 14;
8706 const short PRIVATE_USE = 17;
8707 const short SPACE_SEPARATOR = 12;
8708 const short START_PUNCTUATION = 28;
8709 const short SURROGATE = 18;
8710 const short TITLECASE_LETTER = 3;
8711 const short UNASSIGNED = 0;
8712 const short UPPERCASE_LETTER = 1;
8714 published constants Weekdays {
8715 const short FRIDAY = 5;
8716 const short MONDAY = 1;
8717 const short SATURDAY = 6;
8718 const short SUNDAY = 0;
8719 const short THURSDAY = 4;
8720 const short TUESDAY = 2;
8721 const short WEDNESDAY = 3;
8723 published constants WordType {
8724 const short ANYWORD_IGNOREWHITESPACES = 1;
8725 const short ANY_WORD = 0;
8726 const short DICTIONARY_WORD = 2;
8727 const short WORD_COUNT = 3;
8729 published interface XForbiddenCharacters {
8730 interface ::com::sun::star::uno::XInterface;
8731 ::com::sun::star::i18n::ForbiddenCharacters getForbiddenCharacters([in] ::com::sun::star::lang::Locale aLocale) raises (::com::sun::star::container::NoSuchElementException);
8732 boolean hasForbiddenCharacters([in] ::com::sun::star::lang::Locale aLocale);
8733 void setForbiddenCharacters([in] ::com::sun::star::lang::Locale aLocale, [in] ::com::sun::star::i18n::ForbiddenCharacters aForbiddenCharacters);
8734 void removeForbiddenCharacters([in] ::com::sun::star::lang::Locale aLocale);
8736 published interface XScriptTypeDetector {
8737 interface ::com::sun::star::uno::XInterface;
8738 long beginOfScriptDirection([in] string aText, [in] long nPos, [in] short nScriptDirection);
8739 long endOfScriptDirection([in] string aText, [in] long nPos, [in] short nScriptDirection);
8740 short getScriptDirection([in] string aText, [in] long nPos, [in] short nDefaultScriptDirection);
8741 long beginOfCTLScriptType([in] string aText, [in] long nPos);
8742 long endOfCTLScriptType([in] string aText, [in] long nPos);
8743 short getCTLScriptType([in] string aText, [in] long nPos);
8745 published constants reservedWords {
8746 const short ABOVE_WORD = 6;
8747 const short BELOW_WORD = 7;
8748 const short COUNT = 12;
8749 const short FALSE_WORD = 1;
8750 const short QUARTER1_ABBREVIATION = 8;
8751 const short QUARTER1_WORD = 2;
8752 const short QUARTER2_ABBREVIATION = 9;
8753 const short QUARTER2_WORD = 3;
8754 const short QUARTER3_ABBREVIATION = 10;
8755 const short QUARTER3_WORD = 4;
8756 const short QUARTER4_ABBREVIATION = 11;
8757 const short QUARTER4_WORD = 5;
8758 const short TRUE_WORD = 0;
8761 module image {
8762 published service ImageMap {
8763 interface ::com::sun::star::container::XNamed;
8764 interface ::com::sun::star::container::XIndexContainer;
8766 published service ImageMapObject {
8767 interface ::com::sun::star::beans::XPropertySet;
8768 interface ::com::sun::star::document::XEventsSupplier;
8769 [property] string URL;
8770 [property] string Description;
8771 [property] string Target;
8772 [property] string Name;
8773 [property] boolean IsActive;
8775 published service ImageMapCircleObject {
8776 service ::com::sun::star::image::ImageMapObject;
8777 [property] ::com::sun::star::awt::Point Center;
8778 [property] long Radius;
8780 published service ImageMapPolygonObject {
8781 service ::com::sun::star::image::ImageMapObject;
8782 [property] ::com::sun::star::drawing::PointSequence Polygon;
8784 published service ImageMapRectangleObject {
8785 service ::com::sun::star::image::ImageMapObject;
8786 [property] ::com::sun::star::awt::Rectangle Boundary;
8789 module ldap {
8790 published exception LdapConnectionException: ::com::sun::star::uno::Exception {
8792 published exception LdapGenericException: ::com::sun::star::uno::Exception {
8793 long ErrorCode;
8796 module linguistic2 {
8797 published enum ConversionDirection {
8798 FROM_LEFT = 0,
8799 FROM_RIGHT = 1
8801 published interface XConversionDictionary {
8802 interface ::com::sun::star::uno::XInterface;
8803 string getName();
8804 ::com::sun::star::lang::Locale getLocale();
8805 short getConversionType();
8806 void setActive([in] boolean bActivate);
8807 boolean isActive();
8808 void clear();
8809 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);
8810 void addEntry([in] string aLeftText, [in] string aRightText) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::ElementExistException);
8811 void removeEntry([in] string aLeftText, [in] string aRightText) raises (::com::sun::star::container::NoSuchElementException);
8812 short getMaxCharCount([in] ::com::sun::star::linguistic2::ConversionDirection eDirection);
8813 sequence< string > getConversionEntries([in] ::com::sun::star::linguistic2::ConversionDirection eDirection);
8815 published interface XConversionPropertyType {
8816 interface ::com::sun::star::uno::XInterface;
8817 void setPropertyType([in] string aLeftText, [in] string aRightText, [in] short nPropertyType) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::IllegalArgumentException);
8818 short getPropertyType([in] string aLeftText, [in] string aRightText) raises (::com::sun::star::container::NoSuchElementException);
8820 published service ConversionDictionary {
8821 interface ::com::sun::star::linguistic2::XConversionDictionary;
8822 [optional] interface ::com::sun::star::util::XFlushable;
8823 [optional] interface ::com::sun::star::linguistic2::XConversionPropertyType;
8825 published interface XConversionDictionaryList {
8826 interface ::com::sun::star::uno::XInterface;
8827 ::com::sun::star::container::XNameContainer getDictionaryContainer();
8828 ::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);
8829 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);
8830 short queryMaxCharCount([in] ::com::sun::star::lang::Locale aLocale, [in] short nConversionDictionaryType, [in] ::com::sun::star::linguistic2::ConversionDirection eDirection);
8832 published service ConversionDictionaryList: ::com::sun::star::linguistic2::XConversionDictionaryList;
8833 published enum DictionaryType {
8834 POSITIVE = 0,
8835 NEGATIVE = 1,
8836 /** @deprecated */ MIXED = 2
8838 published interface XDictionaryEntry;
8839 published interface XDictionaryEventListener;
8840 published interface XDictionary {
8841 interface ::com::sun::star::container::XNamed;
8842 ::com::sun::star::linguistic2::DictionaryType getDictionaryType();
8843 void setActive([in] boolean bActivate);
8844 boolean isActive();
8845 long getCount();
8846 ::com::sun::star::lang::Locale getLocale();
8847 void setLocale([in] ::com::sun::star::lang::Locale aLocale);
8848 ::com::sun::star::linguistic2::XDictionaryEntry getEntry([in] string aWord);
8849 boolean addEntry([in] ::com::sun::star::linguistic2::XDictionaryEntry xDicEntry);
8850 boolean add([in] string aWord, [in] boolean bIsNegative, [in] string aRplcText);
8851 boolean remove([in] string aWord);
8852 boolean isFull();
8853 /** @deprecated */ sequence< ::com::sun::star::linguistic2::XDictionaryEntry > getEntries();
8854 void clear();
8855 boolean addDictionaryEventListener([in] ::com::sun::star::linguistic2::XDictionaryEventListener xListener);
8856 boolean removeDictionaryEventListener([in] ::com::sun::star::linguistic2::XDictionaryEventListener xListener);
8858 published struct DictionaryEvent: ::com::sun::star::lang::EventObject {
8859 short nEvent;
8860 ::com::sun::star::linguistic2::XDictionaryEntry xDictionaryEntry;
8862 published constants DictionaryEventFlags {
8863 const short ACTIVATE_DIC = 32;
8864 const short ADD_ENTRY = 1;
8865 const short CHG_LANGUAGE = 8;
8866 const short CHG_NAME = 4;
8867 const short DEACTIVATE_DIC = 64;
8868 const short DEL_ENTRY = 2;
8869 const short ENTRIES_CLEARED = 16;
8871 published interface XDictionaryListEventListener;
8872 published interface XDictionaryList {
8873 interface ::com::sun::star::uno::XInterface;
8874 short getCount();
8875 sequence< ::com::sun::star::linguistic2::XDictionary > getDictionaries();
8876 ::com::sun::star::linguistic2::XDictionary getDictionaryByName([in] string aDictionaryName);
8877 boolean addDictionary([in] ::com::sun::star::linguistic2::XDictionary xDictionary);
8878 boolean removeDictionary([in] ::com::sun::star::linguistic2::XDictionary xDictionary);
8879 boolean addDictionaryListEventListener([in] ::com::sun::star::linguistic2::XDictionaryListEventListener xListener, [in] boolean bReceiveVerbose);
8880 boolean removeDictionaryListEventListener([in] ::com::sun::star::linguistic2::XDictionaryListEventListener xListener);
8881 short beginCollectEvents();
8882 short endCollectEvents();
8883 short flushEvents();
8884 ::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);
8886 published interface XSearchableDictionaryList {
8887 interface ::com::sun::star::linguistic2::XDictionaryList;
8888 ::com::sun::star::linguistic2::XDictionaryEntry queryDictionaryEntry([in] string aWord, [in] ::com::sun::star::lang::Locale aLocale, [in] boolean bSearchPosDics, [in] boolean bSpellEntry);
8890 published service DictionaryList: ::com::sun::star::linguistic2::XSearchableDictionaryList;
8891 published struct DictionaryListEvent: ::com::sun::star::lang::EventObject {
8892 short nCondensedEvent;
8893 sequence< ::com::sun::star::linguistic2::DictionaryEvent > aDictionaryEvents;
8895 published constants DictionaryListEventFlags {
8896 const short ACTIVATE_NEG_DIC = 64;
8897 const short ACTIVATE_POS_DIC = 16;
8898 const short ADD_NEG_ENTRY = 4;
8899 const short ADD_POS_ENTRY = 1;
8900 const short DEACTIVATE_NEG_DIC = 128;
8901 const short DEACTIVATE_POS_DIC = 32;
8902 const short DEL_NEG_ENTRY = 8;
8903 const short DEL_POS_ENTRY = 2;
8905 published service HangulHanjaConversionDictionary {
8906 service ::com::sun::star::linguistic2::ConversionDictionary;
8908 published interface XSupportedLocales {
8909 interface ::com::sun::star::uno::XInterface;
8910 sequence< ::com::sun::star::lang::Locale > getLocales();
8911 boolean hasLocale([in] ::com::sun::star::lang::Locale aLocale);
8913 published interface XPossibleHyphens;
8914 published interface XHyphenator {
8915 interface ::com::sun::star::linguistic2::XSupportedLocales;
8916 ::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);
8917 ::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);
8918 ::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);
8920 published interface XLinguServiceEventListener;
8921 published interface XLinguServiceEventBroadcaster {
8922 interface ::com::sun::star::uno::XInterface;
8923 boolean addLinguServiceEventListener([in] ::com::sun::star::linguistic2::XLinguServiceEventListener xLstnr);
8924 boolean removeLinguServiceEventListener([in] ::com::sun::star::linguistic2::XLinguServiceEventListener xLstnr);
8926 published service Hyphenator {
8927 interface ::com::sun::star::linguistic2::XHyphenator;
8928 interface ::com::sun::star::linguistic2::XLinguServiceEventBroadcaster;
8929 interface ::com::sun::star::lang::XInitialization;
8930 interface ::com::sun::star::lang::XComponent;
8931 interface ::com::sun::star::lang::XServiceDisplayName;
8933 published interface XLinguProperties {
8934 interface ::com::sun::star::beans::XPropertySet;
8935 [attribute] boolean IsUseDictionaryList;
8936 [attribute] boolean IsIgnoreControlCharacters;
8937 [attribute] boolean IsSpellUpperCase;
8938 [attribute] boolean IsSpellWithDigits;
8939 /** @deprecated */ [attribute] boolean IsSpellCapitalization;
8940 [attribute] short HyphMinLeading;
8941 [attribute] short HyphMinTrailing;
8942 [attribute] short HyphMinWordLength;
8943 [attribute] ::com::sun::star::lang::Locale DefaultLocale;
8944 [attribute] boolean IsHyphAuto;
8945 [attribute] boolean IsHyphSpecial;
8946 [attribute] boolean IsSpellAuto;
8947 [attribute] boolean IsSpellSpecial;
8948 [attribute] boolean IsWrapReverse;
8949 [attribute] ::com::sun::star::lang::Locale DefaultLocale_CJK;
8950 [attribute] ::com::sun::star::lang::Locale DefaultLocale_CTL;
8952 published service LinguProperties: ::com::sun::star::linguistic2::XLinguProperties;
8953 published struct LinguServiceEvent: ::com::sun::star::lang::EventObject {
8954 short nEvent;
8956 published constants LinguServiceEventFlags {
8957 const short HYPHENATE_AGAIN = 4;
8958 const short PROOFREAD_AGAIN = 8;
8959 const short SPELL_CORRECT_WORDS_AGAIN = 1;
8960 const short SPELL_WRONG_WORDS_AGAIN = 2;
8962 published interface XAvailableLocales {
8963 interface ::com::sun::star::uno::XInterface;
8964 sequence< ::com::sun::star::lang::Locale > getAvailableLocales([in] string aServiceName);
8966 published interface XSpellChecker;
8967 published interface XThesaurus;
8968 published interface XLinguServiceManager {
8969 interface ::com::sun::star::uno::XInterface;
8970 ::com::sun::star::linguistic2::XSpellChecker getSpellChecker();
8971 ::com::sun::star::linguistic2::XHyphenator getHyphenator();
8972 ::com::sun::star::linguistic2::XThesaurus getThesaurus();
8973 boolean addLinguServiceManagerListener([in] ::com::sun::star::lang::XEventListener xListener);
8974 boolean removeLinguServiceManagerListener([in] ::com::sun::star::lang::XEventListener xListener);
8975 sequence< string > getAvailableServices([in] string aServiceName, [in] ::com::sun::star::lang::Locale aLocale);
8976 void setConfiguredServices([in] string aServiceName, [in] ::com::sun::star::lang::Locale aLocale, [in] sequence< string > aServiceImplNames);
8977 sequence< string > getConfiguredServices([in] string aServiceName, [in] ::com::sun::star::lang::Locale aLocale);
8979 published interface XLinguServiceManager2 {
8980 interface ::com::sun::star::linguistic2::XLinguServiceManager;
8981 interface ::com::sun::star::linguistic2::XAvailableLocales;
8982 interface ::com::sun::star::lang::XComponent;
8984 published service LinguServiceManager: ::com::sun::star::linguistic2::XLinguServiceManager2;
8985 published interface XSpellAlternatives;
8986 published interface XSpellChecker {
8987 interface ::com::sun::star::linguistic2::XSupportedLocales;
8988 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);
8989 ::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);
8991 published service SpellChecker {
8992 interface ::com::sun::star::linguistic2::XSpellChecker;
8993 interface ::com::sun::star::linguistic2::XLinguServiceEventBroadcaster;
8994 interface ::com::sun::star::lang::XInitialization;
8995 interface ::com::sun::star::lang::XComponent;
8996 interface ::com::sun::star::lang::XServiceDisplayName;
8998 published constants SpellFailure {
8999 const short CAPTION_ERROR = 3;
9000 const short IS_NEGATIVE_WORD = 2;
9001 const short SPELLING_ERROR = 4;
9003 published interface XMeaning;
9004 published interface XThesaurus {
9005 interface ::com::sun::star::linguistic2::XSupportedLocales;
9006 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);
9008 published service Thesaurus {
9009 interface ::com::sun::star::linguistic2::XThesaurus;
9010 interface ::com::sun::star::lang::XInitialization;
9011 interface ::com::sun::star::lang::XComponent;
9012 interface ::com::sun::star::lang::XServiceDisplayName;
9014 /** @deprecated */ published interface XDictionary1 {
9015 interface ::com::sun::star::container::XNamed;
9016 ::com::sun::star::linguistic2::DictionaryType getDictionaryType();
9017 void setActive([in] boolean bActivate);
9018 boolean isActive();
9019 short getCount();
9020 short getLanguage();
9021 void setLanguage([in] short nLang);
9022 ::com::sun::star::linguistic2::XDictionaryEntry getEntry([in] string aWord);
9023 boolean addEntry([in] ::com::sun::star::linguistic2::XDictionaryEntry xDicEntry);
9024 boolean add([in] string aWord, [in] boolean bIsNegative, [in] string aRplcText);
9025 boolean remove([in] string aWord);
9026 boolean isFull();
9027 sequence< ::com::sun::star::linguistic2::XDictionaryEntry > getEntries();
9028 void clear();
9029 boolean addDictionaryEventListener([in] ::com::sun::star::linguistic2::XDictionaryEventListener xListener);
9030 boolean removeDictionaryEventListener([in] ::com::sun::star::linguistic2::XDictionaryEventListener xListener);
9032 published interface XDictionaryEntry {
9033 interface ::com::sun::star::uno::XInterface;
9034 string getDictionaryWord();
9035 boolean isNegative();
9036 string getReplacementText();
9038 published interface XDictionaryEventListener {
9039 interface ::com::sun::star::lang::XEventListener;
9040 void processDictionaryEvent([in] ::com::sun::star::linguistic2::DictionaryEvent aDicEvent);
9042 published interface XDictionaryListEventListener {
9043 interface ::com::sun::star::lang::XEventListener;
9044 void processDictionaryListEvent([in] ::com::sun::star::linguistic2::DictionaryListEvent aDicListEvent);
9046 published interface XHyphenatedWord {
9047 interface ::com::sun::star::uno::XInterface;
9048 string getWord();
9049 ::com::sun::star::lang::Locale getLocale();
9050 short getHyphenationPos();
9051 string getHyphenatedWord();
9052 short getHyphenPos();
9053 boolean isAlternativeSpelling();
9055 published interface XLinguServiceEventListener {
9056 interface ::com::sun::star::lang::XEventListener;
9057 void processLinguServiceEvent([in] ::com::sun::star::linguistic2::LinguServiceEvent aLngSvcEvent);
9059 published interface XMeaning {
9060 interface ::com::sun::star::uno::XInterface;
9061 string getMeaning();
9062 sequence< string > querySynonyms();
9064 published interface XPossibleHyphens {
9065 interface ::com::sun::star::uno::XInterface;
9066 string getWord();
9067 ::com::sun::star::lang::Locale getLocale();
9068 string getPossibleHyphens();
9069 sequence< short > getHyphenationPositions();
9071 published interface XSpellAlternatives {
9072 interface ::com::sun::star::uno::XInterface;
9073 string getWord();
9074 ::com::sun::star::lang::Locale getLocale();
9075 short getFailureType();
9076 short getAlternativesCount();
9077 sequence< string > getAlternatives();
9079 /** @deprecated */ published interface XSupportedLanguages {
9080 interface ::com::sun::star::uno::XInterface;
9081 sequence< short > getLanguages();
9082 boolean hasLanguage([in] short nLanguage);
9084 /** @deprecated */ published interface XSpellChecker1 {
9085 interface ::com::sun::star::linguistic2::XSupportedLanguages;
9086 boolean isValid([in] string aWord, [in] short nLanguage, [in] ::com::sun::star::beans::PropertyValues aProperties) raises (::com::sun::star::lang::IllegalArgumentException);
9087 ::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);
9090 module mozilla {
9091 published struct MenuMultipleChange {
9092 short ID;
9093 short GroupID;
9094 short PreItemID;
9095 string ItemText;
9096 boolean IsVisible;
9097 boolean IsActive;
9098 boolean IsCheckable;
9099 boolean IsChecked;
9100 sequence< byte > Image;
9102 published interface XMenuProxyListener;
9103 published interface XMenuProxy {
9104 interface ::com::sun::star::lang::XComponent;
9105 void executeMenuItem([in] short ID);
9106 void addMenuProxyListener([in] ::com::sun::star::mozilla::XMenuProxyListener xListener);
9107 void removeMenuProxyListener([in] ::com::sun::star::mozilla::XMenuProxyListener xListener);
9109 published service MenuProxy {
9110 interface ::com::sun::star::mozilla::XMenuProxy;
9112 published struct MenuSingleChange {
9113 short ID;
9114 short ChangeID;
9115 any Change;
9117 published interface XMenuProxyListener {
9118 interface ::com::sun::star::uno::XInterface;
9119 void menuChangedMultiple([in] sequence< ::com::sun::star::mozilla::MenuMultipleChange > MenuMultipleChanges);
9120 void menuChangedSingle([in] sequence< ::com::sun::star::mozilla::MenuSingleChange > MenuSingleChanges);
9121 void menuItemDeleted([in] short ID);
9123 published service MenuProxyListener {
9124 interface ::com::sun::star::mozilla::XMenuProxyListener;
9126 published enum MozillaProductType {
9127 Default = 0,
9128 Mozilla = 1,
9129 Firefox = 2,
9130 Thunderbird = 3
9132 published interface XProfileDiscover {
9133 interface ::com::sun::star::uno::XInterface;
9134 long getProfileCount([in] ::com::sun::star::mozilla::MozillaProductType product);
9135 long getProfileList([in] ::com::sun::star::mozilla::MozillaProductType product, [out] sequence< string > list);
9136 string getDefaultProfile([in] ::com::sun::star::mozilla::MozillaProductType product);
9137 string getProfilePath([in] ::com::sun::star::mozilla::MozillaProductType product, [in] string profileName);
9138 boolean isProfileLocked([in] ::com::sun::star::mozilla::MozillaProductType product, [in] string profileName);
9139 boolean getProfileExists([in] ::com::sun::star::mozilla::MozillaProductType product, [in] string profileName);
9141 published interface XProfileManager {
9142 interface ::com::sun::star::uno::XInterface;
9143 long bootupProfile([in] ::com::sun::star::mozilla::MozillaProductType product, [in] string profileName);
9144 long shutdownProfile();
9145 ::com::sun::star::mozilla::MozillaProductType getCurrentProduct();
9146 string getCurrentProfile();
9147 boolean isCurrentProfileLocked();
9148 string setCurrentProfile([in] ::com::sun::star::mozilla::MozillaProductType product, [in] string profileName);
9150 published interface XCodeProxy;
9151 published interface XProxyRunner {
9152 interface ::com::sun::star::uno::XInterface;
9153 long Run([in] ::com::sun::star::mozilla::XCodeProxy aCode);
9155 published interface XMozillaBootstrap {
9156 interface ::com::sun::star::mozilla::XProfileDiscover;
9157 interface ::com::sun::star::mozilla::XProfileManager;
9158 interface ::com::sun::star::mozilla::XProxyRunner;
9160 published service MozillaBootstrap: ::com::sun::star::mozilla::XMozillaBootstrap;
9161 published interface XCloseSessionListener {
9162 interface ::com::sun::star::uno::XInterface;
9163 void sessionClosed([in] any sessionData);
9165 published interface XCodeProxy {
9166 interface ::com::sun::star::uno::XInterface;
9167 long run();
9168 ::com::sun::star::mozilla::MozillaProductType getProductType();
9169 string getProfileName();
9172 module packages {
9173 published service Package {
9174 interface ::com::sun::star::lang::XInitialization;
9175 interface ::com::sun::star::container::XHierarchicalNameAccess;
9176 interface ::com::sun::star::lang::XSingleServiceFactory;
9177 interface ::com::sun::star::util::XChangesBatch;
9179 published service PackageFolder {
9180 interface ::com::sun::star::container::XNamed;
9181 interface ::com::sun::star::container::XChild;
9182 interface ::com::sun::star::container::XNameContainer;
9183 interface ::com::sun::star::container::XEnumerationAccess;
9184 interface ::com::sun::star::beans::XPropertySet;
9186 published service PackageFolderEnumeration {
9187 interface ::com::sun::star::container::XEnumeration;
9189 published service PackageStream {
9190 interface ::com::sun::star::container::XNamed;
9191 interface ::com::sun::star::container::XChild;
9192 interface ::com::sun::star::io::XActiveDataSink;
9193 interface ::com::sun::star::beans::XPropertySet;
9195 module zip {
9196 published exception ZipException: ::com::sun::star::uno::Exception {
9199 module manifest {
9200 published interface XManifestReader {
9201 interface ::com::sun::star::uno::XInterface;
9202 sequence< sequence< ::com::sun::star::beans::PropertyValue > > readManifestSequence([in] ::com::sun::star::io::XInputStream rStream);
9204 published service ManifestReader: ::com::sun::star::packages::manifest::XManifestReader;
9205 published interface XManifestWriter {
9206 interface ::com::sun::star::uno::XInterface;
9207 void writeManifestSequence([in] ::com::sun::star::io::XOutputStream rStream, [in] sequence< sequence< ::com::sun::star::beans::PropertyValue > > rSequence);
9209 published service ManifestWriter: ::com::sun::star::packages::manifest::XManifestWriter;
9211 module zip {
9212 published constants ZipConstants {
9213 const short BEST_COMPRESSION = 9;
9214 const short BEST_SPEED = 1;
9215 const short CENATT = 36;
9216 const short CENATX = 38;
9217 const short CENCOM = 32;
9218 const short CENCRC = 16;
9219 const short CENDAT = 14;
9220 const short CENDSK = 34;
9221 const short CENEXT = 30;
9222 const short CENFLG = 8;
9223 const short CENHDR = 46;
9224 const short CENHOW = 10;
9225 const short CENLEN = 24;
9226 const short CENNAM = 28;
9227 const short CENOFF = 42;
9228 const long CENSIG = 33639248;
9229 const short CENSIZ = 20;
9230 const short CENTIM = 12;
9231 const short CENVEM = 4;
9232 const short CENVER = 6;
9233 const short DEFAULT_COMPRESSION = -1;
9234 const short DEFAULT_STRATEGY = 0;
9235 const short DEFLATED = 8;
9236 const short DEF_MEM_LEVEL = 8;
9237 const short ENDCOM = 20;
9238 const short ENDHDR = 22;
9239 const short ENDOFF = 16;
9240 const long ENDSIG = 101010256;
9241 const short ENDSIZ = 12;
9242 const short ENDSUB = 8;
9243 const short ENDTOT = 10;
9244 const short EXTCRC = 4;
9245 const short EXTHDR = 16;
9246 const short EXTLEN = 12;
9247 const long EXTSIG = 134695760;
9248 const short EXTSIZ = 8;
9249 const short FILTERED = 1;
9250 const short HUFFMAN_ONLY = 2;
9251 const short LOCCRC = 14;
9252 const short LOCEXT = 28;
9253 const short LOCFLG = 6;
9254 const short LOCHDR = 30;
9255 const short LOCHOW = 8;
9256 const short LOCLEN = 22;
9257 const short LOCNAM = 26;
9258 const long LOCSIG = 67324752;
9259 const short LOCSIZ = 18;
9260 const short LOCTIM = 10;
9261 const short LOCVER = 4;
9262 const short NO_COMPRESSION = 0;
9263 const long SPANSIG = 134695760;
9264 const short STORED = 0;
9266 published struct ZipEntry {
9267 short nVersion;
9268 short nFlag;
9269 short nMethod;
9270 long nTime;
9271 long nCrc;
9272 long nCompressedSize;
9273 long nSize;
9274 long nOffset;
9275 short nDiskNumber;
9276 string sName;
9277 sequence< byte > extra;
9278 string sComment;
9282 module task {
9283 published enum InteractionClassification {
9284 ERROR = 0,
9285 WARNING = 1,
9286 INFO = 2,
9287 QUERY = 3
9289 published exception ClassifiedInteractionRequest: ::com::sun::star::uno::Exception {
9290 ::com::sun::star::task::InteractionClassification Classification;
9293 module ucb {
9294 published enum IOErrorCode {
9295 ABORT = 0,
9296 ACCESS_DENIED = 1,
9297 ALREADY_EXISTING = 2,
9298 BAD_CRC = 3,
9299 CANT_CREATE = 4,
9300 CANT_READ = 5,
9301 CANT_SEEK = 6,
9302 CANT_TELL = 7,
9303 CANT_WRITE = 8,
9304 CURRENT_DIRECTORY = 9,
9305 DEVICE_NOT_READY = 10,
9306 DIFFERENT_DEVICES = 11,
9307 GENERAL = 12,
9308 INVALID_ACCESS = 13,
9309 INVALID_CHARACTER = 14,
9310 INVALID_DEVICE = 15,
9311 INVALID_LENGTH = 16,
9312 INVALID_PARAMETER = 17,
9313 IS_WILDCARD = 18,
9314 LOCKING_VIOLATION = 19,
9315 MISPLACED_CHARACTER = 20,
9316 NAME_TOO_LONG = 21,
9317 NOT_EXISTING = 22,
9318 NOT_EXISTING_PATH = 23,
9319 NOT_SUPPORTED = 24,
9320 NO_DIRECTORY = 25,
9321 NO_FILE = 26,
9322 OUT_OF_DISK_SPACE = 27,
9323 OUT_OF_FILE_HANDLES = 28,
9324 OUT_OF_MEMORY = 29,
9325 PENDING = 30,
9326 RECURSIVE = 31,
9327 UNKNOWN = 32,
9328 WRITE_PROTECTED = 33,
9329 WRONG_FORMAT = 34,
9330 WRONG_VERSION = 35
9332 published exception InteractiveIOException: ::com::sun::star::task::ClassifiedInteractionRequest {
9333 ::com::sun::star::ucb::IOErrorCode Code;
9336 module packages {
9337 module zip {
9338 published exception ZipIOException: ::com::sun::star::io::IOException {
9342 module presentation {
9343 published enum AnimationEffect {
9344 NONE = 0,
9345 FADE_FROM_LEFT = 1,
9346 FADE_FROM_TOP = 2,
9347 FADE_FROM_RIGHT = 3,
9348 FADE_FROM_BOTTOM = 4,
9349 FADE_TO_CENTER = 5,
9350 FADE_FROM_CENTER = 6,
9351 MOVE_FROM_LEFT = 7,
9352 MOVE_FROM_TOP = 8,
9353 MOVE_FROM_RIGHT = 9,
9354 MOVE_FROM_BOTTOM = 10,
9355 VERTICAL_STRIPES = 11,
9356 HORIZONTAL_STRIPES = 12,
9357 CLOCKWISE = 13,
9358 COUNTERCLOCKWISE = 14,
9359 FADE_FROM_UPPERLEFT = 15,
9360 FADE_FROM_UPPERRIGHT = 16,
9361 FADE_FROM_LOWERLEFT = 17,
9362 FADE_FROM_LOWERRIGHT = 18,
9363 CLOSE_VERTICAL = 19,
9364 CLOSE_HORIZONTAL = 20,
9365 OPEN_VERTICAL = 21,
9366 OPEN_HORIZONTAL = 22,
9367 PATH = 23,
9368 MOVE_TO_LEFT = 24,
9369 MOVE_TO_TOP = 25,
9370 MOVE_TO_RIGHT = 26,
9371 MOVE_TO_BOTTOM = 27,
9372 SPIRALIN_LEFT = 28,
9373 SPIRALIN_RIGHT = 29,
9374 SPIRALOUT_LEFT = 30,
9375 SPIRALOUT_RIGHT = 31,
9376 DISSOLVE = 32,
9377 WAVYLINE_FROM_LEFT = 33,
9378 WAVYLINE_FROM_TOP = 34,
9379 WAVYLINE_FROM_RIGHT = 35,
9380 WAVYLINE_FROM_BOTTOM = 36,
9381 RANDOM = 37,
9382 VERTICAL_LINES = 38,
9383 HORIZONTAL_LINES = 39,
9384 LASER_FROM_LEFT = 40,
9385 LASER_FROM_TOP = 41,
9386 LASER_FROM_RIGHT = 42,
9387 LASER_FROM_BOTTOM = 43,
9388 LASER_FROM_UPPERLEFT = 44,
9389 LASER_FROM_UPPERRIGHT = 45,
9390 LASER_FROM_LOWERLEFT = 46,
9391 LASER_FROM_LOWERRIGHT = 47,
9392 APPEAR = 48,
9393 HIDE = 49,
9394 MOVE_FROM_UPPERLEFT = 50,
9395 MOVE_FROM_UPPERRIGHT = 51,
9396 MOVE_FROM_LOWERRIGHT = 52,
9397 MOVE_FROM_LOWERLEFT = 53,
9398 MOVE_TO_UPPERLEFT = 54,
9399 MOVE_TO_UPPERRIGHT = 55,
9400 MOVE_TO_LOWERRIGHT = 56,
9401 MOVE_TO_LOWERLEFT = 57,
9402 MOVE_SHORT_FROM_LEFT = 58,
9403 MOVE_SHORT_FROM_UPPERLEFT = 59,
9404 MOVE_SHORT_FROM_TOP = 60,
9405 MOVE_SHORT_FROM_UPPERRIGHT = 61,
9406 MOVE_SHORT_FROM_RIGHT = 62,
9407 MOVE_SHORT_FROM_LOWERRIGHT = 63,
9408 MOVE_SHORT_FROM_BOTTOM = 64,
9409 MOVE_SHORT_FROM_LOWERLEFT = 65,
9410 MOVE_SHORT_TO_LEFT = 66,
9411 MOVE_SHORT_TO_UPPERLEFT = 67,
9412 MOVE_SHORT_TO_TOP = 68,
9413 MOVE_SHORT_TO_UPPERRIGHT = 69,
9414 MOVE_SHORT_TO_RIGHT = 70,
9415 MOVE_SHORT_TO_LOWERRIGHT = 71,
9416 MOVE_SHORT_TO_BOTTOM = 72,
9417 MOVE_SHORT_TO_LOWERLEFT = 73,
9418 VERTICAL_CHECKERBOARD = 74,
9419 HORIZONTAL_CHECKERBOARD = 75,
9420 HORIZONTAL_ROTATE = 76,
9421 VERTICAL_ROTATE = 77,
9422 HORIZONTAL_STRETCH = 78,
9423 VERTICAL_STRETCH = 79,
9424 STRETCH_FROM_LEFT = 80,
9425 STRETCH_FROM_UPPERLEFT = 81,
9426 STRETCH_FROM_TOP = 82,
9427 STRETCH_FROM_UPPERRIGHT = 83,
9428 STRETCH_FROM_RIGHT = 84,
9429 STRETCH_FROM_LOWERRIGHT = 85,
9430 STRETCH_FROM_BOTTOM = 86,
9431 STRETCH_FROM_LOWERLEFT = 87,
9432 ZOOM_IN = 88,
9433 ZOOM_IN_SMALL = 89,
9434 ZOOM_IN_SPIRAL = 90,
9435 ZOOM_OUT = 91,
9436 ZOOM_OUT_SMALL = 92,
9437 ZOOM_OUT_SPIRAL = 93,
9438 ZOOM_IN_FROM_LEFT = 94,
9439 ZOOM_IN_FROM_UPPERLEFT = 95,
9440 ZOOM_IN_FROM_TOP = 96,
9441 ZOOM_IN_FROM_UPPERRIGHT = 97,
9442 ZOOM_IN_FROM_RIGHT = 98,
9443 ZOOM_IN_FROM_LOWERRIGHT = 99,
9444 ZOOM_IN_FROM_BOTTOM = 100,
9445 ZOOM_IN_FROM_LOWERLEFT = 101,
9446 ZOOM_IN_FROM_CENTER = 102,
9447 ZOOM_OUT_FROM_LEFT = 103,
9448 ZOOM_OUT_FROM_UPPERLEFT = 104,
9449 ZOOM_OUT_FROM_TOP = 105,
9450 ZOOM_OUT_FROM_UPPERRIGHT = 106,
9451 ZOOM_OUT_FROM_RIGHT = 107,
9452 ZOOM_OUT_FROM_LOWERRIGHT = 108,
9453 ZOOM_OUT_FROM_BOTTOM = 109,
9454 ZOOM_OUT_FROM_LOWERLEFT = 110,
9455 ZOOM_OUT_FROM_CENTER = 111
9457 published enum AnimationSpeed {
9458 SLOW = 0,
9459 MEDIUM = 1,
9460 FAST = 2
9462 published enum ClickAction {
9463 NONE = 0,
9464 PREVPAGE = 1,
9465 NEXTPAGE = 2,
9466 FIRSTPAGE = 3,
9467 LASTPAGE = 4,
9468 BOOKMARK = 5,
9469 DOCUMENT = 6,
9470 INVISIBLE = 7,
9471 SOUND = 8,
9472 VERB = 9,
9473 VANISH = 10,
9474 PROGRAM = 11,
9475 MACRO = 12,
9476 STOPPRESENTATION = 13
9478 published service Shape {
9479 [property] string Bookmark;
9480 [property] ::com::sun::star::util::Color DimColor;
9481 [property] boolean DimHide;
9482 [property] boolean DimPrevious;
9483 [property] ::com::sun::star::presentation::AnimationEffect Effect;
9484 [property] boolean IsEmptyPresentationObject;
9485 [property, readonly] boolean IsPresentationObject;
9486 [property] ::com::sun::star::presentation::ClickAction OnClick;
9487 [property] boolean PlayFull;
9488 [property] long PresentationOrder;
9489 [property] string Sound;
9490 [property] boolean SoundOn;
9491 [property] ::com::sun::star::presentation::AnimationSpeed Speed;
9492 [property] ::com::sun::star::presentation::AnimationEffect TextEffect;
9493 [property] long Verb;
9495 published service ChartShape {
9496 service ::com::sun::star::presentation::Shape;
9497 service ::com::sun::star::drawing::OLE2Shape;
9499 published service CustomPresentation {
9500 interface ::com::sun::star::container::XIndexContainer;
9501 interface ::com::sun::star::container::XNamed;
9503 published service CustomPresentationAccess {
9504 interface ::com::sun::star::container::XNameContainer;
9505 interface ::com::sun::star::lang::XSingleServiceFactory;
9507 published service DocumentSettings {
9508 service ::com::sun::star::document::Settings;
9509 [optional] service ::com::sun::star::document::HeaderFooterSettings;
9510 interface ::com::sun::star::beans::XPropertySet;
9511 [property, optional] boolean IsPrintDrawing;
9512 [property, optional] boolean IsPrintNotes;
9513 [property, optional] boolean IsPrintHandout;
9514 [property, optional] boolean IsPrintOutline;
9515 [property, optional] boolean IsPrintHiddenPages;
9516 [property, optional] boolean IsPrintFitPage;
9517 [property, optional] boolean IsPrintTilePage;
9518 [property, optional] long PageNumberFormat;
9519 [property, optional] boolean ParagraphSummation;
9521 published enum FadeEffect {
9522 NONE = 0,
9523 FADE_FROM_LEFT = 1,
9524 FADE_FROM_TOP = 2,
9525 FADE_FROM_RIGHT = 3,
9526 FADE_FROM_BOTTOM = 4,
9527 FADE_TO_CENTER = 5,
9528 FADE_FROM_CENTER = 6,
9529 MOVE_FROM_LEFT = 7,
9530 MOVE_FROM_TOP = 8,
9531 MOVE_FROM_RIGHT = 9,
9532 MOVE_FROM_BOTTOM = 10,
9533 ROLL_FROM_LEFT = 11,
9534 ROLL_FROM_TOP = 12,
9535 ROLL_FROM_RIGHT = 13,
9536 ROLL_FROM_BOTTOM = 14,
9537 VERTICAL_STRIPES = 15,
9538 HORIZONTAL_STRIPES = 16,
9539 CLOCKWISE = 17,
9540 COUNTERCLOCKWISE = 18,
9541 FADE_FROM_UPPERLEFT = 19,
9542 FADE_FROM_UPPERRIGHT = 20,
9543 FADE_FROM_LOWERLEFT = 21,
9544 FADE_FROM_LOWERRIGHT = 22,
9545 CLOSE_VERTICAL = 23,
9546 CLOSE_HORIZONTAL = 24,
9547 OPEN_VERTICAL = 25,
9548 OPEN_HORIZONTAL = 26,
9549 SPIRALIN_LEFT = 27,
9550 SPIRALIN_RIGHT = 28,
9551 SPIRALOUT_LEFT = 29,
9552 SPIRALOUT_RIGHT = 30,
9553 DISSOLVE = 31,
9554 WAVYLINE_FROM_LEFT = 32,
9555 WAVYLINE_FROM_TOP = 33,
9556 WAVYLINE_FROM_RIGHT = 34,
9557 WAVYLINE_FROM_BOTTOM = 35,
9558 RANDOM = 36,
9559 STRETCH_FROM_LEFT = 37,
9560 STRETCH_FROM_TOP = 38,
9561 STRETCH_FROM_RIGHT = 39,
9562 STRETCH_FROM_BOTTOM = 40,
9563 VERTICAL_LINES = 41,
9564 HORIZONTAL_LINES = 42,
9565 MOVE_FROM_UPPERLEFT = 43,
9566 MOVE_FROM_UPPERRIGHT = 44,
9567 MOVE_FROM_LOWERRIGHT = 45,
9568 MOVE_FROM_LOWERLEFT = 46,
9569 UNCOVER_TO_LEFT = 47,
9570 UNCOVER_TO_UPPERLEFT = 48,
9571 UNCOVER_TO_TOP = 49,
9572 UNCOVER_TO_UPPERRIGHT = 50,
9573 UNCOVER_TO_RIGHT = 51,
9574 UNCOVER_TO_LOWERRIGHT = 52,
9575 UNCOVER_TO_BOTTOM = 53,
9576 UNCOVER_TO_LOWERLEFT = 54,
9577 VERTICAL_CHECKERBOARD = 55,
9578 HORIZONTAL_CHECKERBOARD = 56
9580 published service DrawPage {
9581 service ::com::sun::star::drawing::DrawPage;
9582 service ::com::sun::star::document::LinkTarget;
9583 [property] long Change;
9584 [property] long Duration;
9585 [property, optional] double HighResDuration;
9586 [property] ::com::sun::star::presentation::FadeEffect Effect;
9587 [property] short Layout;
9588 [property] ::com::sun::star::presentation::AnimationSpeed Speed;
9589 [property, optional] boolean IsHeaderVisible;
9590 [property, optional] string HeaderText;
9591 [property, optional] boolean IsFooterVisible;
9592 [property, optional] string FooterText;
9593 [property, optional] boolean IsPageNumberVisible;
9594 [property, optional] boolean IsDateTimeVisible;
9595 [property, optional] boolean IsDateTimeFixed;
9596 [property, optional] string DateTimeText;
9597 [property, optional] long DateTimeFormat;
9598 [property, optional] double TransitionDuration;
9600 published service GraphicObjectShape {
9601 service ::com::sun::star::presentation::Shape;
9602 service ::com::sun::star::drawing::GraphicObjectShape;
9604 published service HandoutShape {
9605 service ::com::sun::star::presentation::Shape;
9606 service ::com::sun::star::drawing::PageShape;
9608 published service HandoutView {
9609 service ::com::sun::star::drawing::DrawingDocumentDrawView;
9611 published service NotesShape {
9612 service ::com::sun::star::presentation::Shape;
9613 service ::com::sun::star::drawing::TextShape;
9615 published service NotesView {
9616 service ::com::sun::star::drawing::DrawingDocumentDrawView;
9618 published service OLE2Shape {
9619 service ::com::sun::star::presentation::Shape;
9620 service ::com::sun::star::drawing::OLE2Shape;
9622 published service OutlineView {
9623 service ::com::sun::star::frame::Controller;
9624 interface ::com::sun::star::awt::XWindow;
9625 interface ::com::sun::star::beans::XPropertySet;
9626 [property, readonly] ::com::sun::star::awt::Rectangle VisibleArea;
9628 published service OutlinerShape {
9629 service ::com::sun::star::presentation::Shape;
9630 service ::com::sun::star::drawing::TextShape;
9632 published service PageShape {
9633 service ::com::sun::star::presentation::Shape;
9634 service ::com::sun::star::drawing::PageShape;
9636 published interface XPresentation {
9637 interface ::com::sun::star::uno::XInterface;
9638 void start();
9639 void end();
9640 void rehearseTimings();
9642 published service Presentation {
9643 interface ::com::sun::star::presentation::XPresentation;
9644 interface ::com::sun::star::beans::XPropertySet;
9645 [property] boolean AllowAnimations;
9646 [property] string CustomShow;
9647 [property] string FirstPage;
9648 [property] boolean IsAlwaysOnTop;
9649 [property] boolean IsAutomatic;
9650 [property] boolean IsEndless;
9651 [property] boolean IsFullScreen;
9652 [property] boolean IsLivePresentation;
9653 [property] boolean IsMouseVisible;
9654 [property] long Pause;
9655 [property] boolean StartWithNavigator;
9656 [property] boolean UsePen;
9658 published interface XCustomPresentationSupplier {
9659 interface ::com::sun::star::uno::XInterface;
9660 ::com::sun::star::container::XNameContainer getCustomPresentations();
9662 published interface XPresentationSupplier {
9663 interface ::com::sun::star::uno::XInterface;
9664 ::com::sun::star::presentation::XPresentation getPresentation();
9666 published enum PresentationRange {
9667 PRESENTATIONRANGE_ALL = 0,
9668 PRESENTATIONRANGE_FROM_PAGE = 1,
9669 PRESENTATIONRANGE_INDIVIDUAL = 2
9671 published service PresentationView {
9672 service ::com::sun::star::frame::Controller;
9673 interface ::com::sun::star::awt::XWindow;
9674 interface ::com::sun::star::drawing::XDrawView;
9675 interface ::com::sun::star::beans::XPropertySet;
9676 [property] ::com::sun::star::drawing::XDrawPage CurrentPage;
9677 [property, readonly] ::com::sun::star::awt::Rectangle VisibleArea;
9679 published service PreviewView {
9680 service ::com::sun::star::frame::Controller;
9681 interface ::com::sun::star::awt::XWindow;
9682 interface ::com::sun::star::drawing::XDrawView;
9683 interface ::com::sun::star::beans::XPropertySet;
9684 [property] ::com::sun::star::drawing::XDrawPage CurrentPage;
9685 [property, readonly] ::com::sun::star::awt::Rectangle VisibleArea;
9687 published service SlidesView {
9688 service ::com::sun::star::frame::Controller;
9689 interface ::com::sun::star::awt::XWindow;
9690 interface ::com::sun::star::beans::XPropertySet;
9691 [property, readonly] ::com::sun::star::awt::Rectangle VisibleArea;
9693 published service SubtitleShape {
9694 service ::com::sun::star::presentation::Shape;
9695 service ::com::sun::star::drawing::TextShape;
9697 published service TitleTextShape {
9698 service ::com::sun::star::presentation::Shape;
9699 service ::com::sun::star::drawing::TextShape;
9701 published interface XHandoutMasterSupplier {
9702 interface ::com::sun::star::uno::XInterface;
9703 ::com::sun::star::drawing::XDrawPage getHandoutMasterPage();
9705 published interface XPresentationPage {
9706 interface ::com::sun::star::drawing::XDrawPage;
9707 ::com::sun::star::drawing::XDrawPage getNotesPage();
9710 module text {
9711 published enum TextContentAnchorType {
9712 AT_PARAGRAPH = 0,
9713 AS_CHARACTER = 1,
9714 AT_PAGE = 2,
9715 AT_FRAME = 3,
9716 AT_CHARACTER = 4
9718 published enum WrapTextMode {
9719 NONE = 0,
9720 THROUGH = 1,
9721 THROUGHT = 1,
9722 PARALLEL = 2,
9723 DYNAMIC = 3,
9724 LEFT = 4,
9725 RIGHT = 5
9727 published interface XTextContent {
9728 interface ::com::sun::star::lang::XComponent;
9729 void attach([in] ::com::sun::star::text::XTextRange xTextRange) raises (::com::sun::star::lang::IllegalArgumentException);
9730 ::com::sun::star::text::XTextRange getAnchor();
9732 published service TextContent {
9733 interface ::com::sun::star::text::XTextContent;
9734 [property, optional] ::com::sun::star::text::TextContentAnchorType AnchorType;
9735 [property, optional, readonly] sequence< ::com::sun::star::text::TextContentAnchorType > AnchorTypes;
9736 [property, optional] ::com::sun::star::text::WrapTextMode TextWrap;
9738 published interface XTextField {
9739 interface ::com::sun::star::text::XTextContent;
9740 string getPresentation([in] boolean bShowCommand);
9742 published service TextField {
9743 service ::com::sun::star::text::TextContent;
9744 interface ::com::sun::star::text::XTextField;
9745 [optional] interface ::com::sun::star::beans::XPropertySet;
9746 [property, optional, readonly] boolean IsFieldUsed;
9747 [property, optional, readonly] boolean IsFieldDisplayed;
9750 module table {
9751 published struct CellAddress {
9752 short Sheet;
9753 long Column;
9754 long Row;
9757 module sheet {
9758 published struct FunctionArgument {
9759 string Name;
9760 string Description;
9761 boolean IsOptional;
9764 module resource {
9765 published exception MissingResourceException: ::com::sun::star::uno::RuntimeException {
9768 module scanner {
9769 published enum ScanError {
9770 ScanErrorNone = 0,
9771 ScannerNotAvailable = 1,
9772 ScanFailed = 2,
9773 ScanInProgress = 3,
9774 ScanCanceled = 4,
9775 InvalidContext = 5
9777 published struct ScannerContext {
9778 string ScannerName;
9779 long InternalData;
9781 published exception ScannerException: ::com::sun::star::uno::Exception {
9782 ::com::sun::star::scanner::ScanError Error;
9784 published interface XScannerManager {
9785 interface ::com::sun::star::uno::XInterface;
9786 sequence< ::com::sun::star::scanner::ScannerContext > getAvailableScanners();
9787 boolean configureScanner([inout] ::com::sun::star::scanner::ScannerContext scannerContext) raises (::com::sun::star::scanner::ScannerException);
9788 void startScan([in] ::com::sun::star::scanner::ScannerContext scannerContext, [in] ::com::sun::star::lang::XEventListener listener) raises (::com::sun::star::scanner::ScannerException);
9789 ::com::sun::star::scanner::ScanError getError([in] ::com::sun::star::scanner::ScannerContext scannerContext) raises (::com::sun::star::scanner::ScannerException);
9790 ::com::sun::star::awt::XBitmap getBitmap([in] ::com::sun::star::scanner::ScannerContext scannerContext) raises (::com::sun::star::scanner::ScannerException);
9792 published interface XScannerManager2 {
9793 interface ::com::sun::star::scanner::XScannerManager;
9794 boolean configureScannerAndScan([inout] ::com::sun::star::scanner::ScannerContext scannerContext, [in] ::com::sun::star::lang::XEventListener listener) raises (::com::sun::star::scanner::ScannerException);
9796 published service ScannerManager: ::com::sun::star::scanner::XScannerManager2;
9798 module script {
9799 published interface XLibraryContainer {
9800 interface ::com::sun::star::container::XNameAccess;
9801 ::com::sun::star::container::XNameContainer createLibrary([in] string Name) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::ElementExistException);
9802 ::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);
9803 void removeLibrary([in] string Name) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::WrappedTargetException);
9804 boolean isLibraryLoaded([in] string Name) raises (::com::sun::star::container::NoSuchElementException);
9805 void loadLibrary([in] string Name) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::WrappedTargetException);
9807 published interface XLibraryContainer2 {
9808 interface ::com::sun::star::script::XLibraryContainer;
9809 boolean isLibraryLink([in] string Name) raises (::com::sun::star::container::NoSuchElementException);
9810 string getLibraryLinkURL([in] string Name) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException);
9811 boolean isLibraryReadOnly([in] string Name) raises (::com::sun::star::container::NoSuchElementException);
9812 void setLibraryReadOnly([in] string Name, [in] boolean bReadOnly) raises (::com::sun::star::container::NoSuchElementException);
9813 void renameLibrary([in] string Name, [in] string NewName) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::container::ElementExistException);
9815 published constants ModuleType {
9816 const long CLASS = 2;
9817 const long DOCUMENT = 4;
9818 const long FORM = 3;
9819 const long NORMAL = 1;
9820 const long UNKNOWN = 0;
9822 published interface XLibraryContainer3 {
9823 interface ::com::sun::star::script::XLibraryContainer2;
9824 string getOriginalLibraryLinkURL([in] string Name) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException);
9826 published interface XLibraryContainerPassword {
9827 interface ::com::sun::star::uno::XInterface;
9828 boolean isLibraryPasswordProtected([in] string Name) raises (::com::sun::star::container::NoSuchElementException);
9829 boolean isLibraryPasswordVerified([in] string Name) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException);
9830 boolean verifyLibraryPassword([in] string Name, [in] string Password) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException);
9831 void changeLibraryPassword([in] string Name, [in] string OldPassword, [in] string NewPassword) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException);
9834 module sdbc {
9835 published interface XMultipleResults {
9836 interface ::com::sun::star::uno::XInterface;
9837 ::com::sun::star::sdbc::XResultSet getResultSet() raises (::com::sun::star::sdbc::SQLException);
9838 long getUpdateCount() raises (::com::sun::star::sdbc::SQLException);
9839 boolean getMoreResults() raises (::com::sun::star::sdbc::SQLException);
9841 published interface XPreparedBatchExecution {
9842 interface ::com::sun::star::uno::XInterface;
9843 void addBatch() raises (::com::sun::star::sdbc::SQLException);
9844 void clearBatch() raises (::com::sun::star::sdbc::SQLException);
9845 sequence< long > executeBatch() raises (::com::sun::star::sdbc::SQLException);
9847 published interface XPreparedStatement {
9848 interface ::com::sun::star::uno::XInterface;
9849 ::com::sun::star::sdbc::XResultSet executeQuery() raises (::com::sun::star::sdbc::SQLException);
9850 long executeUpdate() raises (::com::sun::star::sdbc::SQLException);
9851 boolean execute() raises (::com::sun::star::sdbc::SQLException);
9852 ::com::sun::star::sdbc::XConnection getConnection() raises (::com::sun::star::sdbc::SQLException);
9854 published service PreparedStatement {
9855 interface ::com::sun::star::sdbc::XCloseable;
9856 interface ::com::sun::star::beans::XPropertySet;
9857 interface ::com::sun::star::sdbc::XPreparedStatement;
9858 interface ::com::sun::star::sdbc::XResultSetMetaDataSupplier;
9859 interface ::com::sun::star::sdbc::XParameters;
9860 interface ::com::sun::star::sdbc::XWarningsSupplier;
9861 interface ::com::sun::star::sdbc::XMultipleResults;
9862 [optional] interface ::com::sun::star::lang::XComponent;
9863 [optional] interface ::com::sun::star::util::XCancellable;
9864 [optional] interface ::com::sun::star::sdbc::XPreparedBatchExecution;
9865 [property] long QueryTimeOut;
9866 [property] long MaxFieldSize;
9867 [property] long MaxRows;
9868 [property] string CursorName;
9869 [property] long ResultSetConcurrency;
9870 [property] long ResultSetType;
9871 [property] long FetchDirection;
9872 [property] long FetchSize;
9875 module sdb {
9876 published service PreparedStatement {
9877 service ::com::sun::star::sdbc::PreparedStatement;
9878 interface ::com::sun::star::sdbcx::XColumnsSupplier;
9881 module sdbc {
9882 published interface XOutParameters {
9883 interface ::com::sun::star::uno::XInterface;
9884 void registerOutParameter([in] long parameterIndex, [in] long sqlType, [in] string typeName) raises (::com::sun::star::sdbc::SQLException);
9885 void registerNumericOutParameter([in] long parameterIndex, [in] long sqlType, [in] long scale) raises (::com::sun::star::sdbc::SQLException);
9887 published service CallableStatement {
9888 service ::com::sun::star::sdbc::PreparedStatement;
9889 interface ::com::sun::star::sdbc::XRow;
9890 interface ::com::sun::star::sdbc::XOutParameters;
9893 module sdb {
9894 published service CallableStatement {
9895 service ::com::sun::star::sdbc::CallableStatement;
9896 service ::com::sun::star::sdb::PreparedStatement;
9898 published service ColumnSettings {
9899 interface ::com::sun::star::beans::XPropertySet;
9900 [property] long FormatKey;
9901 [property] long Align;
9902 [property] long Width;
9903 [property] long Position;
9904 [property] boolean Hidden;
9905 [property, optional] ::com::sun::star::beans::XPropertySet ControlModel;
9906 [property, optional] string HelpText;
9907 [property, optional] string ControlDefault;
9910 module sdbcx {
9911 published interface XDataDescriptorFactory {
9912 interface ::com::sun::star::uno::XInterface;
9913 ::com::sun::star::beans::XPropertySet createDataDescriptor();
9915 published service Column {
9916 interface ::com::sun::star::beans::XPropertySet;
9917 [optional] interface ::com::sun::star::sdbcx::XDataDescriptorFactory;
9918 [property, readonly] string Name;
9919 [property, readonly] long Type;
9920 [property, readonly] string TypeName;
9921 [property, readonly] long Precision;
9922 [property, readonly] long Scale;
9923 [property, readonly] long IsNullable;
9924 [property, readonly] boolean IsAutoIncrement;
9925 [property, readonly] boolean IsCurrency;
9926 [property, optional, readonly] boolean IsRowVersion;
9927 [property, optional, readonly] string Description;
9928 [property, optional, readonly] string DefaultValue;
9931 module sdb {
9932 published service Column {
9933 service ::com::sun::star::sdbcx::Column;
9934 service ::com::sun::star::sdb::ColumnSettings;
9937 module sdbcx {
9938 published interface XRename {
9939 interface ::com::sun::star::uno::XInterface;
9940 void rename([in] string newName) raises (::com::sun::star::sdbc::SQLException, ::com::sun::star::container::ElementExistException);
9943 module sdb {
9944 published constants CommandType {
9945 const long COMMAND = 2;
9946 const long QUERY = 1;
9947 const long TABLE = 0;
9949 published interface XCommandPreparation {
9950 interface ::com::sun::star::uno::XInterface;
9951 ::com::sun::star::sdbc::XPreparedStatement prepareCommand([in] string command, [in] long commandType) raises (::com::sun::star::sdbc::SQLException);
9953 published interface XQueriesSupplier {
9954 interface ::com::sun::star::uno::XInterface;
9955 ::com::sun::star::container::XNameAccess getQueries();
9957 published interface XSQLQueryComposer;
9958 published interface XSQLQueryComposerFactory {
9959 interface ::com::sun::star::uno::XInterface;
9960 ::com::sun::star::sdb::XSQLQueryComposer createQueryComposer();
9963 module sdbc {
9964 published interface XDatabaseMetaData;
9965 published interface XStatement;
9966 published interface XConnection {
9967 interface ::com::sun::star::sdbc::XCloseable;
9968 ::com::sun::star::sdbc::XStatement createStatement() raises (::com::sun::star::sdbc::SQLException);
9969 ::com::sun::star::sdbc::XPreparedStatement prepareStatement([in] string sql) raises (::com::sun::star::sdbc::SQLException);
9970 ::com::sun::star::sdbc::XPreparedStatement prepareCall([in] string sql) raises (::com::sun::star::sdbc::SQLException);
9971 string nativeSQL([in] string sql) raises (::com::sun::star::sdbc::SQLException);
9972 void setAutoCommit([in] boolean autoCommit) raises (::com::sun::star::sdbc::SQLException);
9973 boolean getAutoCommit() raises (::com::sun::star::sdbc::SQLException);
9974 void commit() raises (::com::sun::star::sdbc::SQLException);
9975 void rollback() raises (::com::sun::star::sdbc::SQLException);
9976 boolean isClosed() raises (::com::sun::star::sdbc::SQLException);
9977 ::com::sun::star::sdbc::XDatabaseMetaData getMetaData() raises (::com::sun::star::sdbc::SQLException);
9978 void setReadOnly([in] boolean readOnly) raises (::com::sun::star::sdbc::SQLException);
9979 boolean isReadOnly() raises (::com::sun::star::sdbc::SQLException);
9980 void setCatalog([in] string catalog) raises (::com::sun::star::sdbc::SQLException);
9981 string getCatalog() raises (::com::sun::star::sdbc::SQLException);
9982 void setTransactionIsolation([in] long level) raises (::com::sun::star::sdbc::SQLException);
9983 long getTransactionIsolation() raises (::com::sun::star::sdbc::SQLException);
9984 ::com::sun::star::container::XNameAccess getTypeMap() raises (::com::sun::star::sdbc::SQLException);
9985 void setTypeMap([in] ::com::sun::star::container::XNameAccess typeMap) raises (::com::sun::star::sdbc::SQLException);
9987 published service Connection {
9988 interface ::com::sun::star::lang::XComponent;
9989 interface ::com::sun::star::sdbc::XConnection;
9990 interface ::com::sun::star::sdbc::XWarningsSupplier;
9993 module sdbcx {
9994 published interface XGroupsSupplier {
9995 interface ::com::sun::star::uno::XInterface;
9996 ::com::sun::star::container::XNameAccess getGroups();
9998 published interface XTablesSupplier {
9999 interface ::com::sun::star::uno::XInterface;
10000 ::com::sun::star::container::XNameAccess getTables();
10002 published interface XUsersSupplier {
10003 interface ::com::sun::star::uno::XInterface;
10004 ::com::sun::star::container::XNameAccess getUsers();
10006 published interface XViewsSupplier {
10007 interface ::com::sun::star::uno::XInterface;
10008 ::com::sun::star::container::XNameAccess getViews();
10010 published service DatabaseDefinition {
10011 interface ::com::sun::star::sdbcx::XTablesSupplier;
10012 [optional] interface ::com::sun::star::sdbcx::XViewsSupplier;
10013 [optional] interface ::com::sun::star::sdbcx::XUsersSupplier;
10014 [optional] interface ::com::sun::star::sdbcx::XGroupsSupplier;
10017 module sdb {
10018 published service Connection {
10019 service ::com::sun::star::sdbc::Connection;
10020 service ::com::sun::star::sdbcx::DatabaseDefinition;
10021 interface ::com::sun::star::container::XChild;
10022 interface ::com::sun::star::sdb::XCommandPreparation;
10023 interface ::com::sun::star::sdb::XQueriesSupplier;
10024 interface ::com::sun::star::sdb::XSQLQueryComposerFactory;
10025 [optional] interface ::com::sun::star::lang::XMultiServiceFactory;
10027 published service ContentLoader {
10028 service ::com::sun::star::frame::FrameLoader;
10030 published service DataAccessDescriptor {
10031 [property, optional] string DataSourceName;
10032 [property, optional] string DatabaseLocation;
10033 [property, optional] string ConnectionResource;
10034 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > ConnectionInfo;
10035 [property, optional] ::com::sun::star::sdbc::XConnection ActiveConnection;
10036 [property, optional] string Command;
10037 [property, optional] long CommandType;
10038 [property, optional] string Filter;
10039 [property, optional] string Order;
10040 [property, optional] string HavingClause;
10041 [property, optional] string GroupBy;
10042 [property, optional] boolean EscapeProcessing;
10043 [property, optional] ::com::sun::star::sdbc::XResultSet ResultSet;
10044 [property, optional] sequence< any > Selection;
10045 [property, optional] boolean BookmarkSelection;
10046 [property, optional] string ColumnName;
10047 [property, optional] ::com::sun::star::beans::XPropertySet Column;
10049 published service ResultColumn {
10050 service ::com::sun::star::sdbcx::Column;
10051 service ::com::sun::star::sdb::ColumnSettings;
10052 [property, readonly] boolean IsSearchable;
10053 [property, readonly] boolean IsSigned;
10054 [property, readonly] boolean IsCaseSensitive;
10055 [property, readonly] long DisplaySize;
10056 [property, readonly] string Label;
10057 [property, readonly] boolean IsReadOnly;
10058 [property, readonly] boolean IsWritable;
10059 [property, readonly] boolean IsDefinitelyWritable;
10060 [property, readonly] string ServiceName;
10061 [property, readonly] string TableName;
10062 [property, readonly] string SchemaName;
10063 [property, readonly] string CatalogName;
10065 published interface XColumn {
10066 interface ::com::sun::star::uno::XInterface;
10067 boolean wasNull() raises (::com::sun::star::sdbc::SQLException);
10068 string getString() raises (::com::sun::star::sdbc::SQLException);
10069 boolean getBoolean() raises (::com::sun::star::sdbc::SQLException);
10070 byte getByte() raises (::com::sun::star::sdbc::SQLException);
10071 short getShort() raises (::com::sun::star::sdbc::SQLException);
10072 long getInt() raises (::com::sun::star::sdbc::SQLException);
10073 hyper getLong() raises (::com::sun::star::sdbc::SQLException);
10074 float getFloat() raises (::com::sun::star::sdbc::SQLException);
10075 double getDouble() raises (::com::sun::star::sdbc::SQLException);
10076 sequence< byte > getBytes() raises (::com::sun::star::sdbc::SQLException);
10077 ::com::sun::star::util::Date getDate() raises (::com::sun::star::sdbc::SQLException);
10078 ::com::sun::star::util::Time getTime() raises (::com::sun::star::sdbc::SQLException);
10079 ::com::sun::star::util::DateTime getTimestamp() raises (::com::sun::star::sdbc::SQLException);
10080 ::com::sun::star::io::XInputStream getBinaryStream() raises (::com::sun::star::sdbc::SQLException);
10081 ::com::sun::star::io::XInputStream getCharacterStream() raises (::com::sun::star::sdbc::SQLException);
10082 any getObject([in] ::com::sun::star::container::XNameAccess typeMap) raises (::com::sun::star::sdbc::SQLException);
10083 ::com::sun::star::sdbc::XRef getRef() raises (::com::sun::star::sdbc::SQLException);
10084 ::com::sun::star::sdbc::XBlob getBlob() raises (::com::sun::star::sdbc::SQLException);
10085 ::com::sun::star::sdbc::XClob getClob() raises (::com::sun::star::sdbc::SQLException);
10086 ::com::sun::star::sdbc::XArray getArray() raises (::com::sun::star::sdbc::SQLException);
10088 published interface XColumnUpdate {
10089 interface ::com::sun::star::uno::XInterface;
10090 void updateNull() raises (::com::sun::star::sdbc::SQLException);
10091 void updateBoolean([in] boolean x) raises (::com::sun::star::sdbc::SQLException);
10092 void updateByte([in] byte x) raises (::com::sun::star::sdbc::SQLException);
10093 void updateShort([in] short x) raises (::com::sun::star::sdbc::SQLException);
10094 void updateInt([in] long x) raises (::com::sun::star::sdbc::SQLException);
10095 void updateLong([in] hyper x) raises (::com::sun::star::sdbc::SQLException);
10096 void updateFloat([in] float x) raises (::com::sun::star::sdbc::SQLException);
10097 void updateDouble([in] double x) raises (::com::sun::star::sdbc::SQLException);
10098 void updateString([in] string x) raises (::com::sun::star::sdbc::SQLException);
10099 void updateBytes([in] sequence< byte > x) raises (::com::sun::star::sdbc::SQLException);
10100 void updateDate([in] ::com::sun::star::util::Date x) raises (::com::sun::star::sdbc::SQLException);
10101 void updateTime([in] ::com::sun::star::util::Time x) raises (::com::sun::star::sdbc::SQLException);
10102 void updateTimestamp([in] ::com::sun::star::util::DateTime x) raises (::com::sun::star::sdbc::SQLException);
10103 void updateBinaryStream([in] ::com::sun::star::io::XInputStream x, [in] long length) raises (::com::sun::star::sdbc::SQLException);
10104 void updateCharacterStream([in] ::com::sun::star::io::XInputStream x, [in] long length) raises (::com::sun::star::sdbc::SQLException);
10105 void updateObject([in] any x) raises (::com::sun::star::sdbc::SQLException);
10106 void updateNumericObject([in] any x, [in] long scale) raises (::com::sun::star::sdbc::SQLException);
10108 published service DataColumn {
10109 service ::com::sun::star::sdb::ResultColumn;
10110 interface ::com::sun::star::sdb::XColumn;
10111 interface ::com::sun::star::sdb::XColumnUpdate;
10112 [property, optional] any Value;
10113 [property, optional, readonly] any OriginalValue;
10115 published service DataSettings {
10116 [property] string Filter;
10117 [property] boolean ApplyFilter;
10118 [property] string Order;
10119 [property] ::com::sun::star::awt::FontDescriptor FontDescriptor;
10120 [property] long RowHeight;
10121 [property] ::com::sun::star::util::Color TextColor;
10122 [property, optional] string HavingClause;
10123 [property, optional] string GroupBy;
10125 published interface XBookmarksSupplier {
10126 interface ::com::sun::star::uno::XInterface;
10127 ::com::sun::star::container::XNameAccess getBookmarks();
10129 published interface XCompletedConnection {
10130 interface ::com::sun::star::uno::XInterface;
10131 ::com::sun::star::sdbc::XConnection connectWithCompletion([in] ::com::sun::star::task::XInteractionHandler handler) raises (::com::sun::star::sdbc::SQLException);
10133 published interface XQueryDefinitionsSupplier {
10134 interface ::com::sun::star::uno::XInterface;
10135 ::com::sun::star::container::XNameAccess getQueryDefinitions();
10138 module sdbc {
10139 published interface XDataSource {
10140 interface ::com::sun::star::uno::XInterface;
10141 ::com::sun::star::sdbc::XConnection getConnection([in] string user, [in] string password) raises (::com::sun::star::sdbc::SQLException);
10142 void setLoginTimeout([in] long seconds) raises (::com::sun::star::sdbc::SQLException);
10143 long getLoginTimeout() raises (::com::sun::star::sdbc::SQLException);
10145 published interface XIsolatedConnection {
10146 interface ::com::sun::star::uno::XInterface;
10147 ::com::sun::star::sdbc::XConnection getIsolatedConnectionWithCompletion([in] ::com::sun::star::task::XInteractionHandler handler) raises (::com::sun::star::sdbc::SQLException);
10148 ::com::sun::star::sdbc::XConnection getIsolatedConnection([in] string user, [in] string password) raises (::com::sun::star::sdbc::SQLException);
10151 module sdb {
10152 published service DataSource {
10153 interface ::com::sun::star::beans::XPropertySet;
10154 interface ::com::sun::star::sdb::XCompletedConnection;
10155 interface ::com::sun::star::sdbc::XIsolatedConnection;
10156 interface ::com::sun::star::util::XFlushable;
10157 interface ::com::sun::star::sdb::XQueryDefinitionsSupplier;
10158 interface ::com::sun::star::sdbc::XDataSource;
10159 [optional] interface ::com::sun::star::sdb::XBookmarksSupplier;
10160 [property, readonly] string Name;
10161 [property] string URL;
10162 [property] sequence< ::com::sun::star::beans::PropertyValue > Info;
10163 [property, optional, readonly] ::com::sun::star::beans::XPropertySet Settings;
10164 [property] string User;
10165 [property] string Password;
10166 [property] boolean IsPasswordRequired;
10167 [property] boolean SuppressVersionColumns;
10168 [property, readonly] boolean IsReadOnly;
10169 [property, readonly] ::com::sun::star::util::XNumberFormatsSupplier NumberFormatsSupplier;
10170 [property] sequence< string > TableFilter;
10171 [property] sequence< string > TableTypeFilter;
10173 published service DataSourceBrowser {
10174 [optional] service ::com::sun::star::form::FormController;
10175 interface ::com::sun::star::frame::XController;
10176 interface ::com::sun::star::lang::XInitialization;
10177 interface ::com::sun::star::frame::XDispatchProvider;
10178 [optional] interface ::com::sun::star::ui::XContextMenuInterception;
10180 published interface XDatabaseAccessListener;
10181 /** @deprecated */ published interface XDatabaseAccess {
10182 interface ::com::sun::star::sdbc::XDataSource;
10183 boolean hasConnections();
10184 ::com::sun::star::sdbc::XConnection getIsolatedConnection([in] string user, [in] string password) raises (::com::sun::star::sdbc::SQLException);
10185 boolean suspendConnections() raises (::com::sun::star::sdbc::SQLException);
10186 void addDatabaseAccessListener([in] ::com::sun::star::sdb::XDatabaseAccessListener listener);
10187 void removeDatabaseAccessListener([in] ::com::sun::star::sdb::XDatabaseAccessListener listener);
10189 /** @deprecated */ published service DatabaseAccess {
10190 interface ::com::sun::star::beans::XPropertySet;
10191 interface ::com::sun::star::sdb::XDatabaseAccess;
10192 [optional] interface ::com::sun::star::sdb::XCompletedConnection;
10193 [property, readonly] string URL;
10194 [property] string Title;
10195 [property] string ConnectURL;
10196 [property] sequence< ::com::sun::star::beans::PropertyValue > ConnectInfo;
10197 [property, readonly] boolean IsReadOnly;
10198 [property] ::com::sun::star::util::XNumberFormatsSupplier NumberFormatsSupplier;
10199 [property, optional] boolean IsPasswordRequired;
10200 [property, optional] sequence< string > TableFilter;
10201 [property, optional] sequence< string > TableTypeFilter;
10203 /** @deprecated */ published service DatabaseAccessConnection {
10204 service ::com::sun::star::sdbc::Connection;
10205 service ::com::sun::star::sdbcx::DatabaseDefinition;
10206 interface ::com::sun::star::container::XChild;
10207 interface ::com::sun::star::sdb::XSQLQueryComposerFactory;
10208 interface ::com::sun::star::sdb::XQueriesSupplier;
10211 module util {
10212 published struct AliasProgrammaticPair {
10213 string Alias;
10214 string ProgrammaticName;
10216 published interface XLocalizedAliases {
10217 interface ::com::sun::star::uno::XInterface;
10218 void bindAlias([in] string programmaticName, [in] ::com::sun::star::lang::Locale locale, [in] string alias) raises (::com::sun::star::container::ElementExistException);
10219 void unbindAlias([in] ::com::sun::star::lang::Locale locale, [in] string alias) raises (::com::sun::star::container::NoSuchElementException);
10220 string lookupAlias([in] ::com::sun::star::lang::Locale locale, [in] string Alias) raises (::com::sun::star::container::NoSuchElementException);
10221 string lookupProgrammatic([in] ::com::sun::star::lang::Locale locale, [in] string programmatic) raises (::com::sun::star::container::NoSuchElementException);
10222 void unbindAliases([in] string programmaticName) raises (::com::sun::star::container::NoSuchElementException);
10223 void rebindAliases([in] string currentProgrammatic, [in] string newProgrammatic) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::container::ElementExistException);
10224 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);
10225 sequence< ::com::sun::star::util::AliasProgrammaticPair > listAliases([in] ::com::sun::star::lang::Locale locale);
10228 module sdb {
10229 /** @deprecated */ published service DatabaseAccessContext {
10230 interface ::com::sun::star::container::XEnumerationAccess;
10231 interface ::com::sun::star::container::XNameAccess;
10232 interface ::com::sun::star::util::XLocalizedAliases;
10233 interface ::com::sun::star::lang::XLocalizable;
10236 module ucb {
10237 published enum RememberAuthentication {
10238 NO = 0,
10239 SESSION = 1,
10240 PERSISTENT = 2
10243 module sdb {
10244 /** @deprecated */ published service DatabaseAccessDataSource {
10245 interface ::com::sun::star::beans::XPropertySet;
10246 interface ::com::sun::star::sdbc::XDataSource;
10247 [optional] interface ::com::sun::star::sdb::XCompletedConnection;
10248 [property] string URL;
10249 [property, optional] ::com::sun::star::ucb::RememberAuthentication PasswordMode;
10251 published interface XDatabaseRegistrationsListener;
10252 published interface XDatabaseRegistrations {
10253 interface ::com::sun::star::uno::XInterface;
10254 boolean hasRegisteredDatabase([in] string Name) raises (::com::sun::star::lang::IllegalArgumentException);
10255 sequence< string > getRegistrationNames();
10256 string getDatabaseLocation([in] string Name) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException);
10257 void registerDatabaseLocation([in] string Name, [in] string Location) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::ElementExistException);
10258 void revokeDatabaseLocation([in] string Name) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::IllegalAccessException);
10259 void changeDatabaseLocation([in] string Name, [in] string NewLocation) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::IllegalAccessException);
10260 boolean isDatabaseRegistrationReadOnly([in] string Name) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException);
10261 void addDatabaseRegistrationsListener([in] ::com::sun::star::sdb::XDatabaseRegistrationsListener Listener);
10262 void removeDatabaseRegistrationsListener([in] ::com::sun::star::sdb::XDatabaseRegistrationsListener Listener);
10264 published interface XDatabaseContext {
10265 interface ::com::sun::star::container::XEnumerationAccess;
10266 interface ::com::sun::star::container::XNameAccess;
10267 interface ::com::sun::star::uno::XNamingService;
10268 interface ::com::sun::star::container::XContainer;
10269 interface ::com::sun::star::lang::XSingleServiceFactory;
10270 interface ::com::sun::star::sdb::XDatabaseRegistrations;
10272 published service DatabaseContext: ::com::sun::star::sdb::XDatabaseContext;
10273 /** @deprecated */ published service DatabaseDocument {
10274 interface ::com::sun::star::beans::XPropertySet;
10275 interface ::com::sun::star::sdbcx::XDataDescriptorFactory;
10276 interface ::com::sun::star::sdbcx::XRename;
10277 [property, readonly] string Name;
10278 [property, readonly] string URL;
10281 module sdbc {
10282 published interface XDriverManager {
10283 interface ::com::sun::star::uno::XInterface;
10284 ::com::sun::star::sdbc::XConnection getConnection([in] string url) raises (::com::sun::star::sdbc::SQLException);
10285 ::com::sun::star::sdbc::XConnection getConnectionWithInfo([in] string url, [in] sequence< ::com::sun::star::beans::PropertyValue > info) raises (::com::sun::star::sdbc::SQLException);
10286 void setLoginTimeout([in] long seconds);
10287 long getLoginTimeout();
10290 module sdb {
10291 /** @deprecated */ published interface XDatabaseEnvironment {
10292 interface ::com::sun::star::sdbc::XDriverManager;
10293 ::com::sun::star::sdb::XDatabaseAccess getDatabaseAccess([in] string URL) raises (::com::sun::star::sdbc::SQLException);
10294 ::com::sun::star::sdb::XDatabaseAccess createDatabaseAccess([in] string URL, [in] string title) raises (::com::sun::star::sdbc::SQLException);
10296 /** @deprecated */ published service DatabaseEnvironment {
10297 interface ::com::sun::star::sdb::XDatabaseEnvironment;
10298 interface ::com::sun::star::beans::XPropertySet;
10299 [property, readonly] ::com::sun::star::util::XNumberFormatsSupplier NumberFormatsSupplier;
10301 published struct DatabaseRegistrationEvent: ::com::sun::star::lang::EventObject {
10302 string Name;
10303 string OldLocation;
10304 string NewLocation;
10306 published service DatasourceAdministrationDialog {
10307 interface ::com::sun::star::beans::XPropertySet;
10308 interface ::com::sun::star::ui::dialogs::XExecutableDialog;
10309 interface ::com::sun::star::lang::XInitialization;
10310 [property] string Title;
10311 [property] ::com::sun::star::awt::XWindow ParentWindow;
10313 published service DefinitionContainer {
10314 interface ::com::sun::star::container::XNameAccess;
10315 interface ::com::sun::star::container::XNameContainer;
10316 interface ::com::sun::star::container::XIndexAccess;
10317 interface ::com::sun::star::container::XEnumerationAccess;
10318 [optional] interface ::com::sun::star::util::XRefreshable;
10319 [optional] interface ::com::sun::star::lang::XSingleServiceFactory;
10322 module ucb {
10323 published interface XCommandInfoChangeListener;
10324 published interface XCommandInfoChangeNotifier {
10325 interface ::com::sun::star::uno::XInterface;
10326 void addCommandInfoChangeListener([in] ::com::sun::star::ucb::XCommandInfoChangeListener Listener);
10327 void removeCommandInfoChangeListener([in] ::com::sun::star::ucb::XCommandInfoChangeListener Listener);
10329 published struct Command {
10330 string Name;
10331 long Handle;
10332 any Argument;
10334 published interface XCommandProcessor {
10335 interface ::com::sun::star::uno::XInterface;
10336 long createCommandIdentifier();
10337 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);
10338 void abort([in] long CommandId);
10340 published interface XCommandProcessor2 {
10341 interface ::com::sun::star::ucb::XCommandProcessor;
10342 void releaseCommandIdentifier([in] long CommandId);
10344 published interface XContentEventListener;
10345 published interface XContentIdentifier;
10346 published interface XContent {
10347 interface ::com::sun::star::uno::XInterface;
10348 ::com::sun::star::ucb::XContentIdentifier getIdentifier();
10349 string getContentType();
10350 void addContentEventListener([in] ::com::sun::star::ucb::XContentEventListener Listener);
10351 void removeContentEventListener([in] ::com::sun::star::ucb::XContentEventListener Listener);
10353 published struct ContentInfo {
10354 string Type;
10355 long Attributes;
10356 sequence< ::com::sun::star::beans::Property > Properties;
10358 /** @deprecated */ published interface XContentCreator {
10359 interface ::com::sun::star::uno::XInterface;
10360 sequence< ::com::sun::star::ucb::ContentInfo > queryCreatableContentsInfo();
10361 ::com::sun::star::ucb::XContent createNewContent([in] ::com::sun::star::ucb::ContentInfo Info);
10363 published service Content {
10364 interface ::com::sun::star::ucb::XContent;
10365 interface ::com::sun::star::lang::XComponent;
10366 interface ::com::sun::star::ucb::XCommandProcessor;
10367 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
10368 /** @deprecated */ interface ::com::sun::star::beans::XPropertyContainer;
10369 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
10370 [optional] interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
10371 [optional] interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
10372 /** @deprecated */ [optional] interface ::com::sun::star::ucb::XContentCreator;
10373 [optional] interface ::com::sun::star::container::XChild;
10376 module sdb {
10377 /** @deprecated */ published service Document {
10378 interface ::com::sun::star::beans::XPropertySet;
10379 [property, readonly] string Name;
10380 [property] string DocumentLocation;
10382 published service ErrorMessageDialog: ::com::sun::star::ui::dialogs::XExecutableDialog {
10383 create([in] string initialTitle, [in] ::com::sun::star::awt::XWindow parentWindow, [in] any sqlException);
10385 /** @deprecated */ published service InteractionHandler: ::com::sun::star::task::XInteractionHandler;
10386 published exception ParametersRequest: ::com::sun::star::task::ClassifiedInteractionRequest {
10387 ::com::sun::star::container::XIndexAccess Parameters;
10388 ::com::sun::star::sdbc::XConnection Connection;
10390 published interface XQueryDefinition {
10391 interface ::com::sun::star::beans::XPropertySet;
10392 interface ::com::sun::star::ucb::XContent;
10393 interface ::com::sun::star::lang::XComponent;
10395 published service Query {
10396 service ::com::sun::star::sdb::DataSettings;
10397 interface ::com::sun::star::sdb::XQueryDefinition;
10398 interface ::com::sun::star::sdbcx::XDataDescriptorFactory;
10399 interface ::com::sun::star::sdbcx::XRename;
10400 interface ::com::sun::star::sdbcx::XColumnsSupplier;
10402 published service QueryDefinition: ::com::sun::star::sdb::XQueryDefinition;
10404 module sdbcx {
10405 published service Descriptor {
10406 interface ::com::sun::star::beans::XPropertySet;
10407 [property] string Name;
10410 module sdb {
10411 published service QueryDescriptor {
10412 service ::com::sun::star::sdbcx::Descriptor;
10413 service ::com::sun::star::sdb::DataSettings;
10414 interface ::com::sun::star::sdbcx::XDataDescriptorFactory;
10415 interface ::com::sun::star::sdbcx::XColumnsSupplier;
10416 [property] string Command;
10417 [property] boolean EscapeProcessing;
10418 [property] string UpdateTableName;
10419 [property] string UpdateCatalogName;
10420 [property] string UpdateSchemaName;
10422 published service QueryDesign {
10423 interface ::com::sun::star::frame::XController;
10424 interface ::com::sun::star::lang::XInitialization;
10425 [property, readonly] string ActiveCommand;
10426 [property, optional, readonly] boolean EscapeProcessing;
10428 published service RelationDesign {
10429 interface ::com::sun::star::frame::XController;
10430 interface ::com::sun::star::lang::XInitialization;
10432 published constants RowChangeAction {
10433 const long DELETE = 3;
10434 const long INSERT = 1;
10435 const long UPDATE = 2;
10437 published exception RowSetVetoException: ::com::sun::star::sdbc::SQLException {
10440 module sdbc {
10441 published exception SQLWarning: ::com::sun::star::sdbc::SQLException {
10444 module sdb {
10445 published exception SQLContext: ::com::sun::star::sdbc::SQLWarning {
10446 string Details;
10448 published struct SQLErrorEvent: ::com::sun::star::lang::EventObject {
10449 any Reason;
10451 published interface XSQLQueryComposer {
10452 interface ::com::sun::star::uno::XInterface;
10453 string getQuery();
10454 void setQuery([in] string command) raises (::com::sun::star::sdbc::SQLException);
10455 string getComposedQuery();
10456 string getFilter();
10457 sequence< sequence< ::com::sun::star::beans::PropertyValue > > getStructuredFilter();
10458 string getOrder();
10459 void appendFilterByColumn([in] ::com::sun::star::beans::XPropertySet column) raises (::com::sun::star::sdbc::SQLException);
10460 void appendOrderByColumn([in] ::com::sun::star::beans::XPropertySet column, [in] boolean ascending) raises (::com::sun::star::sdbc::SQLException);
10461 void setFilter([in] string filter) raises (::com::sun::star::sdbc::SQLException);
10462 void setOrder([in] string order) raises (::com::sun::star::sdbc::SQLException);
10464 published service SQLQueryComposer {
10465 interface ::com::sun::star::sdb::XSQLQueryComposer;
10466 interface ::com::sun::star::sdbcx::XTablesSupplier;
10467 interface ::com::sun::star::sdbcx::XColumnsSupplier;
10470 module sdbcx {
10471 published interface XAlterTable {
10472 interface ::com::sun::star::uno::XInterface;
10473 void alterColumnByName([in] string colName, [in] ::com::sun::star::beans::XPropertySet descriptor) raises (::com::sun::star::sdbc::SQLException, ::com::sun::star::container::NoSuchElementException);
10474 void alterColumnByIndex([in] long index, [in] ::com::sun::star::beans::XPropertySet descriptor) raises (::com::sun::star::sdbc::SQLException, ::com::sun::star::lang::IndexOutOfBoundsException);
10476 published interface XIndexesSupplier {
10477 interface ::com::sun::star::uno::XInterface;
10478 ::com::sun::star::container::XNameAccess getIndexes();
10480 published interface XKeysSupplier {
10481 interface ::com::sun::star::uno::XInterface;
10482 ::com::sun::star::container::XIndexAccess getKeys();
10484 published service Table {
10485 interface ::com::sun::star::sdbcx::XColumnsSupplier;
10486 interface ::com::sun::star::beans::XPropertySet;
10487 [optional] interface ::com::sun::star::sdbcx::XDataDescriptorFactory;
10488 [optional] interface ::com::sun::star::sdbcx::XIndexesSupplier;
10489 [optional] interface ::com::sun::star::sdbcx::XKeysSupplier;
10490 [optional] interface ::com::sun::star::sdbcx::XRename;
10491 [optional] interface ::com::sun::star::sdbcx::XAlterTable;
10492 [property, readonly] string Name;
10493 [property, readonly] string CatalogName;
10494 [property, readonly] string SchemaName;
10495 [property, readonly] string Description;
10496 [property, optional, readonly] string Type;
10499 module sdb {
10500 published service Table {
10501 service ::com::sun::star::sdbcx::Table;
10502 service ::com::sun::star::sdb::DataSettings;
10503 [property, readonly] long Privileges;
10506 module sdbcx {
10507 published service TableDescriptor {
10508 service ::com::sun::star::sdbcx::Descriptor;
10509 interface ::com::sun::star::sdbcx::XColumnsSupplier;
10510 [optional] interface ::com::sun::star::sdbcx::XKeysSupplier;
10511 [property] string CatalogName;
10512 [property] string SchemaName;
10513 [property] string Description;
10516 module sdb {
10517 published service TableDescriptor {
10518 service ::com::sun::star::sdbcx::TableDescriptor;
10519 service ::com::sun::star::sdb::DataSettings;
10521 published service TableDesign {
10522 interface ::com::sun::star::frame::XController;
10523 interface ::com::sun::star::lang::XInitialization;
10525 published interface XAlterQuery {
10526 interface ::com::sun::star::uno::XInterface;
10527 void alterCommand([in] string command, [in] boolean useEscapeProcessing) raises (::com::sun::star::sdbc::SQLException);
10529 /** @deprecated */ published interface XDatabaseAccessListener {
10530 interface ::com::sun::star::lang::XEventListener;
10531 void connectionChanged([in] ::com::sun::star::lang::EventObject event);
10532 boolean approveConnectionClosing([in] ::com::sun::star::lang::EventObject event);
10533 void connectionClosing([in] ::com::sun::star::lang::EventObject event);
10535 published interface XDatabaseRegistrationsListener {
10536 interface ::com::sun::star::lang::XEventListener;
10537 void registeredDatabaseLocation([in] ::com::sun::star::sdb::DatabaseRegistrationEvent Event);
10538 void revokedDatabaseLocation([in] ::com::sun::star::sdb::DatabaseRegistrationEvent Event);
10539 void changedDatabaseLocation([in] ::com::sun::star::sdb::DatabaseRegistrationEvent Event);
10541 published interface XInteractionSupplyParameters {
10542 interface ::com::sun::star::task::XInteractionContinuation;
10543 void setParameters([in] sequence< ::com::sun::star::beans::PropertyValue > Values);
10545 published interface XRowSetApproveListener {
10546 interface ::com::sun::star::lang::XEventListener;
10547 boolean approveCursorMove([in] ::com::sun::star::lang::EventObject event);
10548 boolean approveRowChange([in] ::com::sun::star::sdb::RowChangeEvent event);
10549 boolean approveRowSetChange([in] ::com::sun::star::lang::EventObject event);
10551 published interface XRowSetSupplier {
10552 interface ::com::sun::star::uno::XInterface;
10553 ::com::sun::star::sdbc::XRowSet getRowSet();
10554 void setRowSet([in] ::com::sun::star::sdbc::XRowSet xDataSource);
10556 published interface XSQLErrorListener {
10557 interface ::com::sun::star::lang::XEventListener;
10558 void errorOccured([in] ::com::sun::star::sdb::SQLErrorEvent aEvent);
10561 module sdbc {
10562 published exception BatchUpdateException: ::com::sun::star::sdbc::SQLException {
10563 sequence< long > UpdateCounts;
10565 published constants BestRowScope {
10566 const long SESSION = 2;
10567 const long TEMPORARY = 0;
10568 const long TRANSACTION = 1;
10570 published constants BestRowType {
10571 const long NOT_PSEUDO = 1;
10572 const long PSEUDO = 2;
10573 const long UNKNOWN = 0;
10575 /** @deprecated */ published constants ChangeAction {
10576 const long DELETE = 3;
10577 const long INSERT = 1;
10578 const long UNDO = 4;
10579 const long UPDATE = 2;
10581 /** @deprecated */ published struct ChangeEvent: ::com::sun::star::lang::EventObject {
10582 long Action;
10583 long Rows;
10585 published constants ColumnSearch {
10586 const long BASIC = 2;
10587 const long CHAR = 1;
10588 const long FULL = 3;
10589 const long NONE = 0;
10591 published constants ColumnType {
10592 const long NOT_PSEUDO = 1;
10593 const long PSEUDO = 2;
10594 const long UNKNOWN = 0;
10596 published constants ColumnValue {
10597 const long NO_NULLS = 0;
10598 const long NULLABLE = 1;
10599 const long NULLABLE_UNKNOWN = 2;
10601 published interface XDriver;
10602 published interface XDriverAccess {
10603 interface ::com::sun::star::uno::XInterface;
10604 ::com::sun::star::sdbc::XDriver getDriverByURL([in] string url);
10606 published interface XConnectionPool {
10607 interface ::com::sun::star::sdbc::XDriverManager;
10608 interface ::com::sun::star::sdbc::XDriverAccess;
10610 published service ConnectionPool: ::com::sun::star::sdbc::XConnectionPool;
10611 published service ConnectionProperties {
10612 [property, optional] string user;
10613 [property, optional] string password;
10615 published exception DataTruncation: ::com::sun::star::sdbc::SQLWarning {
10616 long Index;
10617 boolean IsParameter;
10618 boolean DuringRead;
10619 long DataSize;
10620 long TransferSize;
10622 published constants DataType {
10623 const long ARRAY = 2003;
10624 const long BIGINT = -5;
10625 const long BINARY = -2;
10626 const long BIT = -7;
10627 const long BLOB = 2004;
10628 const long BOOLEAN = 16;
10629 const long CHAR = 1;
10630 const long CLOB = 2005;
10631 const long DATE = 91;
10632 const long DECIMAL = 3;
10633 const long DISTINCT = 2001;
10634 const long DOUBLE = 8;
10635 const long FLOAT = 6;
10636 const long INTEGER = 4;
10637 const long LONGVARBINARY = -4;
10638 const long LONGVARCHAR = -1;
10639 const long NUMERIC = 2;
10640 const long OBJECT = 2000;
10641 const long OTHER = 1111;
10642 const long REAL = 7;
10643 const long REF = 2006;
10644 const long SMALLINT = 5;
10645 const long SQLNULL = 0;
10646 const long STRUCT = 2002;
10647 const long TIME = 92;
10648 const long TIMESTAMP = 93;
10649 const long TINYINT = -6;
10650 const long VARBINARY = -3;
10651 const long VARCHAR = 12;
10653 published constants Deferrability {
10654 const long INITIALLY_DEFERRED = 5;
10655 const long INITIALLY_IMMEDIATE = 6;
10656 const long NONE = 7;
10658 published struct DriverPropertyInfo {
10659 string Name;
10660 string Description;
10661 boolean IsRequired;
10662 string Value;
10663 sequence< string > Choices;
10665 published interface XDriver {
10666 interface ::com::sun::star::uno::XInterface;
10667 ::com::sun::star::sdbc::XConnection connect([in] string url, [in] sequence< ::com::sun::star::beans::PropertyValue > info) raises (::com::sun::star::sdbc::SQLException);
10668 boolean acceptsURL([in] string url) raises (::com::sun::star::sdbc::SQLException);
10669 sequence< ::com::sun::star::sdbc::DriverPropertyInfo > getPropertyInfo([in] string url, [in] sequence< ::com::sun::star::beans::PropertyValue > info) raises (::com::sun::star::sdbc::SQLException);
10670 long getMajorVersion();
10671 long getMinorVersion();
10673 published service Driver {
10674 interface ::com::sun::star::sdbc::XDriver;
10676 published interface XDriverManager2 {
10677 interface ::com::sun::star::sdbc::XDriverManager;
10678 interface ::com::sun::star::sdbc::XDriverAccess;
10679 interface ::com::sun::star::container::XEnumerationAccess;
10681 published service DriverManager: ::com::sun::star::sdbc::XDriverManager2;
10682 published constants FetchDirection {
10683 const long FORWARD = 1000;
10684 const long REVERSE = 1001;
10685 const long UNKNOWN = 1002;
10687 published constants IndexType {
10688 const short CLUSTERED = 1;
10689 const short HASHED = 2;
10690 const short OTHER = 3;
10691 const short STATISTIC = 0;
10693 published constants KeyRule {
10694 const long CASCADE = 0;
10695 const long NO_ACTION = 3;
10696 const long RESTRICT = 1;
10697 const long SET_DEFAULT = 4;
10698 const long SET_NULL = 2;
10700 published constants ProcedureColumn {
10701 const long IN = 1;
10702 const long INOUT = 2;
10703 const long OUT = 4;
10704 const long RESULT = 3;
10705 const long RETURN = 5;
10706 const long UNKNOWN = 0;
10708 published constants ProcedureResult {
10709 const long NONE = 1;
10710 const long RETURN = 2;
10711 const long UNKNOWN = 0;
10713 published constants ResultSetConcurrency {
10714 const long READ_ONLY = 1007;
10715 const long UPDATABLE = 1008;
10717 published constants ResultSetType {
10718 const long FORWARD_ONLY = 1003;
10719 const long SCROLL_INSENSITIVE = 1004;
10720 const long SCROLL_SENSITIVE = 1005;
10722 published interface XBatchExecution {
10723 interface ::com::sun::star::uno::XInterface;
10724 void addBatch([in] string sql) raises (::com::sun::star::sdbc::SQLException);
10725 void clearBatch() raises (::com::sun::star::sdbc::SQLException);
10726 sequence< long > executeBatch() raises (::com::sun::star::sdbc::SQLException);
10728 published interface XStatement {
10729 interface ::com::sun::star::uno::XInterface;
10730 ::com::sun::star::sdbc::XResultSet executeQuery([in] string sql) raises (::com::sun::star::sdbc::SQLException);
10731 long executeUpdate([in] string sql) raises (::com::sun::star::sdbc::SQLException);
10732 boolean execute([in] string sql) raises (::com::sun::star::sdbc::SQLException);
10733 ::com::sun::star::sdbc::XConnection getConnection() raises (::com::sun::star::sdbc::SQLException);
10735 published service Statement {
10736 interface ::com::sun::star::sdbc::XCloseable;
10737 interface ::com::sun::star::beans::XPropertySet;
10738 interface ::com::sun::star::sdbc::XStatement;
10739 interface ::com::sun::star::sdbc::XWarningsSupplier;
10740 [optional] interface ::com::sun::star::lang::XComponent;
10741 [optional] interface ::com::sun::star::util::XCancellable;
10742 [optional] interface ::com::sun::star::sdbc::XBatchExecution;
10743 [optional] interface ::com::sun::star::sdbc::XMultipleResults;
10744 [property] long QueryTimeOut;
10745 [property] long MaxFieldSize;
10746 [property] long MaxRows;
10747 [property] string CursorName;
10748 [property] long ResultSetConcurrency;
10749 [property] long ResultSetType;
10750 [property] long FetchDirection;
10751 [property] long FetchSize;
10752 [property] boolean EscapeProcessing;
10754 published constants TransactionIsolation {
10755 const long NONE = 0;
10756 const long READ_COMMITTED = 2;
10757 const long READ_UNCOMMITTED = 1;
10758 const long REPEATABLE_READ = 4;
10759 const long SERIALIZABLE = 8;
10761 published interface XArray {
10762 interface ::com::sun::star::uno::XInterface;
10763 string getBaseTypeName() raises (::com::sun::star::sdbc::SQLException);
10764 long getBaseType() raises (::com::sun::star::sdbc::SQLException);
10765 sequence< any > getArray([in] ::com::sun::star::container::XNameAccess typeMap) raises (::com::sun::star::sdbc::SQLException);
10766 sequence< any > getArrayAtIndex([in] long index, [in] long count, [in] ::com::sun::star::container::XNameAccess typeMap) raises (::com::sun::star::sdbc::SQLException);
10767 ::com::sun::star::sdbc::XResultSet getResultSet([in] ::com::sun::star::container::XNameAccess typeMap) raises (::com::sun::star::sdbc::SQLException);
10768 ::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);
10770 published interface XBlob {
10771 interface ::com::sun::star::uno::XInterface;
10772 hyper length() raises (::com::sun::star::sdbc::SQLException);
10773 sequence< byte > getBytes([in] hyper pos, [in] long length) raises (::com::sun::star::sdbc::SQLException);
10774 ::com::sun::star::io::XInputStream getBinaryStream() raises (::com::sun::star::sdbc::SQLException);
10775 hyper position([in] sequence< byte > pattern, [in] hyper start) raises (::com::sun::star::sdbc::SQLException);
10776 hyper positionOfBlob([in] ::com::sun::star::sdbc::XBlob pattern, [in] hyper start) raises (::com::sun::star::sdbc::SQLException);
10778 published interface XClob {
10779 interface ::com::sun::star::uno::XInterface;
10780 hyper length() raises (::com::sun::star::sdbc::SQLException);
10781 string getSubString([in] hyper pos, [in] long length) raises (::com::sun::star::sdbc::SQLException);
10782 ::com::sun::star::io::XInputStream getCharacterStream() raises (::com::sun::star::sdbc::SQLException);
10783 hyper position([in] string searchstr, [in] long start) raises (::com::sun::star::sdbc::SQLException);
10784 hyper positionOfClob([in] ::com::sun::star::sdbc::XClob pattern, [in] hyper start) raises (::com::sun::star::sdbc::SQLException);
10786 published interface XDatabaseMetaData {
10787 interface ::com::sun::star::uno::XInterface;
10788 boolean allProceduresAreCallable() raises (::com::sun::star::sdbc::SQLException);
10789 boolean allTablesAreSelectable() raises (::com::sun::star::sdbc::SQLException);
10790 string getURL() raises (::com::sun::star::sdbc::SQLException);
10791 string getUserName() raises (::com::sun::star::sdbc::SQLException);
10792 boolean isReadOnly() raises (::com::sun::star::sdbc::SQLException);
10793 boolean nullsAreSortedHigh() raises (::com::sun::star::sdbc::SQLException);
10794 boolean nullsAreSortedLow() raises (::com::sun::star::sdbc::SQLException);
10795 boolean nullsAreSortedAtStart() raises (::com::sun::star::sdbc::SQLException);
10796 boolean nullsAreSortedAtEnd() raises (::com::sun::star::sdbc::SQLException);
10797 string getDatabaseProductName() raises (::com::sun::star::sdbc::SQLException);
10798 string getDatabaseProductVersion() raises (::com::sun::star::sdbc::SQLException);
10799 string getDriverName() raises (::com::sun::star::sdbc::SQLException);
10800 string getDriverVersion() raises (::com::sun::star::sdbc::SQLException);
10801 long getDriverMajorVersion();
10802 long getDriverMinorVersion();
10803 boolean usesLocalFiles() raises (::com::sun::star::sdbc::SQLException);
10804 boolean usesLocalFilePerTable() raises (::com::sun::star::sdbc::SQLException);
10805 boolean supportsMixedCaseIdentifiers() raises (::com::sun::star::sdbc::SQLException);
10806 boolean storesUpperCaseIdentifiers() raises (::com::sun::star::sdbc::SQLException);
10807 boolean storesLowerCaseIdentifiers() raises (::com::sun::star::sdbc::SQLException);
10808 boolean storesMixedCaseIdentifiers() raises (::com::sun::star::sdbc::SQLException);
10809 boolean supportsMixedCaseQuotedIdentifiers() raises (::com::sun::star::sdbc::SQLException);
10810 boolean storesUpperCaseQuotedIdentifiers() raises (::com::sun::star::sdbc::SQLException);
10811 boolean storesLowerCaseQuotedIdentifiers() raises (::com::sun::star::sdbc::SQLException);
10812 boolean storesMixedCaseQuotedIdentifiers() raises (::com::sun::star::sdbc::SQLException);
10813 string getIdentifierQuoteString() raises (::com::sun::star::sdbc::SQLException);
10814 string getSQLKeywords() raises (::com::sun::star::sdbc::SQLException);
10815 string getNumericFunctions() raises (::com::sun::star::sdbc::SQLException);
10816 string getStringFunctions() raises (::com::sun::star::sdbc::SQLException);
10817 string getSystemFunctions() raises (::com::sun::star::sdbc::SQLException);
10818 string getTimeDateFunctions() raises (::com::sun::star::sdbc::SQLException);
10819 string getSearchStringEscape() raises (::com::sun::star::sdbc::SQLException);
10820 string getExtraNameCharacters() raises (::com::sun::star::sdbc::SQLException);
10821 boolean supportsAlterTableWithAddColumn() raises (::com::sun::star::sdbc::SQLException);
10822 boolean supportsAlterTableWithDropColumn() raises (::com::sun::star::sdbc::SQLException);
10823 boolean supportsColumnAliasing() raises (::com::sun::star::sdbc::SQLException);
10824 boolean nullPlusNonNullIsNull() raises (::com::sun::star::sdbc::SQLException);
10825 boolean supportsTypeConversion() raises (::com::sun::star::sdbc::SQLException);
10826 boolean supportsConvert([in] long fromType, [in] long toType) raises (::com::sun::star::sdbc::SQLException);
10827 boolean supportsTableCorrelationNames() raises (::com::sun::star::sdbc::SQLException);
10828 boolean supportsDifferentTableCorrelationNames() raises (::com::sun::star::sdbc::SQLException);
10829 boolean supportsExpressionsInOrderBy() raises (::com::sun::star::sdbc::SQLException);
10830 boolean supportsOrderByUnrelated() raises (::com::sun::star::sdbc::SQLException);
10831 boolean supportsGroupBy() raises (::com::sun::star::sdbc::SQLException);
10832 boolean supportsGroupByUnrelated() raises (::com::sun::star::sdbc::SQLException);
10833 boolean supportsGroupByBeyondSelect() raises (::com::sun::star::sdbc::SQLException);
10834 boolean supportsLikeEscapeClause() raises (::com::sun::star::sdbc::SQLException);
10835 boolean supportsMultipleResultSets() raises (::com::sun::star::sdbc::SQLException);
10836 boolean supportsMultipleTransactions() raises (::com::sun::star::sdbc::SQLException);
10837 boolean supportsNonNullableColumns() raises (::com::sun::star::sdbc::SQLException);
10838 boolean supportsMinimumSQLGrammar() raises (::com::sun::star::sdbc::SQLException);
10839 boolean supportsCoreSQLGrammar() raises (::com::sun::star::sdbc::SQLException);
10840 boolean supportsExtendedSQLGrammar() raises (::com::sun::star::sdbc::SQLException);
10841 boolean supportsANSI92EntryLevelSQL() raises (::com::sun::star::sdbc::SQLException);
10842 boolean supportsANSI92IntermediateSQL() raises (::com::sun::star::sdbc::SQLException);
10843 boolean supportsANSI92FullSQL() raises (::com::sun::star::sdbc::SQLException);
10844 boolean supportsIntegrityEnhancementFacility() raises (::com::sun::star::sdbc::SQLException);
10845 boolean supportsOuterJoins() raises (::com::sun::star::sdbc::SQLException);
10846 boolean supportsFullOuterJoins() raises (::com::sun::star::sdbc::SQLException);
10847 boolean supportsLimitedOuterJoins() raises (::com::sun::star::sdbc::SQLException);
10848 string getSchemaTerm() raises (::com::sun::star::sdbc::SQLException);
10849 string getProcedureTerm() raises (::com::sun::star::sdbc::SQLException);
10850 string getCatalogTerm() raises (::com::sun::star::sdbc::SQLException);
10851 boolean isCatalogAtStart() raises (::com::sun::star::sdbc::SQLException);
10852 string getCatalogSeparator() raises (::com::sun::star::sdbc::SQLException);
10853 boolean supportsSchemasInDataManipulation() raises (::com::sun::star::sdbc::SQLException);
10854 boolean supportsSchemasInProcedureCalls() raises (::com::sun::star::sdbc::SQLException);
10855 boolean supportsSchemasInTableDefinitions() raises (::com::sun::star::sdbc::SQLException);
10856 boolean supportsSchemasInIndexDefinitions() raises (::com::sun::star::sdbc::SQLException);
10857 boolean supportsSchemasInPrivilegeDefinitions() raises (::com::sun::star::sdbc::SQLException);
10858 boolean supportsCatalogsInDataManipulation() raises (::com::sun::star::sdbc::SQLException);
10859 boolean supportsCatalogsInProcedureCalls() raises (::com::sun::star::sdbc::SQLException);
10860 boolean supportsCatalogsInTableDefinitions() raises (::com::sun::star::sdbc::SQLException);
10861 boolean supportsCatalogsInIndexDefinitions() raises (::com::sun::star::sdbc::SQLException);
10862 boolean supportsCatalogsInPrivilegeDefinitions() raises (::com::sun::star::sdbc::SQLException);
10863 boolean supportsPositionedDelete() raises (::com::sun::star::sdbc::SQLException);
10864 boolean supportsPositionedUpdate() raises (::com::sun::star::sdbc::SQLException);
10865 boolean supportsSelectForUpdate() raises (::com::sun::star::sdbc::SQLException);
10866 boolean supportsStoredProcedures() raises (::com::sun::star::sdbc::SQLException);
10867 boolean supportsSubqueriesInComparisons() raises (::com::sun::star::sdbc::SQLException);
10868 boolean supportsSubqueriesInExists() raises (::com::sun::star::sdbc::SQLException);
10869 boolean supportsSubqueriesInIns() raises (::com::sun::star::sdbc::SQLException);
10870 boolean supportsSubqueriesInQuantifieds() raises (::com::sun::star::sdbc::SQLException);
10871 boolean supportsCorrelatedSubqueries() raises (::com::sun::star::sdbc::SQLException);
10872 boolean supportsUnion() raises (::com::sun::star::sdbc::SQLException);
10873 boolean supportsUnionAll() raises (::com::sun::star::sdbc::SQLException);
10874 boolean supportsOpenCursorsAcrossCommit() raises (::com::sun::star::sdbc::SQLException);
10875 boolean supportsOpenCursorsAcrossRollback() raises (::com::sun::star::sdbc::SQLException);
10876 boolean supportsOpenStatementsAcrossCommit() raises (::com::sun::star::sdbc::SQLException);
10877 boolean supportsOpenStatementsAcrossRollback() raises (::com::sun::star::sdbc::SQLException);
10878 long getMaxBinaryLiteralLength() raises (::com::sun::star::sdbc::SQLException);
10879 long getMaxCharLiteralLength() raises (::com::sun::star::sdbc::SQLException);
10880 long getMaxColumnNameLength() raises (::com::sun::star::sdbc::SQLException);
10881 long getMaxColumnsInGroupBy() raises (::com::sun::star::sdbc::SQLException);
10882 long getMaxColumnsInIndex() raises (::com::sun::star::sdbc::SQLException);
10883 long getMaxColumnsInOrderBy() raises (::com::sun::star::sdbc::SQLException);
10884 long getMaxColumnsInSelect() raises (::com::sun::star::sdbc::SQLException);
10885 long getMaxColumnsInTable() raises (::com::sun::star::sdbc::SQLException);
10886 long getMaxConnections() raises (::com::sun::star::sdbc::SQLException);
10887 long getMaxCursorNameLength() raises (::com::sun::star::sdbc::SQLException);
10888 long getMaxIndexLength() raises (::com::sun::star::sdbc::SQLException);
10889 long getMaxSchemaNameLength() raises (::com::sun::star::sdbc::SQLException);
10890 long getMaxProcedureNameLength() raises (::com::sun::star::sdbc::SQLException);
10891 long getMaxCatalogNameLength() raises (::com::sun::star::sdbc::SQLException);
10892 long getMaxRowSize() raises (::com::sun::star::sdbc::SQLException);
10893 boolean doesMaxRowSizeIncludeBlobs() raises (::com::sun::star::sdbc::SQLException);
10894 long getMaxStatementLength() raises (::com::sun::star::sdbc::SQLException);
10895 long getMaxStatements() raises (::com::sun::star::sdbc::SQLException);
10896 long getMaxTableNameLength() raises (::com::sun::star::sdbc::SQLException);
10897 long getMaxTablesInSelect() raises (::com::sun::star::sdbc::SQLException);
10898 long getMaxUserNameLength() raises (::com::sun::star::sdbc::SQLException);
10899 long getDefaultTransactionIsolation() raises (::com::sun::star::sdbc::SQLException);
10900 boolean supportsTransactions() raises (::com::sun::star::sdbc::SQLException);
10901 boolean supportsTransactionIsolationLevel([in] long level) raises (::com::sun::star::sdbc::SQLException);
10902 boolean supportsDataDefinitionAndDataManipulationTransactions() raises (::com::sun::star::sdbc::SQLException);
10903 boolean supportsDataManipulationTransactionsOnly() raises (::com::sun::star::sdbc::SQLException);
10904 boolean dataDefinitionCausesTransactionCommit() raises (::com::sun::star::sdbc::SQLException);
10905 boolean dataDefinitionIgnoredInTransactions() raises (::com::sun::star::sdbc::SQLException);
10906 ::com::sun::star::sdbc::XResultSet getProcedures([in] any catalog, [in] string schemaPattern, [in] string procedureNamePattern) raises (::com::sun::star::sdbc::SQLException);
10907 ::com::sun::star::sdbc::XResultSet getProcedureColumns([in] any catalog, [in] string schemaPattern, [in] string procedureNamePattern, [in] string columnNamePattern) raises (::com::sun::star::sdbc::SQLException);
10908 ::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);
10909 ::com::sun::star::sdbc::XResultSet getSchemas() raises (::com::sun::star::sdbc::SQLException);
10910 ::com::sun::star::sdbc::XResultSet getCatalogs() raises (::com::sun::star::sdbc::SQLException);
10911 ::com::sun::star::sdbc::XResultSet getTableTypes() raises (::com::sun::star::sdbc::SQLException);
10912 ::com::sun::star::sdbc::XResultSet getColumns([in] any catalog, [in] string schemaPattern, [in] string tableNamePattern, [in] string columnNamePattern) raises (::com::sun::star::sdbc::SQLException);
10913 ::com::sun::star::sdbc::XResultSet getColumnPrivileges([in] any catalog, [in] string schema, [in] string table, [in] string columnNamePattern) raises (::com::sun::star::sdbc::SQLException);
10914 ::com::sun::star::sdbc::XResultSet getTablePrivileges([in] any catalog, [in] string schemaPattern, [in] string tableNamePattern) raises (::com::sun::star::sdbc::SQLException);
10915 ::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);
10916 ::com::sun::star::sdbc::XResultSet getVersionColumns([in] any catalog, [in] string schema, [in] string table) raises (::com::sun::star::sdbc::SQLException);
10917 ::com::sun::star::sdbc::XResultSet getPrimaryKeys([in] any catalog, [in] string schema, [in] string table) raises (::com::sun::star::sdbc::SQLException);
10918 ::com::sun::star::sdbc::XResultSet getImportedKeys([in] any catalog, [in] string schema, [in] string table) raises (::com::sun::star::sdbc::SQLException);
10919 ::com::sun::star::sdbc::XResultSet getExportedKeys([in] any catalog, [in] string schema, [in] string table) raises (::com::sun::star::sdbc::SQLException);
10920 ::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);
10921 ::com::sun::star::sdbc::XResultSet getTypeInfo() raises (::com::sun::star::sdbc::SQLException);
10922 ::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);
10923 boolean supportsResultSetType([in] long setType) raises (::com::sun::star::sdbc::SQLException);
10924 boolean supportsResultSetConcurrency([in] long setType, [in] long concurrency) raises (::com::sun::star::sdbc::SQLException);
10925 boolean ownUpdatesAreVisible([in] long setType) raises (::com::sun::star::sdbc::SQLException);
10926 boolean ownDeletesAreVisible([in] long setType) raises (::com::sun::star::sdbc::SQLException);
10927 boolean ownInsertsAreVisible([in] long setType) raises (::com::sun::star::sdbc::SQLException);
10928 boolean othersUpdatesAreVisible([in] long setType) raises (::com::sun::star::sdbc::SQLException);
10929 boolean othersDeletesAreVisible([in] long setType) raises (::com::sun::star::sdbc::SQLException);
10930 boolean othersInsertsAreVisible([in] long setType) raises (::com::sun::star::sdbc::SQLException);
10931 boolean updatesAreDetected([in] long setType) raises (::com::sun::star::sdbc::SQLException);
10932 boolean deletesAreDetected([in] long setType) raises (::com::sun::star::sdbc::SQLException);
10933 boolean insertsAreDetected([in] long setType) raises (::com::sun::star::sdbc::SQLException);
10934 boolean supportsBatchUpdates() raises (::com::sun::star::sdbc::SQLException);
10935 ::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);
10936 ::com::sun::star::sdbc::XConnection getConnection() raises (::com::sun::star::sdbc::SQLException);
10938 published interface XGeneratedResultSet {
10939 interface ::com::sun::star::uno::XInterface;
10940 ::com::sun::star::sdbc::XResultSet getGeneratedValues() raises (::com::sun::star::sdbc::SQLException);
10942 published interface XPooledConnection {
10943 interface ::com::sun::star::uno::XInterface;
10944 ::com::sun::star::sdbc::XConnection getConnection() raises (::com::sun::star::sdbc::SQLException);
10946 published interface XRef {
10947 interface ::com::sun::star::uno::XInterface;
10948 string getBaseTypeName() raises (::com::sun::star::sdbc::SQLException);
10950 published interface XResultSetMetaData {
10951 interface ::com::sun::star::uno::XInterface;
10952 long getColumnCount() raises (::com::sun::star::sdbc::SQLException);
10953 boolean isAutoIncrement([in] long column) raises (::com::sun::star::sdbc::SQLException);
10954 boolean isCaseSensitive([in] long column) raises (::com::sun::star::sdbc::SQLException);
10955 boolean isSearchable([in] long column) raises (::com::sun::star::sdbc::SQLException);
10956 boolean isCurrency([in] long column) raises (::com::sun::star::sdbc::SQLException);
10957 long isNullable([in] long column) raises (::com::sun::star::sdbc::SQLException);
10958 boolean isSigned([in] long column) raises (::com::sun::star::sdbc::SQLException);
10959 long getColumnDisplaySize([in] long column) raises (::com::sun::star::sdbc::SQLException);
10960 string getColumnLabel([in] long column) raises (::com::sun::star::sdbc::SQLException);
10961 string getColumnName([in] long column) raises (::com::sun::star::sdbc::SQLException);
10962 string getSchemaName([in] long column) raises (::com::sun::star::sdbc::SQLException);
10963 long getPrecision([in] long column) raises (::com::sun::star::sdbc::SQLException);
10964 long getScale([in] long column) raises (::com::sun::star::sdbc::SQLException);
10965 string getTableName([in] long column) raises (::com::sun::star::sdbc::SQLException);
10966 string getCatalogName([in] long column) raises (::com::sun::star::sdbc::SQLException);
10967 long getColumnType([in] long column) raises (::com::sun::star::sdbc::SQLException);
10968 string getColumnTypeName([in] long column) raises (::com::sun::star::sdbc::SQLException);
10969 boolean isReadOnly([in] long column) raises (::com::sun::star::sdbc::SQLException);
10970 boolean isWritable([in] long column) raises (::com::sun::star::sdbc::SQLException);
10971 boolean isDefinitelyWritable([in] long column) raises (::com::sun::star::sdbc::SQLException);
10972 string getColumnServiceName([in] long column) raises (::com::sun::star::sdbc::SQLException);
10974 published interface XRowSetListener {
10975 interface ::com::sun::star::lang::XEventListener;
10976 void cursorMoved([in] ::com::sun::star::lang::EventObject event);
10977 /** @deprecated */ void rowChanged([in] ::com::sun::star::lang::EventObject event);
10978 void rowSetChanged([in] ::com::sun::star::lang::EventObject event);
10980 published interface XSQLInput;
10981 published interface XSQLOutput;
10982 published interface XSQLData {
10983 interface ::com::sun::star::uno::XInterface;
10984 string getSQLTypeName() raises (::com::sun::star::sdbc::SQLException);
10985 void readSQL([in] ::com::sun::star::sdbc::XSQLInput stream, [in] string typeName) raises (::com::sun::star::sdbc::SQLException);
10986 void writeSQL([in] ::com::sun::star::sdbc::XSQLOutput stream) raises (::com::sun::star::sdbc::SQLException);
10988 published interface XSQLInput {
10989 interface ::com::sun::star::uno::XInterface;
10990 string readString() raises (::com::sun::star::sdbc::SQLException);
10991 boolean readBoolean() raises (::com::sun::star::sdbc::SQLException);
10992 byte readByte() raises (::com::sun::star::sdbc::SQLException);
10993 short readShort() raises (::com::sun::star::sdbc::SQLException);
10994 long readInt() raises (::com::sun::star::sdbc::SQLException);
10995 hyper readLong() raises (::com::sun::star::sdbc::SQLException);
10996 float readFloat() raises (::com::sun::star::sdbc::SQLException);
10997 double readDouble() raises (::com::sun::star::sdbc::SQLException);
10998 sequence< byte > readBytes() raises (::com::sun::star::sdbc::SQLException);
10999 ::com::sun::star::util::Date readDate() raises (::com::sun::star::sdbc::SQLException);
11000 ::com::sun::star::util::Time readTime() raises (::com::sun::star::sdbc::SQLException);
11001 ::com::sun::star::util::DateTime readTimestamp() raises (::com::sun::star::sdbc::SQLException);
11002 ::com::sun::star::io::XInputStream readBinaryStream() raises (::com::sun::star::sdbc::SQLException);
11003 ::com::sun::star::io::XInputStream readCharacterStream() raises (::com::sun::star::sdbc::SQLException);
11004 any readObject() raises (::com::sun::star::sdbc::SQLException);
11005 ::com::sun::star::sdbc::XRef readRef() raises (::com::sun::star::sdbc::SQLException);
11006 ::com::sun::star::sdbc::XBlob readBlob() raises (::com::sun::star::sdbc::SQLException);
11007 ::com::sun::star::sdbc::XClob readClob() raises (::com::sun::star::sdbc::SQLException);
11008 ::com::sun::star::sdbc::XArray readArray() raises (::com::sun::star::sdbc::SQLException);
11009 boolean wasNull() raises (::com::sun::star::sdbc::SQLException);
11011 published interface XStruct;
11012 published interface XSQLOutput {
11013 interface ::com::sun::star::uno::XInterface;
11014 void writeString([in] string x) raises (::com::sun::star::sdbc::SQLException);
11015 void writeBoolean([in] boolean x) raises (::com::sun::star::sdbc::SQLException);
11016 void writeByte([in] byte x) raises (::com::sun::star::sdbc::SQLException);
11017 void writeShort([in] short x) raises (::com::sun::star::sdbc::SQLException);
11018 void writeInt([in] long x) raises (::com::sun::star::sdbc::SQLException);
11019 void writeLong([in] hyper x) raises (::com::sun::star::sdbc::SQLException);
11020 void writeFloat([in] float x) raises (::com::sun::star::sdbc::SQLException);
11021 void writeDouble([in] double x) raises (::com::sun::star::sdbc::SQLException);
11022 void writeBytes([in] sequence< byte > x) raises (::com::sun::star::sdbc::SQLException);
11023 void writeDate([in] ::com::sun::star::util::Date x) raises (::com::sun::star::sdbc::SQLException);
11024 void writeTime([in] ::com::sun::star::util::Time x) raises (::com::sun::star::sdbc::SQLException);
11025 void writeTimestamp([in] ::com::sun::star::util::DateTime x) raises (::com::sun::star::sdbc::SQLException);
11026 void writeBinaryStream([in] ::com::sun::star::io::XInputStream x) raises (::com::sun::star::sdbc::SQLException);
11027 void writeCharacterStream([in] ::com::sun::star::io::XInputStream x) raises (::com::sun::star::sdbc::SQLException);
11028 void writeObject([in] ::com::sun::star::sdbc::XSQLData x) raises (::com::sun::star::sdbc::SQLException);
11029 void writeRef([in] ::com::sun::star::sdbc::XRef x) raises (::com::sun::star::sdbc::SQLException);
11030 void writeBlob([in] ::com::sun::star::sdbc::XBlob x) raises (::com::sun::star::sdbc::SQLException);
11031 void writeClob([in] ::com::sun::star::sdbc::XClob x) raises (::com::sun::star::sdbc::SQLException);
11032 void writeStruct([in] ::com::sun::star::sdbc::XStruct x) raises (::com::sun::star::sdbc::SQLException);
11033 void writeArray([in] ::com::sun::star::sdbc::XArray x) raises (::com::sun::star::sdbc::SQLException);
11035 published interface XStruct {
11036 interface ::com::sun::star::uno::XInterface;
11037 string getSQLTypeName() raises (::com::sun::star::sdbc::SQLException);
11038 sequence< any > getAttributes([in] ::com::sun::star::container::XNameAccess typeMap) raises (::com::sun::star::sdbc::SQLException);
11041 module sdbcx {
11042 published constants CheckOption {
11043 const long CASCADE = 2;
11044 const long LOCAL = 3;
11045 const long NONE = 0;
11047 published service ColumnDescriptor {
11048 service ::com::sun::star::sdbcx::Descriptor;
11049 [property] long Type;
11050 [property] string TypeName;
11051 [property] long Precision;
11052 [property] long Scale;
11053 [property] long IsNullable;
11054 [property] boolean IsAutoIncrement;
11055 [property, optional] boolean IsRowVersion;
11056 [property, optional] string Description;
11057 [property, optional] string DefaultValue;
11058 [property, optional] string AutoIncrementCreation;
11060 published constants CompareBookmark {
11061 const long EQUAL = 0;
11062 const long GREATER = 1;
11063 const long LESS = -1;
11064 const long NOT_COMPARABLE = 3;
11065 const long NOT_EQUAL = 2;
11067 published interface XAppend {
11068 interface ::com::sun::star::uno::XInterface;
11069 void appendByDescriptor([in] ::com::sun::star::beans::XPropertySet descriptor) raises (::com::sun::star::sdbc::SQLException, ::com::sun::star::container::ElementExistException);
11071 published interface XDrop {
11072 interface ::com::sun::star::uno::XInterface;
11073 void dropByName([in] string elementName) raises (::com::sun::star::sdbc::SQLException, ::com::sun::star::container::NoSuchElementException);
11074 void dropByIndex([in] long index) raises (::com::sun::star::sdbc::SQLException, ::com::sun::star::lang::IndexOutOfBoundsException);
11076 published service Container {
11077 interface ::com::sun::star::container::XNameAccess;
11078 interface ::com::sun::star::container::XIndexAccess;
11079 interface ::com::sun::star::container::XEnumerationAccess;
11080 [optional] interface ::com::sun::star::util::XRefreshable;
11081 [optional] interface ::com::sun::star::sdbcx::XDataDescriptorFactory;
11082 [optional] interface ::com::sun::star::sdbcx::XAppend;
11083 [optional] interface ::com::sun::star::sdbcx::XDrop;
11085 published interface XCreateCatalog {
11086 interface ::com::sun::star::uno::XInterface;
11087 void createCatalog([in] sequence< ::com::sun::star::beans::PropertyValue > info) raises (::com::sun::star::sdbc::SQLException, ::com::sun::star::container::ElementExistException);
11089 published interface XDataDefinitionSupplier {
11090 interface ::com::sun::star::uno::XInterface;
11091 ::com::sun::star::sdbcx::XTablesSupplier getDataDefinitionByConnection([in] ::com::sun::star::sdbc::XConnection connection) raises (::com::sun::star::sdbc::SQLException);
11092 ::com::sun::star::sdbcx::XTablesSupplier getDataDefinitionByURL([in] string url, [in] sequence< ::com::sun::star::beans::PropertyValue > info) raises (::com::sun::star::sdbc::SQLException);
11094 published interface XDropCatalog {
11095 interface ::com::sun::star::uno::XInterface;
11096 void dropCatalog([in] string catalogName, [in] sequence< ::com::sun::star::beans::PropertyValue > info) raises (::com::sun::star::sdbc::SQLException, ::com::sun::star::container::NoSuchElementException);
11098 published service Driver {
11099 service ::com::sun::star::sdbc::Driver;
11100 interface ::com::sun::star::sdbcx::XDataDefinitionSupplier;
11101 [optional] interface ::com::sun::star::sdbcx::XCreateCatalog;
11102 [optional] interface ::com::sun::star::sdbcx::XDropCatalog;
11104 published interface XAuthorizable {
11105 interface ::com::sun::star::uno::XInterface;
11106 long getPrivileges([in] string objName, [in] long objType) raises (::com::sun::star::sdbc::SQLException);
11107 long getGrantablePrivileges([in] string objName, [in] long objType) raises (::com::sun::star::sdbc::SQLException);
11108 void grantPrivileges([in] string objName, [in] long objType, [in] long objPrivileges) raises (::com::sun::star::sdbc::SQLException);
11109 void revokePrivileges([in] string objName, [in] long objType, [in] long objPrivileges) raises (::com::sun::star::sdbc::SQLException);
11111 published service Group {
11112 interface ::com::sun::star::sdbcx::XUsersSupplier;
11113 interface ::com::sun::star::sdbcx::XAuthorizable;
11114 interface ::com::sun::star::beans::XPropertySet;
11115 [property, readonly] string Name;
11117 published service GroupDescriptor {
11118 service ::com::sun::star::sdbcx::Descriptor;
11119 [property] string Name;
11121 published service Index {
11122 interface ::com::sun::star::sdbcx::XColumnsSupplier;
11123 interface ::com::sun::star::beans::XPropertySet;
11124 [optional] interface ::com::sun::star::sdbcx::XDataDescriptorFactory;
11125 [property, readonly] string Name;
11126 [property, readonly] string Catalog;
11127 [property, readonly] boolean IsUnique;
11128 [property, readonly] boolean IsPrimaryKeyIndex;
11129 [property, readonly] boolean IsClustered;
11131 published service IndexColumn {
11132 service ::com::sun::star::sdbcx::Column;
11133 [property, readonly] boolean IsAscending;
11135 published service IndexColumnDescriptor {
11136 service ::com::sun::star::sdbcx::Descriptor;
11137 [property] boolean IsAscending;
11139 published service IndexDescriptor {
11140 service ::com::sun::star::sdbcx::Descriptor;
11141 interface ::com::sun::star::sdbcx::XColumnsSupplier;
11142 [property] string Catalog;
11143 [property] boolean IsUnique;
11144 [property] boolean IsClustered;
11146 published service Key {
11147 interface ::com::sun::star::sdbcx::XColumnsSupplier;
11148 interface ::com::sun::star::beans::XPropertySet;
11149 [optional] interface ::com::sun::star::sdbcx::XDataDescriptorFactory;
11150 [property, readonly] string Name;
11151 [property, readonly] long Type;
11152 [property, readonly] string ReferencedTable;
11153 [property, readonly] long UpdateRule;
11154 [property, readonly] long DeleteRule;
11156 published service KeyColumn {
11157 service ::com::sun::star::sdbcx::Column;
11158 [property, readonly] string RelatedColumn;
11160 published service KeyColumnDescriptor {
11161 service ::com::sun::star::sdbcx::Descriptor;
11162 [property] string RelatedColumn;
11164 published service KeyDescriptor {
11165 service ::com::sun::star::sdbcx::Descriptor;
11166 interface ::com::sun::star::sdbcx::XColumnsSupplier;
11167 [property] long Type;
11168 [property] string ReferencedTable;
11169 [property] long UpdateRule;
11170 [property] long DeleteRule;
11172 published constants KeyType {
11173 const long FOREIGN = 3;
11174 const long PRIMARY = 1;
11175 const long UNIQUE = 2;
11177 published service PreparedStatement {
11178 service ::com::sun::star::sdbc::PreparedStatement;
11179 [property] boolean UseBookmarks;
11181 published constants Privilege {
11182 const long ALTER = 64;
11183 const long CREATE = 32;
11184 const long DELETE = 8;
11185 const long DROP = 256;
11186 const long INSERT = 2;
11187 const long READ = 16;
11188 const long REFERENCE = 128;
11189 const long SELECT = 1;
11190 const long UPDATE = 4;
11192 published constants PrivilegeObject {
11193 const long COLUMN = 2;
11194 const long TABLE = 0;
11195 const long VIEW = 1;
11197 published service ReferenceColumn {
11198 service ::com::sun::star::sdbcx::Column;
11199 [property, readonly] string ReferencedColumn;
11201 published service Statement {
11202 service ::com::sun::star::sdbc::Statement;
11203 [property] boolean UseBookmarks;
11205 published interface XUser {
11206 interface ::com::sun::star::sdbcx::XAuthorizable;
11207 void changePassword([in] string oldPassword, [in] string newPassword) raises (::com::sun::star::sdbc::SQLException);
11209 published service User {
11210 interface ::com::sun::star::sdbcx::XUser;
11211 interface ::com::sun::star::beans::XPropertySet;
11212 [optional] interface ::com::sun::star::sdbcx::XGroupsSupplier;
11213 [property, readonly] string Name;
11215 published service UserDescriptor {
11216 service ::com::sun::star::sdbcx::Descriptor;
11217 [property] string Password;
11219 interface XAlterView {
11220 interface ::com::sun::star::uno::XInterface;
11221 void alterCommand([in] string NewCommand) raises (::com::sun::star::sdbc::SQLException);
11223 published service View {
11224 interface ::com::sun::star::beans::XPropertySet;
11225 [optional] interface ::com::sun::star::sdbcx::XRename;
11226 [optional] interface ::com::sun::star::sdbcx::XAlterView;
11227 [property, readonly] string Name;
11228 [property, readonly] string CatalogName;
11229 [property, readonly] string SchemaName;
11230 [property, readonly] string Command;
11231 [property, readonly] long CheckOption;
11233 published service ViewDescriptor {
11234 service ::com::sun::star::sdbcx::Descriptor;
11235 [property] string CatalogName;
11236 [property] string SchemaName;
11237 [property] string Command;
11238 [property] long CheckOption;
11241 module sheet {
11242 published interface XSpreadsheet;
11243 published struct ActivationEvent: ::com::sun::star::lang::EventObject {
11244 ::com::sun::star::sheet::XSpreadsheet ActiveSheet;
11246 published interface XAddIn {
11247 interface ::com::sun::star::lang::XLocalizable;
11248 string getProgrammaticFuntionName([in] string aDisplayName);
11249 string getDisplayFunctionName([in] string aProgrammaticName);
11250 string getFunctionDescription([in] string aProgrammaticName);
11251 string getDisplayArgumentName([in] string aProgrammaticFunctionName, [in] long nArgument);
11252 string getArgumentDescription([in] string aProgrammaticFunctionName, [in] long nArgument);
11253 string getProgrammaticCategoryName([in] string aProgrammaticFunctionName);
11254 string getDisplayCategoryName([in] string aProgrammaticFunctionName);
11256 published struct LocalizedName {
11257 ::com::sun::star::lang::Locale Locale;
11258 string Name;
11260 published interface XCompatibilityNames {
11261 interface ::com::sun::star::uno::XInterface;
11262 sequence< ::com::sun::star::sheet::LocalizedName > getCompatibilityNames([in] string aProgrammaticName);
11264 published service AddIn {
11265 interface ::com::sun::star::lang::XServiceName;
11266 interface ::com::sun::star::sheet::XAddIn;
11267 [optional] interface ::com::sun::star::sheet::XCompatibilityNames;
11269 published enum Border {
11270 TOP = 0,
11271 BOTTOM = 1,
11272 RIGHT = 2,
11273 LEFT = 3
11275 published interface XSheetAnnotation {
11276 interface ::com::sun::star::uno::XInterface;
11277 ::com::sun::star::table::CellAddress getPosition();
11278 string getAuthor();
11279 string getDate();
11280 boolean getIsVisible();
11281 void setIsVisible([in] boolean bIsVisible);
11283 published interface XSheetAnnotationShapeSupplier {
11284 interface ::com::sun::star::uno::XInterface;
11285 ::com::sun::star::drawing::XShape getAnnotationShape();
11287 published service CellAnnotation {
11288 interface ::com::sun::star::sheet::XSheetAnnotation;
11289 interface ::com::sun::star::container::XChild;
11290 interface ::com::sun::star::text::XSimpleText;
11291 [optional] interface ::com::sun::star::sheet::XSheetAnnotationShapeSupplier;
11293 published service CellAnnotationShape {
11294 service ::com::sun::star::drawing::CaptionShape;
11296 published interface XSheetAnnotations {
11297 interface ::com::sun::star::container::XIndexAccess;
11298 void insertNew([in] ::com::sun::star::table::CellAddress aPosition, [in] string aText);
11299 void removeByIndex([in] long nIndex);
11301 published service CellAnnotations {
11302 interface ::com::sun::star::sheet::XSheetAnnotations;
11303 interface ::com::sun::star::container::XEnumerationAccess;
11305 published service CellAnnotationsEnumeration {
11306 interface ::com::sun::star::container::XEnumeration;
11309 module table {
11310 published struct CellRangeAddress {
11311 short Sheet;
11312 long StartColumn;
11313 long StartRow;
11314 long EndColumn;
11315 long EndRow;
11318 module sheet {
11319 published interface XAreaLink {
11320 interface ::com::sun::star::uno::XInterface;
11321 string getSourceArea();
11322 void setSourceArea([in] string aSourceArea);
11323 ::com::sun::star::table::CellRangeAddress getDestArea();
11324 void setDestArea([in] ::com::sun::star::table::CellRangeAddress aDestArea);
11326 published service CellAreaLink {
11327 interface ::com::sun::star::sheet::XAreaLink;
11328 interface ::com::sun::star::util::XRefreshable;
11329 interface ::com::sun::star::beans::XPropertySet;
11330 [property] string Url;
11331 [property] string Filter;
11332 [property] string FilterOptions;
11333 /** @deprecated */ [property] long RefreshDelay;
11334 [property, optional] long RefreshPeriod;
11336 published interface XAreaLinks {
11337 interface ::com::sun::star::container::XIndexAccess;
11338 void insertAtPosition([in] ::com::sun::star::table::CellAddress aDestPos, [in] string aFileName, [in] string aSourceArea, [in] string aFilter, [in] string aFilterOptions);
11339 void removeByIndex([in] long nIndex);
11341 published service CellAreaLinks {
11342 interface ::com::sun::star::sheet::XAreaLinks;
11343 interface ::com::sun::star::container::XIndexAccess;
11344 interface ::com::sun::star::container::XEnumerationAccess;
11346 published service CellAreaLinksEnumeration {
11347 interface ::com::sun::star::container::XEnumeration;
11349 published enum CellDeleteMode {
11350 NONE = 0,
11351 UP = 1,
11352 LEFT = 2,
11353 ROWS = 3,
11354 COLUMNS = 4
11356 published constants CellFlags {
11357 const long ANNOTATION = 8;
11358 const long DATETIME = 2;
11359 const long EDITATTR = 256;
11360 const long FORMATTED = 512;
11361 const long FORMULA = 16;
11362 const long HARDATTR = 32;
11363 const long OBJECTS = 128;
11364 const long STRING = 4;
11365 const long STYLES = 64;
11366 const long VALUE = 1;
11368 published service CellFormatRanges {
11369 interface ::com::sun::star::container::XIndexAccess;
11370 interface ::com::sun::star::container::XEnumerationAccess;
11372 published service CellFormatRangesEnumeration {
11373 interface ::com::sun::star::container::XEnumeration;
11375 published enum CellInsertMode {
11376 NONE = 0,
11377 DOWN = 1,
11378 RIGHT = 2,
11379 ROWS = 3,
11380 COLUMNS = 4
11382 published service Cells {
11383 interface ::com::sun::star::container::XEnumerationAccess;
11385 published service CellsEnumeration {
11386 interface ::com::sun::star::container::XEnumeration;
11388 published enum ConditionOperator {
11389 NONE = 0,
11390 EQUAL = 1,
11391 NOT_EQUAL = 2,
11392 GREATER = 3,
11393 GREATER_EQUAL = 4,
11394 LESS = 5,
11395 LESS_EQUAL = 6,
11396 BETWEEN = 7,
11397 NOT_BETWEEN = 8,
11398 FORMULA = 9
11400 published enum GeneralFunction {
11401 NONE = 0,
11402 AUTO = 1,
11403 SUM = 2,
11404 COUNT = 3,
11405 AVERAGE = 4,
11406 MAX = 5,
11407 MIN = 6,
11408 PRODUCT = 7,
11409 COUNTNUMS = 8,
11410 STDEV = 9,
11411 STDEVP = 10,
11412 VAR = 11,
11413 VARP = 12
11415 /** @deprecated */ published interface XConsolidationDescriptor {
11416 interface ::com::sun::star::uno::XInterface;
11417 ::com::sun::star::sheet::GeneralFunction getFunction();
11418 void setFunction([in] ::com::sun::star::sheet::GeneralFunction nFunction);
11419 sequence< ::com::sun::star::table::CellRangeAddress > getSources();
11420 void setSources([in] sequence< ::com::sun::star::table::CellRangeAddress > aSources);
11421 ::com::sun::star::table::CellAddress getStartOutputPosition();
11422 void setStartOutputPosition([in] ::com::sun::star::table::CellAddress aStartOutputPosition);
11423 boolean getUseColumnHeaders();
11424 void setUseColumnHeaders([in] boolean bUseColumnHeaders);
11425 boolean getUseRowHeaders();
11426 void setUseRowHeaders([in] boolean bUseRowHeaders);
11427 boolean getInsertLinks();
11428 void setInsertLinks([in] boolean bInsertLinks);
11430 published service ConsolidationDescriptor {
11431 interface ::com::sun::star::sheet::XConsolidationDescriptor;
11433 /** @deprecated */ published interface XDDELink {
11434 interface ::com::sun::star::uno::XInterface;
11435 string getApplication();
11436 string getTopic();
11437 string getItem();
11439 published interface XDDELinkResults {
11440 interface ::com::sun::star::uno::XInterface;
11441 sequence< sequence< any > > getResults();
11442 void setResults([in] sequence< sequence< any > > aResults);
11444 published service DDELink {
11445 interface ::com::sun::star::container::XNamed;
11446 interface ::com::sun::star::sheet::XDDELink;
11447 interface ::com::sun::star::util::XRefreshable;
11448 [optional] interface ::com::sun::star::sheet::XDDELinkResults;
11450 published enum DDELinkMode {
11451 DEFAULT = 0,
11452 ENGLISH = 1,
11453 TEXT = 2
11455 published interface XDDELinks {
11456 interface ::com::sun::star::container::XNameAccess;
11457 ::com::sun::star::sheet::XDDELink addDDELink([in] string aApplication, [in] string aTopic, [in] string aItem, [in] ::com::sun::star::sheet::DDELinkMode nMode);
11459 published service DDELinks {
11460 interface ::com::sun::star::container::XNameAccess;
11461 interface ::com::sun::star::container::XIndexAccess;
11462 interface ::com::sun::star::container::XEnumerationAccess;
11463 [optional] interface ::com::sun::star::sheet::XDDELinks;
11465 published service DDELinksEnumeration {
11466 interface ::com::sun::star::container::XEnumeration;
11468 published enum DataImportMode {
11469 NONE = 0,
11470 SQL = 1,
11471 TABLE = 2,
11472 QUERY = 3
11474 published interface XDataPilotField;
11475 published interface XDataPilotDataLayoutFieldSupplier {
11476 interface ::com::sun::star::uno::XInterface;
11477 ::com::sun::star::sheet::XDataPilotField getDataLayoutField();
11479 published interface XSheetFilterDescriptor;
11480 published interface XDataPilotDescriptor {
11481 interface ::com::sun::star::container::XNamed;
11482 string getTag();
11483 void setTag([in] string aTag);
11484 ::com::sun::star::table::CellRangeAddress getSourceRange();
11485 void setSourceRange([in] ::com::sun::star::table::CellRangeAddress aSourceRange);
11486 ::com::sun::star::sheet::XSheetFilterDescriptor getFilterDescriptor();
11487 ::com::sun::star::container::XIndexAccess getDataPilotFields();
11488 ::com::sun::star::container::XIndexAccess getColumnFields();
11489 ::com::sun::star::container::XIndexAccess getRowFields();
11490 ::com::sun::star::container::XIndexAccess getPageFields();
11491 ::com::sun::star::container::XIndexAccess getDataFields();
11492 ::com::sun::star::container::XIndexAccess getHiddenFields();
11494 published service DataPilotDescriptor {
11495 interface ::com::sun::star::sheet::XDataPilotDescriptor;
11496 [optional] interface ::com::sun::star::beans::XPropertySet;
11497 [optional] interface ::com::sun::star::sheet::XDataPilotDataLayoutFieldSupplier;
11498 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > ImportDescriptor;
11499 [property, optional] string SourceServiceName;
11500 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > ServiceArguments;
11501 [property, optional] boolean IgnoreEmptyRows;
11502 [property, optional] boolean RepeatIfEmpty;
11503 [property, optional] boolean ColumnGrand;
11504 [property, optional] boolean RowGrand;
11505 [property, optional] boolean ShowFilterButton;
11506 [property, optional] boolean DrillDownOnDoubleClick;
11507 [property, optional] string GrandTotalName;
11509 published struct DataPilotFieldAutoShowInfo {
11510 boolean IsEnabled;
11511 long ShowItemsMode;
11512 long ItemCount;
11513 string DataField;
11515 published struct DataPilotFieldGroupInfo {
11516 boolean HasAutoStart;
11517 boolean HasAutoEnd;
11518 boolean HasDateValues;
11519 double Start;
11520 double End;
11521 double Step;
11522 long GroupBy;
11523 ::com::sun::star::sheet::XDataPilotField SourceField;
11524 ::com::sun::star::container::XNameAccess Groups;
11526 published struct DataPilotFieldLayoutInfo {
11527 long LayoutMode;
11528 boolean AddEmptyLines;
11530 published enum DataPilotFieldOrientation {
11531 HIDDEN = 0,
11532 COLUMN = 1,
11533 ROW = 2,
11534 PAGE = 3,
11535 DATA = 4
11537 published struct DataPilotFieldReference {
11538 long ReferenceType;
11539 string ReferenceField;
11540 long ReferenceItemType;
11541 string ReferenceItemName;
11543 published struct DataPilotFieldSortInfo {
11544 string Field;
11545 boolean IsAscending;
11546 long Mode;
11548 published interface XDataPilotField {
11549 interface ::com::sun::star::uno::XInterface;
11550 ::com::sun::star::container::XIndexAccess getItems();
11552 published interface XDataPilotFieldGrouping {
11553 interface ::com::sun::star::uno::XInterface;
11554 ::com::sun::star::sheet::XDataPilotField createNameGroup([in] sequence< string > aItems) raises (::com::sun::star::lang::IllegalArgumentException);
11555 ::com::sun::star::sheet::XDataPilotField createDateGroup([in] ::com::sun::star::sheet::DataPilotFieldGroupInfo aInfo) raises (::com::sun::star::lang::IllegalArgumentException);
11557 published service DataPilotField {
11558 interface ::com::sun::star::container::XNamed;
11559 interface ::com::sun::star::beans::XPropertySet;
11560 [optional] interface ::com::sun::star::sheet::XDataPilotField;
11561 [optional] interface ::com::sun::star::sheet::XDataPilotFieldGrouping;
11562 [property] ::com::sun::star::sheet::DataPilotFieldOrientation Orientation;
11563 [property] ::com::sun::star::sheet::GeneralFunction Function;
11564 [property, optional] sequence< ::com::sun::star::sheet::GeneralFunction > Subtotals;
11565 [property, optional] string SelectedPage;
11566 [property, optional] boolean UseSelectedPage;
11567 [property, optional] string UsedHierarchy;
11568 [property, optional] boolean HasSortInfo;
11569 [property, optional] ::com::sun::star::sheet::DataPilotFieldSortInfo SortInfo;
11570 [property, optional] boolean HasLayoutInfo;
11571 [property, optional] ::com::sun::star::sheet::DataPilotFieldLayoutInfo LayoutInfo;
11572 [property, optional] boolean HasAutoShowInfo;
11573 [property, optional] ::com::sun::star::sheet::DataPilotFieldAutoShowInfo AutoShowInfo;
11574 [property, optional] boolean HasReference;
11575 [property, optional] ::com::sun::star::sheet::DataPilotFieldReference Reference;
11576 [property, optional] boolean IsGroupField;
11577 [property, optional] ::com::sun::star::sheet::DataPilotFieldGroupInfo GroupInfo;
11578 [property, optional] boolean ShowEmpty;
11579 [property, optional] short Function2;
11580 [property, optional] sequence< short > Subtotals2;
11582 published service DataPilotFieldGroup {
11583 interface ::com::sun::star::container::XNamed;
11584 interface ::com::sun::star::container::XIndexAccess;
11585 interface ::com::sun::star::container::XEnumerationAccess;
11586 interface ::com::sun::star::container::XNameAccess;
11587 [optional] interface ::com::sun::star::container::XNameContainer;
11589 published constants DataPilotFieldGroupBy {
11590 const long DAYS = 8;
11591 const long HOURS = 4;
11592 const long MINUTES = 2;
11593 const long MONTHS = 16;
11594 const long QUARTERS = 32;
11595 const long SECONDS = 1;
11596 const long YEARS = 64;
11598 published service DataPilotFieldGroupItem {
11599 interface ::com::sun::star::container::XNamed;
11601 published service DataPilotFieldGroups {
11602 interface ::com::sun::star::container::XIndexAccess;
11603 interface ::com::sun::star::container::XEnumerationAccess;
11604 interface ::com::sun::star::container::XNameAccess;
11605 [optional] interface ::com::sun::star::container::XNameContainer;
11607 published service DataPilotFields {
11608 interface ::com::sun::star::container::XIndexAccess;
11609 interface ::com::sun::star::container::XEnumerationAccess;
11610 interface ::com::sun::star::container::XNameAccess;
11612 published service DataPilotFieldsEnumeration {
11613 interface ::com::sun::star::container::XEnumeration;
11615 published enum FilterConnection {
11616 AND = 0,
11617 OR = 1
11619 published enum FilterOperator {
11620 EMPTY = 0,
11621 NOT_EMPTY = 1,
11622 EQUAL = 2,
11623 NOT_EQUAL = 3,
11624 GREATER = 4,
11625 GREATER_EQUAL = 5,
11626 LESS = 6,
11627 LESS_EQUAL = 7,
11628 TOP_VALUES = 8,
11629 TOP_PERCENT = 9,
11630 BOTTOM_VALUES = 10,
11631 BOTTOM_PERCENT = 11
11633 published struct TableFilterField {
11634 ::com::sun::star::sheet::FilterConnection Connection;
11635 long Field;
11636 ::com::sun::star::sheet::FilterOperator Operator;
11637 boolean IsNumeric;
11638 double NumericValue;
11639 string StringValue;
11641 published interface XDataPilotTable {
11642 interface ::com::sun::star::uno::XInterface;
11643 ::com::sun::star::table::CellRangeAddress getOutputRange();
11644 void refresh();
11646 published service DataPilotTable {
11647 interface ::com::sun::star::sheet::XDataPilotDescriptor;
11648 interface ::com::sun::star::sheet::XDataPilotTable;
11649 [optional] interface ::com::sun::star::util::XModifyBroadcaster;
11651 published interface XDataPilotTables {
11652 interface ::com::sun::star::container::XNameAccess;
11653 ::com::sun::star::sheet::XDataPilotDescriptor createDataPilotDescriptor();
11654 void insertNewByName([in] string aName, [in] ::com::sun::star::table::CellAddress OutputAddress, [in] ::com::sun::star::sheet::XDataPilotDescriptor xDescriptor);
11655 void removeByName([in] string aName);
11657 published service DataPilotTables {
11658 interface ::com::sun::star::sheet::XDataPilotTables;
11659 interface ::com::sun::star::container::XEnumerationAccess;
11660 interface ::com::sun::star::container::XIndexAccess;
11662 published service DataPilotTablesEnumeration {
11663 interface ::com::sun::star::container::XEnumeration;
11665 published service DatabaseImportDescriptor {
11666 [property] ::com::sun::star::sheet::DataImportMode SourceType;
11667 [property] string DatabaseName;
11668 [property] string SourceObject;
11669 [property, optional] boolean IsNative;
11670 [property, optional] string ConnectionResource;
11673 module table {
11674 published interface XCellRange;
11676 module sheet {
11677 published interface XCellRangeReferrer {
11678 interface ::com::sun::star::uno::XInterface;
11679 ::com::sun::star::table::XCellRange getReferredCells();
11681 published interface XSubTotalDescriptor;
11682 published interface XDatabaseRange {
11683 interface ::com::sun::star::uno::XInterface;
11684 ::com::sun::star::table::CellRangeAddress getDataArea();
11685 void setDataArea([in] ::com::sun::star::table::CellRangeAddress aDataArea);
11686 sequence< ::com::sun::star::beans::PropertyValue > getSortDescriptor();
11687 ::com::sun::star::sheet::XSheetFilterDescriptor getFilterDescriptor();
11688 ::com::sun::star::sheet::XSubTotalDescriptor getSubTotalDescriptor();
11689 sequence< ::com::sun::star::beans::PropertyValue > getImportDescriptor();
11690 void refresh();
11692 published service DatabaseRange {
11693 interface ::com::sun::star::sheet::XDatabaseRange;
11694 interface ::com::sun::star::sheet::XCellRangeReferrer;
11695 interface ::com::sun::star::beans::XPropertySet;
11696 interface ::com::sun::star::container::XNamed;
11697 [optional] interface ::com::sun::star::util::XRefreshable;
11698 [property] boolean MoveCells;
11699 [property] boolean KeepFormats;
11700 [property] boolean StripData;
11701 [property, optional] boolean AutoFilter;
11702 [property, optional] boolean UseFilterCriteriaSource;
11703 [property, optional] ::com::sun::star::table::CellRangeAddress FilterCriteriaSource;
11704 [property, optional] long RefreshPeriod;
11705 [property, optional] boolean FromSelection;
11706 [property, optional, readonly] long TokenIndex;
11707 [property, optional] boolean TotalsRow;
11708 [property, optional] boolean ContainsHeader;
11710 published interface XDatabaseRanges {
11711 interface ::com::sun::star::container::XNameAccess;
11712 void addNewByName([in] string aName, [in] ::com::sun::star::table::CellRangeAddress aRange);
11713 void removeByName([in] string aName);
11715 published service DatabaseRanges {
11716 interface ::com::sun::star::sheet::XDatabaseRanges;
11717 interface ::com::sun::star::container::XEnumerationAccess;
11718 interface ::com::sun::star::container::XIndexAccess;
11720 published service DatabaseRangesEnumeration {
11721 interface ::com::sun::star::container::XEnumeration;
11723 published constants DimensionFlags {
11724 const long NO_COLUMN_ORIENTATION = 1;
11725 const long NO_DATA_ORIENTATION = 8;
11726 const long NO_PAGE_ORIENTATION = 4;
11727 const long NO_ROW_ORIENTATION = 2;
11729 published service DocumentSettings {
11730 service ::com::sun::star::document::Settings;
11731 interface ::com::sun::star::beans::XPropertySet;
11732 [property, optional] boolean ShowZeroValues;
11733 [property, optional] boolean ShowNotes;
11734 [property, optional] boolean ShowGrid;
11735 [property, optional] ::com::sun::star::util::Color GridColor;
11736 [property, optional] boolean ShowPageBreaks;
11737 [property, optional] boolean HasColumnRowHeaders;
11738 [property, optional] boolean HasSheetTabs;
11739 [property, optional] boolean IsOutlineSymbolsSet;
11740 [property, optional] boolean IsSnapToRaster;
11741 [property, optional] boolean RasterIsVisible;
11742 [property, optional] long RasterResolutionX;
11743 [property, optional] long RasterResolutionY;
11744 [property, optional] long RasterSubdivisionX;
11745 [property, optional] long RasterSubdivisionY;
11746 [property, optional] boolean IsRasterAxisSynchronized;
11747 [property, optional] boolean IsDocumentShared;
11749 published enum FillDateMode {
11750 FILL_DATE_DAY = 0,
11751 FILL_DATE_WEEKDAY = 1,
11752 FILL_DATE_MONTH = 2,
11753 FILL_DATE_YEAR = 3
11755 published enum FillDirection {
11756 TO_BOTTOM = 0,
11757 TO_RIGHT = 1,
11758 TO_TOP = 2,
11759 TO_LEFT = 3
11761 published enum FillMode {
11762 SIMPLE = 0,
11763 LINEAR = 1,
11764 GROWTH = 2,
11765 DATE = 3,
11766 AUTO = 4
11768 published constants FilterOperator2 {
11769 const long BEGINS_WITH = 14;
11770 const long BOTTOM_PERCENT = 11;
11771 const long BOTTOM_VALUES = 10;
11772 const long CONTAINS = 12;
11773 const long DOES_NOT_BEGIN_WITH = 15;
11774 const long DOES_NOT_CONTAIN = 13;
11775 const long DOES_NOT_END_WITH = 17;
11776 const long EMPTY = 0;
11777 const long ENDS_WITH = 16;
11778 const long EQUAL = 2;
11779 const long GREATER = 4;
11780 const long GREATER_EQUAL = 5;
11781 const long LESS = 6;
11782 const long LESS_EQUAL = 7;
11783 const long NOT_EMPTY = 1;
11784 const long NOT_EQUAL = 3;
11785 const long TOP_PERCENT = 9;
11786 const long TOP_VALUES = 8;
11788 published constants FormulaResult {
11789 const long ERROR = 4;
11790 const long STRING = 2;
11791 const long VALUE = 1;
11793 /** @deprecated */ published service SpreadsheetDocumentSettings {
11794 interface ::com::sun::star::beans::XPropertySet;
11795 [property] boolean IsIterationEnabled;
11796 [property] long IterationCount;
11797 [property] double IterationEpsilon;
11798 [property] short StandardDecimals;
11799 [property] ::com::sun::star::util::Date NullDate;
11800 [property] short DefaultTabStop;
11801 [property] boolean IgnoreCase;
11802 [property] boolean CalcAsShown;
11803 [property] boolean MatchWholeCell;
11804 [property] boolean SpellOnline;
11805 [property] boolean LookUpLabels;
11806 [property] boolean RegularExpressions;
11807 [property, optional, readonly] ::com::sun::star::i18n::XForbiddenCharacters ForbiddenCharacters;
11808 [property, optional, readonly] boolean HasDrawPages;
11809 [property, optional] ::com::sun::star::lang::Locale CharLocale;
11810 [property, optional] ::com::sun::star::lang::Locale CharLocaleAsian;
11811 [property, optional] ::com::sun::star::lang::Locale CharLocaleComplex;
11812 [property, optional] boolean IsLoaded;
11813 [property, optional] boolean IsUndoEnabled;
11814 [property, optional] boolean IsAdjustHeightEnabled;
11815 [property, optional] boolean IsExecuteLinkEnabled;
11816 [property, optional, readonly] ::com::sun::star::awt::XDevice ReferenceDevice;
11817 [property, optional] boolean RecordChanges;
11818 [property, optional, readonly] boolean IsRecordChangesProtected;
11819 [property, optional] boolean Wildcards;
11821 published interface XFunctionAccess {
11822 interface ::com::sun::star::uno::XInterface;
11823 any callFunction([in] string aName, [in] sequence< any > aArguments) raises (::com::sun::star::container::NoSuchElementException, ::com::sun::star::lang::IllegalArgumentException);
11825 published service FunctionAccess {
11826 service ::com::sun::star::sheet::SpreadsheetDocumentSettings;
11827 interface ::com::sun::star::sheet::XFunctionAccess;
11828 [property, optional] boolean IsArrayFunction;
11830 published constants FunctionCategory {
11831 const long ADDIN = 11;
11832 const long DATABASE = 1;
11833 const long DATETIME = 2;
11834 const long FINANCIAL = 3;
11835 const long INFORMATION = 4;
11836 const long LOGICAL = 5;
11837 const long MATHEMATICAL = 6;
11838 const long MATRIX = 7;
11839 const long SPREADSHEET = 9;
11840 const long STATISTICAL = 8;
11841 const long TEXT = 10;
11843 published service FunctionDescription {
11844 [property, readonly] long Id;
11845 [property, readonly] long Category;
11846 [property, readonly] string Name;
11847 [property, readonly] string Description;
11848 [property, readonly] sequence< ::com::sun::star::sheet::FunctionArgument > Arguments;
11850 published service FunctionDescriptionEnumeration {
11851 interface ::com::sun::star::container::XEnumeration;
11853 published interface XFunctionDescriptions {
11854 interface ::com::sun::star::container::XIndexAccess;
11855 sequence< ::com::sun::star::beans::PropertyValue > getById([in] long nId) raises (::com::sun::star::lang::IllegalArgumentException);
11857 published service FunctionDescriptions {
11858 interface ::com::sun::star::sheet::XFunctionDescriptions;
11859 interface ::com::sun::star::container::XNameAccess;
11860 interface ::com::sun::star::container::XEnumerationAccess;
11862 published constants GeneralFunction2 {
11863 const short AUTO = 1;
11864 const short AVERAGE = 4;
11865 const short COUNT = 3;
11866 const short COUNTNUMS = 8;
11867 const short MAX = 5;
11868 const short MEDIAN = 13;
11869 const short MIN = 6;
11870 const short NONE = 0;
11871 const short PRODUCT = 7;
11872 const short STDEV = 9;
11873 const short STDEVP = 10;
11874 const short SUM = 2;
11875 const short VAR = 11;
11876 const short VARP = 12;
11878 published interface XGlobalSheetSettings {
11879 interface ::com::sun::star::uno::XInterface;
11880 [attribute] boolean MoveSelection;
11881 [attribute] short MoveDirection;
11882 [attribute] boolean EnterEdit;
11883 [attribute] boolean ExtendFormat;
11884 [attribute] boolean RangeFinder;
11885 [attribute] boolean ExpandReferences;
11886 [attribute] boolean MarkHeader;
11887 [attribute] boolean UseTabCol;
11888 [attribute] short Metric;
11889 [attribute] short Scale;
11890 [attribute] boolean DoAutoComplete;
11891 [attribute] short StatusBarFunction;
11892 [attribute] sequence< string > UserLists;
11893 [attribute] short LinkUpdateMode;
11894 [attribute] boolean PrintAllSheets;
11895 [attribute] boolean PrintEmptyPages;
11896 [attribute] boolean UsePrinterMetrics;
11897 [attribute] boolean ReplaceCellsWarning;
11899 published service GlobalSheetSettings: ::com::sun::star::sheet::XGlobalSheetSettings;
11900 published struct GoalResult {
11901 double Divergence;
11902 double Result;
11904 published interface XHeaderFooterContent {
11905 interface ::com::sun::star::uno::XInterface;
11906 ::com::sun::star::text::XText getLeftText();
11907 ::com::sun::star::text::XText getCenterText();
11908 ::com::sun::star::text::XText getRightText();
11910 published service HeaderFooterContent {
11911 interface ::com::sun::star::sheet::XHeaderFooterContent;
11913 published interface XLabelRange {
11914 interface ::com::sun::star::uno::XInterface;
11915 ::com::sun::star::table::CellRangeAddress getLabelArea();
11916 void setLabelArea([in] ::com::sun::star::table::CellRangeAddress aLabelArea);
11917 ::com::sun::star::table::CellRangeAddress getDataArea();
11918 void setDataArea([in] ::com::sun::star::table::CellRangeAddress aDataArea);
11920 published service LabelRange {
11921 interface ::com::sun::star::sheet::XLabelRange;
11923 published interface XLabelRanges {
11924 interface ::com::sun::star::container::XIndexAccess;
11925 void addNew([in] ::com::sun::star::table::CellRangeAddress aLabelArea, [in] ::com::sun::star::table::CellRangeAddress aDataArea);
11926 void removeByIndex([in] long nIndex);
11928 published service LabelRanges {
11929 interface ::com::sun::star::sheet::XLabelRanges;
11930 interface ::com::sun::star::container::XIndexAccess;
11931 interface ::com::sun::star::container::XEnumerationAccess;
11933 published service LabelRangesEnumeration {
11934 interface ::com::sun::star::container::XEnumeration;
11936 published constants MoveDirection {
11937 const short DOWN = 0;
11938 const short LEFT = 3;
11939 const short RIGHT = 1;
11940 const short UP = 2;
11942 published interface XNamedRange {
11943 interface ::com::sun::star::container::XNamed;
11944 string getContent();
11945 void setContent([in] string aContent);
11946 ::com::sun::star::table::CellAddress getReferencePosition();
11947 void setReferencePosition([in] ::com::sun::star::table::CellAddress aReferencePosition);
11948 long getType();
11949 void setType([in] long nType);
11951 published service NamedRange {
11952 interface ::com::sun::star::sheet::XNamedRange;
11953 interface ::com::sun::star::sheet::XCellRangeReferrer;
11954 [property, optional, readonly] long TokenIndex;
11955 [property, optional] boolean IsSharedFormula;
11957 published constants NamedRangeFlag {
11958 const long COLUMN_HEADER = 4;
11959 const long FILTER_CRITERIA = 1;
11960 const long PRINT_AREA = 2;
11961 const long ROW_HEADER = 8;
11963 published interface XNamedRanges {
11964 interface ::com::sun::star::container::XNameAccess;
11965 void addNewByName([in] string aName, [in] string aContent, [in] ::com::sun::star::table::CellAddress aPosition, [in] long nType);
11966 void addNewFromTitles([in] ::com::sun::star::table::CellRangeAddress aSource, [in] ::com::sun::star::sheet::Border aBorder);
11967 void removeByName([in] string aName);
11968 void outputList([in] ::com::sun::star::table::CellAddress aOutputPosition);
11970 published service NamedRanges {
11971 interface ::com::sun::star::sheet::XNamedRanges;
11972 interface ::com::sun::star::container::XIndexAccess;
11973 interface ::com::sun::star::container::XEnumerationAccess;
11974 [optional] interface ::com::sun::star::document::XActionLockable;
11976 published service NamedRangesEnumeration {
11977 interface ::com::sun::star::container::XEnumeration;
11979 published enum PasteOperation {
11980 NONE = 0,
11981 ADD = 1,
11982 SUBTRACT = 2,
11983 MULTIPLY = 3,
11984 DIVIDE = 4
11986 published service RangeSelectionArguments {
11987 [property] string InitialValue;
11988 [property] string Title;
11989 [property] boolean CloseOnMouseRelease;
11990 [property, optional] boolean SingleCellMode;
11992 published struct RangeSelectionEvent: ::com::sun::star::lang::EventObject {
11993 string RangeDescriptor;
11995 published interface XRecentFunctions {
11996 interface ::com::sun::star::uno::XInterface;
11997 sequence< long > getRecentFunctionIds();
11998 void setRecentFunctionIds([in] sequence< long > aRecentFunctionIds);
11999 long getMaxRecentFunctions();
12001 published service RecentFunctions: ::com::sun::star::sheet::XRecentFunctions;
12002 published struct ResultEvent: ::com::sun::star::lang::EventObject {
12003 any Value;
12005 published interface XScenario {
12006 interface ::com::sun::star::uno::XInterface;
12007 boolean getIsScenario();
12008 string getScenarioComment();
12009 void setScenarioComment([in] string aScenarioComment);
12010 void addRanges([in] sequence< ::com::sun::star::table::CellRangeAddress > aRanges);
12011 void apply();
12013 published interface XScenarios {
12014 interface ::com::sun::star::container::XNameAccess;
12015 void addNewByName([in] string aName, [in] sequence< ::com::sun::star::table::CellRangeAddress > aRanges, [in] string aComment);
12016 void removeByName([in] string aName);
12018 published service Scenarios {
12019 interface ::com::sun::star::sheet::XScenarios;
12020 interface ::com::sun::star::container::XEnumerationAccess;
12021 interface ::com::sun::star::container::XIndexAccess;
12023 published service ScenariosEnumeration {
12024 interface ::com::sun::star::container::XEnumeration;
12026 published interface XSheetCellRanges;
12027 published interface XCellRangesQuery {
12028 interface ::com::sun::star::uno::XInterface;
12029 ::com::sun::star::sheet::XSheetCellRanges queryVisibleCells();
12030 ::com::sun::star::sheet::XSheetCellRanges queryEmptyCells();
12031 ::com::sun::star::sheet::XSheetCellRanges queryContentCells([in] short nContentFlags);
12032 ::com::sun::star::sheet::XSheetCellRanges queryFormulaCells([in] long nResultFlags);
12033 ::com::sun::star::sheet::XSheetCellRanges queryColumnDifferences([in] ::com::sun::star::table::CellAddress aCompare);
12034 ::com::sun::star::sheet::XSheetCellRanges queryRowDifferences([in] ::com::sun::star::table::CellAddress aCompare);
12035 ::com::sun::star::sheet::XSheetCellRanges queryIntersection([in] ::com::sun::star::table::CellRangeAddress aRange);
12037 published interface XFormulaQuery {
12038 interface ::com::sun::star::uno::XInterface;
12039 ::com::sun::star::sheet::XSheetCellRanges queryDependents([in] boolean bRecursive);
12040 ::com::sun::star::sheet::XSheetCellRanges queryPrecedents([in] boolean bRecursive);
12042 published service SheetRangesQuery {
12043 interface ::com::sun::star::sheet::XCellRangesQuery;
12044 interface ::com::sun::star::sheet::XFormulaQuery;
12046 published interface XCellAddressable {
12047 interface ::com::sun::star::uno::XInterface;
12048 ::com::sun::star::table::CellAddress getCellAddress();
12050 published interface XSheetAnnotationAnchor {
12051 interface ::com::sun::star::uno::XInterface;
12052 ::com::sun::star::sheet::XSheetAnnotation getAnnotation();
12055 module table {
12056 published enum CellHoriJustify {
12057 STANDARD = 0,
12058 LEFT = 1,
12059 CENTER = 2,
12060 RIGHT = 3,
12061 BLOCK = 4,
12062 REPEAT = 5
12064 published enum CellOrientation {
12065 STANDARD = 0,
12066 TOPBOTTOM = 1,
12067 BOTTOMTOP = 2,
12068 STACKED = 3
12070 published struct TableBorder {
12071 ::com::sun::star::table::BorderLine TopLine;
12072 boolean IsTopLineValid;
12073 ::com::sun::star::table::BorderLine BottomLine;
12074 boolean IsBottomLineValid;
12075 ::com::sun::star::table::BorderLine LeftLine;
12076 boolean IsLeftLineValid;
12077 ::com::sun::star::table::BorderLine RightLine;
12078 boolean IsRightLineValid;
12079 ::com::sun::star::table::BorderLine HorizontalLine;
12080 boolean IsHorizontalLineValid;
12081 ::com::sun::star::table::BorderLine VerticalLine;
12082 boolean IsVerticalLineValid;
12083 short Distance;
12084 boolean IsDistanceValid;
12086 published struct TableBorder2 {
12087 ::com::sun::star::table::BorderLine2 TopLine;
12088 boolean IsTopLineValid;
12089 ::com::sun::star::table::BorderLine2 BottomLine;
12090 boolean IsBottomLineValid;
12091 ::com::sun::star::table::BorderLine2 LeftLine;
12092 boolean IsLeftLineValid;
12093 ::com::sun::star::table::BorderLine2 RightLine;
12094 boolean IsRightLineValid;
12095 ::com::sun::star::table::BorderLine2 HorizontalLine;
12096 boolean IsHorizontalLineValid;
12097 ::com::sun::star::table::BorderLine2 VerticalLine;
12098 boolean IsVerticalLineValid;
12099 short Distance;
12100 boolean IsDistanceValid;
12103 module util {
12104 published struct CellProtection {
12105 boolean IsLocked;
12106 boolean IsFormulaHidden;
12107 boolean IsHidden;
12108 boolean IsPrintHidden;
12111 module table {
12112 published service CellProperties {
12113 interface ::com::sun::star::beans::XPropertySet;
12114 [property, optional] string CellStyle;
12115 [property] ::com::sun::star::util::Color CellBackColor;
12116 [property] boolean IsCellBackgroundTransparent;
12117 [property] ::com::sun::star::table::CellHoriJustify HoriJustify;
12118 [property] long VertJustify;
12119 [property] boolean IsTextWrapped;
12120 [property] short ParaIndent;
12121 [property] ::com::sun::star::table::CellOrientation Orientation;
12122 [property] long RotateAngle;
12123 [property] long RotateReference;
12124 [property, optional] boolean AsianVerticalMode;
12125 [property] ::com::sun::star::table::TableBorder TableBorder;
12126 [property] ::com::sun::star::table::BorderLine TopBorder;
12127 [property] ::com::sun::star::table::BorderLine BottomBorder;
12128 [property] ::com::sun::star::table::BorderLine LeftBorder;
12129 [property] ::com::sun::star::table::BorderLine RightBorder;
12130 [property] long NumberFormat;
12131 [property] ::com::sun::star::table::ShadowFormat ShadowFormat;
12132 [property] ::com::sun::star::util::CellProtection CellProtection;
12133 [property, optional] ::com::sun::star::container::XNameContainer UserDefinedAttributes;
12134 [property, optional] ::com::sun::star::table::BorderLine DiagonalTLBR;
12135 [property, optional] ::com::sun::star::table::BorderLine DiagonalBLTR;
12136 [property, optional] boolean ShrinkToFit;
12137 [property, optional] ::com::sun::star::table::TableBorder2 TableBorder2;
12138 [property, optional] ::com::sun::star::table::BorderLine2 TopBorder2;
12139 [property, optional] ::com::sun::star::table::BorderLine2 BottomBorder2;
12140 [property, optional] ::com::sun::star::table::BorderLine2 LeftBorder2;
12141 [property, optional] ::com::sun::star::table::BorderLine2 RightBorder2;
12142 [property, optional] ::com::sun::star::table::BorderLine2 DiagonalTLBR2;
12143 [property, optional] ::com::sun::star::table::BorderLine2 DiagonalBLTR2;
12144 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > CellInteropGrabBag;
12146 published enum CellContentType {
12147 EMPTY = 0,
12148 VALUE = 1,
12149 TEXT = 2,
12150 FORMULA = 3
12152 published interface XCell {
12153 interface ::com::sun::star::uno::XInterface;
12154 string getFormula();
12155 void setFormula([in] string aFormula);
12156 double getValue();
12157 void setValue([in] double nValue);
12158 ::com::sun::star::table::CellContentType getType();
12159 long getError();
12161 published service Cell {
12162 service ::com::sun::star::table::CellProperties;
12163 interface ::com::sun::star::table::XCell;
12164 interface ::com::sun::star::text::XText;
12166 published interface XTableColumns;
12167 published interface XTableRows;
12168 published interface XColumnRowRange {
12169 interface ::com::sun::star::uno::XInterface;
12170 ::com::sun::star::table::XTableColumns getColumns();
12171 ::com::sun::star::table::XTableRows getRows();
12174 module text {
12175 /** @deprecated */ published interface XRelativeTextContentInsert {
12176 interface ::com::sun::star::uno::XInterface;
12177 void insertTextContentBefore([in] ::com::sun::star::text::XTextContent xNewContent, [in] ::com::sun::star::text::XTextContent xSuccessor) raises (::com::sun::star::lang::IllegalArgumentException);
12178 void insertTextContentAfter([in] ::com::sun::star::text::XTextContent xNewContent, [in] ::com::sun::star::text::XTextContent xPredecessor) raises (::com::sun::star::lang::IllegalArgumentException);
12180 published interface XTextRangeCompare {
12181 interface ::com::sun::star::uno::XInterface;
12182 short compareRegionStarts([in] ::com::sun::star::text::XTextRange xR1, [in] ::com::sun::star::text::XTextRange xR2) raises (::com::sun::star::lang::IllegalArgumentException);
12183 short compareRegionEnds([in] ::com::sun::star::text::XTextRange xR1, [in] ::com::sun::star::text::XTextRange xR2) raises (::com::sun::star::lang::IllegalArgumentException);
12185 published interface XTextRangeMover {
12186 interface ::com::sun::star::uno::XInterface;
12187 void moveTextRange([in] ::com::sun::star::text::XTextRange xRange, [in] short nParagraphs);
12189 published service Text {
12190 interface ::com::sun::star::container::XEnumerationAccess;
12191 interface ::com::sun::star::text::XText;
12192 [optional] interface ::com::sun::star::text::XTextRangeCompare;
12193 [optional] interface ::com::sun::star::text::XTextRangeMover;
12194 /** @deprecated */ [optional] interface ::com::sun::star::text::XRelativeTextContentInsert;
12195 [property, optional] ::com::sun::star::beans::PropertyValues StartRedline;
12196 [property, maybevoid, optional] ::com::sun::star::beans::PropertyValues EndRedline;
12198 published interface XTextFieldsSupplier {
12199 interface ::com::sun::star::uno::XInterface;
12200 ::com::sun::star::container::XEnumerationAccess getTextFields();
12201 ::com::sun::star::container::XNameAccess getTextFieldMasters();
12204 module util {
12205 published interface XIndent {
12206 interface ::com::sun::star::uno::XInterface;
12207 void decrementIndent();
12208 void incrementIndent();
12210 published interface XSearchDescriptor;
12211 published interface XSearchable {
12212 interface ::com::sun::star::uno::XInterface;
12213 ::com::sun::star::util::XSearchDescriptor createSearchDescriptor();
12214 ::com::sun::star::container::XIndexAccess findAll([in] ::com::sun::star::util::XSearchDescriptor xDesc);
12215 ::com::sun::star::uno::XInterface findFirst([in] ::com::sun::star::util::XSearchDescriptor xDesc);
12216 ::com::sun::star::uno::XInterface findNext([in] ::com::sun::star::uno::XInterface xStartAt, [in] ::com::sun::star::util::XSearchDescriptor xDesc);
12218 published interface XReplaceDescriptor;
12219 published interface XReplaceable {
12220 interface ::com::sun::star::util::XSearchable;
12221 ::com::sun::star::util::XReplaceDescriptor createReplaceDescriptor();
12222 long replaceAll([in] ::com::sun::star::util::XSearchDescriptor xDesc);
12225 module sheet {
12226 published interface XSheetConditionalEntries;
12227 published service SheetCell {
12228 service ::com::sun::star::table::Cell;
12229 service ::com::sun::star::text::Text;
12230 service ::com::sun::star::style::CharacterProperties;
12231 service ::com::sun::star::style::CharacterPropertiesAsian;
12232 service ::com::sun::star::style::CharacterPropertiesComplex;
12233 service ::com::sun::star::style::ParagraphProperties;
12234 service ::com::sun::star::sheet::SheetRangesQuery;
12235 [optional] service ::com::sun::star::style::ParagraphPropertiesAsian;
12236 [optional] service ::com::sun::star::style::ParagraphPropertiesComplex;
12237 interface ::com::sun::star::document::XActionLockable;
12238 interface ::com::sun::star::util::XReplaceable;
12239 interface ::com::sun::star::util::XIndent;
12240 interface ::com::sun::star::table::XColumnRowRange;
12241 interface ::com::sun::star::sheet::XCellAddressable;
12242 interface ::com::sun::star::sheet::XSheetAnnotationAnchor;
12243 interface ::com::sun::star::text::XTextFieldsSupplier;
12244 [optional] interface ::com::sun::star::beans::XTolerantMultiPropertySet;
12245 [optional] interface ::com::sun::star::util::XModifyBroadcaster;
12246 [property, readonly] ::com::sun::star::awt::Point Position;
12247 [property, readonly] ::com::sun::star::awt::Size Size;
12248 [property, optional] string FormulaLocal;
12249 [property, readonly] long FormulaResultType;
12250 [property] ::com::sun::star::sheet::XSheetConditionalEntries ConditionalFormat;
12251 [property, optional] ::com::sun::star::sheet::XSheetConditionalEntries ConditionalFormatLocal;
12252 [property] ::com::sun::star::beans::XPropertySet Validation;
12253 [property, optional] ::com::sun::star::beans::XPropertySet ValidationLocal;
12254 [property, optional, readonly] string AbsoluteName;
12255 [property, optional, readonly] ::com::sun::star::table::CellContentType CellContentType;
12256 [property, optional, readonly] long FormulaResultType2;
12258 published interface XArrayFormulaRange {
12259 interface ::com::sun::star::uno::XInterface;
12260 string getArrayFormula();
12261 void setArrayFormula([in] string aFormula);
12263 published interface XCellFormatRangesSupplier {
12264 interface ::com::sun::star::uno::XInterface;
12265 ::com::sun::star::container::XIndexAccess getCellFormatRanges();
12267 published interface XCellRangeAddressable {
12268 interface ::com::sun::star::uno::XInterface;
12269 ::com::sun::star::table::CellRangeAddress getRangeAddress();
12271 published interface XCellRangeData {
12272 interface ::com::sun::star::uno::XInterface;
12273 sequence< sequence< any > > getDataArray();
12274 void setDataArray([in] sequence< sequence< any > > aArray);
12276 published interface XCellRangeFormula {
12277 interface ::com::sun::star::uno::XInterface;
12278 sequence< sequence< string > > getFormulaArray();
12279 void setFormulaArray([in] sequence< sequence< string > > aArray);
12281 published interface XCellSeries {
12282 interface ::com::sun::star::uno::XInterface;
12283 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);
12284 void fillAuto([in] ::com::sun::star::sheet::FillDirection nFillDirection, [in] long nSourceCount);
12286 published enum TableOperationMode {
12287 COLUMN = 0,
12288 ROW = 1,
12289 BOTH = 2
12291 published interface XMultipleOperation {
12292 interface ::com::sun::star::uno::XInterface;
12293 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);
12296 module table {
12297 published interface XCellRange {
12298 interface ::com::sun::star::uno::XInterface;
12299 ::com::sun::star::table::XCell getCellByPosition([in] long nColumn, [in] long nRow) raises (::com::sun::star::lang::IndexOutOfBoundsException);
12300 ::com::sun::star::table::XCellRange getCellRangeByPosition([in] long nLeft, [in] long nTop, [in] long nRight, [in] long nBottom) raises (::com::sun::star::lang::IndexOutOfBoundsException);
12301 ::com::sun::star::table::XCellRange getCellRangeByName([in] string aRange);
12304 module sheet {
12305 published interface XSheetCellRange {
12306 interface ::com::sun::star::table::XCellRange;
12307 ::com::sun::star::sheet::XSpreadsheet getSpreadsheet();
12309 published interface XSheetFilterable {
12310 interface ::com::sun::star::uno::XInterface;
12311 ::com::sun::star::sheet::XSheetFilterDescriptor createFilterDescriptor([in] boolean bEmpty);
12312 void filter([in] ::com::sun::star::sheet::XSheetFilterDescriptor xDescriptor);
12314 published interface XSheetFilterableEx {
12315 interface ::com::sun::star::sheet::XSheetFilterable;
12316 ::com::sun::star::sheet::XSheetFilterDescriptor createFilterDescriptorByObject([in] ::com::sun::star::sheet::XSheetFilterable xObject);
12318 published interface XSheetOperation {
12319 interface ::com::sun::star::uno::XInterface;
12320 double computeFunction([in] ::com::sun::star::sheet::GeneralFunction nFunction) raises (::com::sun::star::uno::Exception);
12321 void clearContents([in] long nContentFlags);
12323 published interface XSubTotalCalculatable {
12324 interface ::com::sun::star::uno::XInterface;
12325 ::com::sun::star::sheet::XSubTotalDescriptor createSubTotalDescriptor([in] boolean bEmpty);
12326 void applySubTotals([in] ::com::sun::star::sheet::XSubTotalDescriptor xDescriptor, [in] boolean bReplace);
12327 void removeSubTotals();
12329 published interface XUniqueCellFormatRangesSupplier {
12330 interface ::com::sun::star::uno::XInterface;
12331 ::com::sun::star::container::XIndexAccess getUniqueCellFormatRanges();
12334 module table {
12335 published service CellRange {
12336 service ::com::sun::star::table::CellProperties;
12337 interface ::com::sun::star::table::XCellRange;
12339 published interface XAutoFormattable {
12340 interface ::com::sun::star::uno::XInterface;
12341 void autoFormat([in] string aName) raises (::com::sun::star::lang::IllegalArgumentException);
12344 module util {
12345 published interface XImportable {
12346 interface ::com::sun::star::uno::XInterface;
12347 sequence< ::com::sun::star::beans::PropertyValue > createImportDescriptor([in] boolean bEmpty);
12348 void doImport([in] sequence< ::com::sun::star::beans::PropertyValue > aDescriptor);
12350 published interface XMergeable {
12351 interface ::com::sun::star::uno::XInterface;
12352 void merge([in] boolean bMerge);
12353 boolean getIsMerged();
12355 published interface XSortable {
12356 interface ::com::sun::star::uno::XInterface;
12357 sequence< ::com::sun::star::beans::PropertyValue > createSortDescriptor();
12358 void sort([in] sequence< ::com::sun::star::beans::PropertyValue > xDescriptor);
12361 module sheet {
12362 published service SheetCellRange {
12363 service ::com::sun::star::table::CellRange;
12364 service ::com::sun::star::style::CharacterProperties;
12365 service ::com::sun::star::style::CharacterPropertiesAsian;
12366 service ::com::sun::star::style::CharacterPropertiesComplex;
12367 service ::com::sun::star::style::ParagraphProperties;
12368 service ::com::sun::star::sheet::SheetRangesQuery;
12369 interface ::com::sun::star::util::XReplaceable;
12370 interface ::com::sun::star::util::XMergeable;
12371 interface ::com::sun::star::util::XIndent;
12372 interface ::com::sun::star::table::XColumnRowRange;
12373 interface ::com::sun::star::table::XAutoFormattable;
12374 interface ::com::sun::star::sheet::XSheetCellRange;
12375 interface ::com::sun::star::sheet::XCellRangeData;
12376 interface ::com::sun::star::sheet::XCellRangeAddressable;
12377 interface ::com::sun::star::sheet::XSheetOperation;
12378 interface ::com::sun::star::sheet::XCellSeries;
12379 interface ::com::sun::star::sheet::XArrayFormulaRange;
12380 interface ::com::sun::star::sheet::XMultipleOperation;
12381 interface ::com::sun::star::util::XSortable;
12382 interface ::com::sun::star::util::XImportable;
12383 interface ::com::sun::star::sheet::XSubTotalCalculatable;
12384 interface ::com::sun::star::sheet::XSheetFilterableEx;
12385 interface ::com::sun::star::sheet::XCellFormatRangesSupplier;
12386 interface ::com::sun::star::sheet::XUniqueCellFormatRangesSupplier;
12387 interface ::com::sun::star::chart::XChartDataArray;
12388 [optional] interface ::com::sun::star::sheet::XCellRangeFormula;
12389 [optional] interface ::com::sun::star::beans::XTolerantMultiPropertySet;
12390 [optional] interface ::com::sun::star::util::XModifyBroadcaster;
12391 [property, readonly] ::com::sun::star::awt::Point Position;
12392 [property, readonly] ::com::sun::star::awt::Size Size;
12393 [property] ::com::sun::star::sheet::XSheetConditionalEntries ConditionalFormat;
12394 [property, optional] ::com::sun::star::sheet::XSheetConditionalEntries ConditionalFormatLocal;
12395 [property] ::com::sun::star::beans::XPropertySet Validation;
12396 [property, optional] ::com::sun::star::beans::XPropertySet ValidationLocal;
12397 [property, optional, readonly] string AbsoluteName;
12399 published interface XSheetCellCursor {
12400 interface ::com::sun::star::sheet::XSheetCellRange;
12401 void collapseToCurrentRegion();
12402 void collapseToCurrentArray();
12403 void collapseToMergedArea();
12404 void expandToEntireColumns();
12405 void expandToEntireRows();
12406 void collapseToSize([in] long nColumns, [in] long nRows);
12408 published interface XUsedAreaCursor {
12409 interface ::com::sun::star::uno::XInterface;
12410 void gotoStartOfUsedArea([in] boolean bExpand);
12411 void gotoEndOfUsedArea([in] boolean bExpand);
12414 module table {
12415 published interface XCellCursor {
12416 interface ::com::sun::star::table::XCellRange;
12417 void gotoStart();
12418 void gotoEnd();
12419 void gotoNext();
12420 void gotoPrevious();
12421 void gotoOffset([in] long nColumnOffset, [in] long nRowOffset);
12423 published service CellCursor {
12424 interface ::com::sun::star::table::XCellCursor;
12427 module sheet {
12428 published service SheetCellCursor {
12429 service ::com::sun::star::table::CellCursor;
12430 service ::com::sun::star::sheet::SheetCellRange;
12431 interface ::com::sun::star::sheet::XSheetCellCursor;
12432 interface ::com::sun::star::sheet::XUsedAreaCursor;
12434 published interface XSheetCellRanges {
12435 interface ::com::sun::star::container::XIndexAccess;
12436 ::com::sun::star::container::XEnumerationAccess getCells();
12437 string getRangeAddressesAsString();
12438 sequence< ::com::sun::star::table::CellRangeAddress > getRangeAddresses();
12440 published interface XSheetCellRangeContainer {
12441 interface ::com::sun::star::sheet::XSheetCellRanges;
12442 void addRangeAddress([in] ::com::sun::star::table::CellRangeAddress aCellRangeAddress, [in] boolean bMergeRanges);
12443 void removeRangeAddress([in] ::com::sun::star::table::CellRangeAddress aCellRangeAddress) raises (::com::sun::star::container::NoSuchElementException);
12444 void addRangeAddresses([in] sequence< ::com::sun::star::table::CellRangeAddress > aCellRangeAddresses, [in] boolean bMergeRanges);
12445 void removeRangeAddresses([in] sequence< ::com::sun::star::table::CellRangeAddress > aCellRangeAddresses) raises (::com::sun::star::container::NoSuchElementException);
12447 published service SheetCellRanges {
12448 service ::com::sun::star::table::CellProperties;
12449 service ::com::sun::star::style::CharacterProperties;
12450 service ::com::sun::star::style::CharacterPropertiesAsian;
12451 service ::com::sun::star::style::CharacterPropertiesComplex;
12452 service ::com::sun::star::style::ParagraphProperties;
12453 service ::com::sun::star::sheet::SheetRangesQuery;
12454 interface ::com::sun::star::util::XReplaceable;
12455 interface ::com::sun::star::util::XIndent;
12456 interface ::com::sun::star::sheet::XSheetOperation;
12457 interface ::com::sun::star::chart::XChartDataArray;
12458 interface ::com::sun::star::sheet::XSheetCellRangeContainer;
12459 interface ::com::sun::star::container::XEnumerationAccess;
12460 interface ::com::sun::star::container::XNameContainer;
12461 [property] ::com::sun::star::sheet::XSheetConditionalEntries ConditionalFormat;
12462 [property, optional] ::com::sun::star::sheet::XSheetConditionalEntries ConditionalFormatLocal;
12463 [property] ::com::sun::star::beans::XPropertySet Validation;
12464 [property, optional] ::com::sun::star::beans::XPropertySet ValidationLocal;
12465 [property, optional, readonly] string AbsoluteName;
12467 published service SheetCellRangesEnumeration {
12468 interface ::com::sun::star::container::XEnumeration;
12470 published interface XSheetFilterDescriptor {
12471 interface ::com::sun::star::uno::XInterface;
12472 sequence< ::com::sun::star::sheet::TableFilterField > getFilterFields();
12473 void setFilterFields([in] sequence< ::com::sun::star::sheet::TableFilterField > aFilterFields);
12475 published struct TableFilterField2 {
12476 ::com::sun::star::sheet::FilterConnection Connection;
12477 long Field;
12478 long Operator;
12479 boolean IsNumeric;
12480 double NumericValue;
12481 string StringValue;
12483 published interface XSheetFilterDescriptor2 {
12484 interface ::com::sun::star::uno::XInterface;
12485 sequence< ::com::sun::star::sheet::TableFilterField2 > getFilterFields2();
12486 void setFilterFields2([in] sequence< ::com::sun::star::sheet::TableFilterField2 > aFilterFields);
12489 module table {
12490 published enum TableOrientation {
12491 COLUMNS = 0,
12492 ROWS = 1
12495 module sheet {
12496 published service SheetFilterDescriptor {
12497 interface ::com::sun::star::sheet::XSheetFilterDescriptor;
12498 interface ::com::sun::star::beans::XPropertySet;
12499 [optional] interface ::com::sun::star::sheet::XSheetFilterDescriptor2;
12500 [property] boolean IsCaseSensitive;
12501 [property] boolean SkipDuplicates;
12502 [property] boolean UseRegularExpressions;
12503 [property] boolean SaveOutputPosition;
12504 [property] ::com::sun::star::table::TableOrientation Orientation;
12505 [property] boolean ContainsHeader;
12506 [property] boolean CopyOutputData;
12507 [property] ::com::sun::star::table::CellAddress OutputPosition;
12508 [property, readonly] long MaxFieldCount;
12510 published service SheetLink {
12511 interface ::com::sun::star::container::XNamed;
12512 interface ::com::sun::star::util::XRefreshable;
12513 interface ::com::sun::star::beans::XPropertySet;
12514 [property] string Url;
12515 [property] string Filter;
12516 [property] string FilterOptions;
12518 published enum SheetLinkMode {
12519 NONE = 0,
12520 NORMAL = 1,
12521 VALUE = 2
12523 published service SheetLinks {
12524 interface ::com::sun::star::container::XIndexAccess;
12525 interface ::com::sun::star::container::XNameAccess;
12526 interface ::com::sun::star::container::XEnumerationAccess;
12528 published service SheetLinksEnumeration {
12529 interface ::com::sun::star::container::XEnumeration;
12532 module util {
12533 /** @deprecated */ published service SortDescriptor {
12534 interface ::com::sun::star::beans::XPropertySet;
12535 [property] boolean IsCaseSensitive;
12536 [property, optional] boolean SortAscending;
12537 [property] boolean SortColumns;
12538 [property] ::com::sun::star::lang::Locale CollatorLocale;
12539 [property, optional] string CollatorAlgorithm;
12541 /** @deprecated */ published enum SortFieldType {
12542 AUTOMATIC = 0,
12543 NUMERIC = 1,
12544 ALPHANUMERIC = 2
12546 /** @deprecated */ published struct SortField {
12547 long Field;
12548 boolean SortAscending;
12549 ::com::sun::star::util::SortFieldType FieldType;
12552 module table {
12553 /** @deprecated */ published service TableSortDescriptor {
12554 service ::com::sun::star::util::SortDescriptor;
12555 [property] sequence< ::com::sun::star::util::SortField > SortFields;
12556 [property, readonly] long MaxFieldCount;
12557 /** @deprecated */ [property] ::com::sun::star::table::TableOrientation Orientation;
12558 [property] boolean ContainsHeader;
12561 module sheet {
12562 published service SheetSortDescriptor {
12563 service ::com::sun::star::table::TableSortDescriptor;
12564 [property] boolean BindFormatsToContent;
12565 [property] boolean IsUserListEnabled;
12566 [property] long UserListIndex;
12567 [property] boolean CopyOutputData;
12568 [property] ::com::sun::star::table::CellAddress OutputPosition;
12571 module table {
12572 published enum TableSortFieldType {
12573 AUTOMATIC = 0,
12574 NUMERIC = 1,
12575 ALPHANUMERIC = 2
12577 published struct TableSortField {
12578 long Field;
12579 boolean IsAscending;
12580 boolean IsCaseSensitive;
12581 ::com::sun::star::table::TableSortFieldType FieldType;
12582 ::com::sun::star::lang::Locale CollatorLocale;
12583 string CollatorAlgorithm;
12586 module util {
12587 published service SortDescriptor2 {
12590 module table {
12591 published service TableSortDescriptor2 {
12592 service ::com::sun::star::util::SortDescriptor2;
12593 [property] sequence< ::com::sun::star::table::TableSortField > SortFields;
12594 [property, readonly] long MaxSortFieldsCount;
12595 [property] boolean IsSortColumns;
12598 module sheet {
12599 published service SheetSortDescriptor2 {
12600 service ::com::sun::star::table::TableSortDescriptor2;
12601 [property] boolean BindFormatsToContent;
12602 [property] boolean IsUserListEnabled;
12603 [property] long UserListIndex;
12604 [property] boolean CopyOutputData;
12605 [property] ::com::sun::star::table::CellAddress OutputPosition;
12606 [property] boolean ContainsHeader;
12608 published interface XCellRangeMovement {
12609 interface ::com::sun::star::uno::XInterface;
12610 void insertCells([in] ::com::sun::star::table::CellRangeAddress aRange, [in] ::com::sun::star::sheet::CellInsertMode nMode);
12611 void removeRange([in] ::com::sun::star::table::CellRangeAddress aRange, [in] ::com::sun::star::sheet::CellDeleteMode nMode);
12612 void moveRange([in] ::com::sun::star::table::CellAddress aDestination, [in] ::com::sun::star::table::CellRangeAddress aSource);
12613 void copyRange([in] ::com::sun::star::table::CellAddress aDestination, [in] ::com::sun::star::table::CellRangeAddress aSource);
12615 published interface XDataPilotTablesSupplier {
12616 interface ::com::sun::star::uno::XInterface;
12617 ::com::sun::star::sheet::XDataPilotTables getDataPilotTables();
12619 published interface XPrintAreas {
12620 interface ::com::sun::star::uno::XInterface;
12621 sequence< ::com::sun::star::table::CellRangeAddress > getPrintAreas();
12622 void setPrintAreas([in] sequence< ::com::sun::star::table::CellRangeAddress > aPrintAreas);
12623 boolean getPrintTitleColumns();
12624 void setPrintTitleColumns([in] boolean bPrintTitleColumns);
12625 ::com::sun::star::table::CellRangeAddress getTitleColumns();
12626 void setTitleColumns([in] ::com::sun::star::table::CellRangeAddress aTitleColumns);
12627 boolean getPrintTitleRows();
12628 void setPrintTitleRows([in] boolean bPrintTitleRows);
12629 ::com::sun::star::table::CellRangeAddress getTitleRows();
12630 void setTitleRows([in] ::com::sun::star::table::CellRangeAddress aTitleRows);
12632 published interface XScenariosSupplier {
12633 interface ::com::sun::star::uno::XInterface;
12634 ::com::sun::star::sheet::XScenarios getScenarios();
12636 published interface XSheetAnnotationsSupplier {
12637 interface ::com::sun::star::uno::XInterface;
12638 ::com::sun::star::sheet::XSheetAnnotations getAnnotations();
12640 published interface XSheetAuditing {
12641 interface ::com::sun::star::uno::XInterface;
12642 boolean hideDependents([in] ::com::sun::star::table::CellAddress aPosition);
12643 boolean hidePrecedents([in] ::com::sun::star::table::CellAddress aPosition);
12644 boolean showDependents([in] ::com::sun::star::table::CellAddress aPosition);
12645 boolean showPrecedents([in] ::com::sun::star::table::CellAddress aPosition);
12646 boolean showErrors([in] ::com::sun::star::table::CellAddress aPosition);
12647 boolean showInvalid();
12648 void clearArrows();
12650 /** @deprecated */ published interface XSheetLinkable {
12651 interface ::com::sun::star::uno::XInterface;
12652 ::com::sun::star::sheet::SheetLinkMode getLinkMode();
12653 void setLinkMode([in] ::com::sun::star::sheet::SheetLinkMode nLinkMode);
12654 string getLinkUrl();
12655 void setLinkUrl([in] string aLinkUrl);
12656 string getLinkSheetName();
12657 void setLinkSheetName([in] string aLinkSheetName);
12658 void link([in] string aUrl, [in] string aSheetName, [in] string aFilterName, [in] string aFilterOptions, [in] ::com::sun::star::sheet::SheetLinkMode nMode);
12660 published interface XSheetOutline {
12661 interface ::com::sun::star::uno::XInterface;
12662 void group([in] ::com::sun::star::table::CellRangeAddress aRange, [in] ::com::sun::star::table::TableOrientation nOrientation);
12663 void ungroup([in] ::com::sun::star::table::CellRangeAddress aRange, [in] ::com::sun::star::table::TableOrientation nOrientation);
12664 void autoOutline([in] ::com::sun::star::table::CellRangeAddress aRange);
12665 void clearOutline();
12666 void hideDetail([in] ::com::sun::star::table::CellRangeAddress aRange);
12667 void showDetail([in] ::com::sun::star::table::CellRangeAddress aRange);
12668 void showLevel([in] short nLevel, [in] ::com::sun::star::table::TableOrientation nOrientation);
12670 published struct TablePageBreakData {
12671 long Position;
12672 boolean ManualBreak;
12674 /** @deprecated */ published interface XSheetPageBreak {
12675 interface ::com::sun::star::uno::XInterface;
12676 sequence< ::com::sun::star::sheet::TablePageBreakData > getColumnPageBreaks();
12677 sequence< ::com::sun::star::sheet::TablePageBreakData > getRowPageBreaks();
12678 void removeAllManualPageBreaks();
12680 published interface XSpreadsheet {
12681 interface ::com::sun::star::sheet::XSheetCellRange;
12682 ::com::sun::star::sheet::XSheetCellCursor createCursor();
12683 ::com::sun::star::sheet::XSheetCellCursor createCursorByRange([in] ::com::sun::star::sheet::XSheetCellRange aRange);
12686 module table {
12687 published interface XTableCharts;
12688 published interface XTableChartsSupplier {
12689 interface ::com::sun::star::uno::XInterface;
12690 ::com::sun::star::table::XTableCharts getCharts();
12693 module util {
12694 published interface XProtectable {
12695 interface ::com::sun::star::uno::XInterface;
12696 void protect([in] string aPassword);
12697 void unprotect([in] string aPassword) raises (::com::sun::star::lang::IllegalArgumentException);
12698 boolean isProtected();
12701 module sheet {
12702 published interface XCalculatable {
12703 interface ::com::sun::star::uno::XInterface;
12704 void calculate();
12705 void calculateAll();
12706 boolean isAutomaticCalculationEnabled();
12707 void enableAutomaticCalculation([in] boolean bEnabled);
12709 /** @deprecated */ published interface XConsolidatable {
12710 interface ::com::sun::star::uno::XInterface;
12711 ::com::sun::star::sheet::XConsolidationDescriptor createConsolidationDescriptor([in] boolean bEmpty);
12712 void consolidate([in] ::com::sun::star::sheet::XConsolidationDescriptor xDescriptor);
12714 published interface XDocumentAuditing {
12715 interface ::com::sun::star::uno::XInterface;
12716 void refreshArrows();
12718 published interface XGoalSeek {
12719 interface ::com::sun::star::uno::XInterface;
12720 ::com::sun::star::sheet::GoalResult seekGoal([in] ::com::sun::star::table::CellAddress aFormulaPosition, [in] ::com::sun::star::table::CellAddress aVariablePosition, [in] string aGoalValue);
12722 published interface XSpreadsheets;
12723 published interface XSpreadsheetDocument {
12724 interface ::com::sun::star::uno::XInterface;
12725 ::com::sun::star::sheet::XSpreadsheets getSheets();
12727 published service SpreadsheetDocument {
12728 service ::com::sun::star::document::OfficeDocument;
12729 /** @deprecated */ [optional] service ::com::sun::star::sheet::SpreadsheetDocumentSettings;
12730 interface ::com::sun::star::lang::XMultiServiceFactory;
12731 interface ::com::sun::star::frame::XModel;
12732 interface ::com::sun::star::document::XActionLockable;
12733 interface ::com::sun::star::document::XLinkTargetSupplier;
12734 interface ::com::sun::star::util::XProtectable;
12735 interface ::com::sun::star::sheet::XSpreadsheetDocument;
12736 interface ::com::sun::star::sheet::XCalculatable;
12737 interface ::com::sun::star::sheet::XDocumentAuditing;
12738 interface ::com::sun::star::sheet::XConsolidatable;
12739 interface ::com::sun::star::sheet::XGoalSeek;
12740 interface ::com::sun::star::drawing::XDrawPagesSupplier;
12741 interface ::com::sun::star::style::XStyleFamiliesSupplier;
12742 interface ::com::sun::star::util::XNumberFormatsSupplier;
12743 [property, readonly] ::com::sun::star::sheet::XNamedRanges NamedRanges;
12744 [property, readonly] ::com::sun::star::sheet::XDatabaseRanges DatabaseRanges;
12745 [property, readonly] ::com::sun::star::sheet::XLabelRanges ColumnLabelRanges;
12746 [property, readonly] ::com::sun::star::sheet::XLabelRanges RowLabelRanges;
12747 [property, readonly] ::com::sun::star::container::XNameAccess SheetLinks;
12748 [property, readonly] ::com::sun::star::sheet::XAreaLinks AreaLinks;
12749 [property, readonly] ::com::sun::star::container::XNameAccess DDELinks;
12751 published service SpreadsheetDrawPage {
12752 interface ::com::sun::star::drawing::XDrawPage;
12753 interface ::com::sun::star::drawing::XShapeGrouper;
12755 published interface XViewPane {
12756 interface ::com::sun::star::uno::XInterface;
12757 long getFirstVisibleColumn();
12758 void setFirstVisibleColumn([in] long nFirstVisibleColumn);
12759 long getFirstVisibleRow();
12760 void setFirstVisibleRow([in] long nFirstVisibleRow);
12761 ::com::sun::star::table::CellRangeAddress getVisibleRange();
12763 published service SpreadsheetViewPane {
12764 interface ::com::sun::star::sheet::XViewPane;
12765 interface ::com::sun::star::sheet::XCellRangeReferrer;
12766 [optional] interface ::com::sun::star::view::XControlAccess;
12768 published service SpreadsheetViewSettings {
12769 interface ::com::sun::star::beans::XPropertySet;
12770 [property] boolean ShowFormulas;
12771 [property] boolean ShowZeroValues;
12772 [property] boolean IsValueHighlightingEnabled;
12773 [property] boolean ShowNotes;
12774 [property] boolean HasVerticalScrollBar;
12775 [property] boolean HasHorizontalScrollBar;
12776 [property] boolean HasSheetTabs;
12777 [property] boolean IsOutlineSymbolsSet;
12778 [property] boolean HasColumnRowHeaders;
12779 [property] boolean ShowGrid;
12780 [property] ::com::sun::star::util::Color GridColor;
12781 [property] boolean ShowHelpLines;
12782 [property] boolean ShowAnchor;
12783 [property] boolean ShowPageBreaks;
12784 [property] short ShowObjects;
12785 [property] short ShowCharts;
12786 [property] short ShowDrawing;
12787 /** @deprecated */ [property] boolean HideSpellMarks;
12788 [property] short ZoomType;
12789 [property] short ZoomValue;
12791 published interface XActivationEventListener;
12792 published interface XActivationBroadcaster {
12793 interface ::com::sun::star::uno::XInterface;
12794 void addActivationEventListener([in] ::com::sun::star::sheet::XActivationEventListener aListener);
12795 void removeActivationEventListener([in] ::com::sun::star::sheet::XActivationEventListener aListener);
12797 published interface XEnhancedMouseClickBroadcaster {
12798 interface ::com::sun::star::uno::XInterface;
12799 void addEnhancedMouseClickHandler([in] ::com::sun::star::awt::XEnhancedMouseClickHandler aListener);
12800 void removeEnhancedMouseClickHandler([in] ::com::sun::star::awt::XEnhancedMouseClickHandler aListener);
12802 published interface XRangeSelectionChangeListener;
12803 published interface XRangeSelectionListener;
12804 published interface XRangeSelection {
12805 interface ::com::sun::star::uno::XInterface;
12806 void startRangeSelection([in] sequence< ::com::sun::star::beans::PropertyValue > aArguments);
12807 void abortRangeSelection();
12808 void addRangeSelectionListener([in] ::com::sun::star::sheet::XRangeSelectionListener aListener);
12809 void removeRangeSelectionListener([in] ::com::sun::star::sheet::XRangeSelectionListener aListener);
12810 void addRangeSelectionChangeListener([in] ::com::sun::star::sheet::XRangeSelectionChangeListener aListener);
12811 void removeRangeSelectionChangeListener([in] ::com::sun::star::sheet::XRangeSelectionChangeListener aListener);
12813 published interface XSpreadsheetView {
12814 interface ::com::sun::star::uno::XInterface;
12815 ::com::sun::star::sheet::XSpreadsheet getActiveSheet();
12816 void setActiveSheet([in] ::com::sun::star::sheet::XSpreadsheet xActiveSheet);
12818 published interface XViewFreezable {
12819 interface ::com::sun::star::uno::XInterface;
12820 boolean hasFrozenPanes();
12821 void freezeAtPosition([in] long nColumns, [in] long nRows);
12823 /** @deprecated */ published interface XViewSplitable {
12824 interface ::com::sun::star::uno::XInterface;
12825 boolean getIsWindowSplit();
12826 long getSplitHorizontal();
12827 long getSplitVertical();
12828 long getSplitColumn();
12829 long getSplitRow();
12830 void splitAtPosition([in] long nPixelX, [in] long nPixelY);
12832 published service SpreadsheetView {
12833 service ::com::sun::star::frame::Controller;
12834 service ::com::sun::star::sheet::SpreadsheetViewSettings;
12835 service ::com::sun::star::sheet::SpreadsheetViewPane;
12836 interface ::com::sun::star::sheet::XSpreadsheetView;
12837 interface ::com::sun::star::container::XIndexAccess;
12838 interface ::com::sun::star::container::XEnumerationAccess;
12839 interface ::com::sun::star::view::XSelectionSupplier;
12840 interface ::com::sun::star::sheet::XViewSplitable;
12841 interface ::com::sun::star::sheet::XViewFreezable;
12842 interface ::com::sun::star::sheet::XRangeSelection;
12843 [optional] interface ::com::sun::star::sheet::XEnhancedMouseClickBroadcaster;
12844 [optional] interface ::com::sun::star::sheet::XActivationBroadcaster;
12846 published constants SpreadsheetViewObjectsMode {
12847 const short HIDE = 1;
12848 const short SHOW = 0;
12850 published service SpreadsheetViewPanesEnumeration {
12851 interface ::com::sun::star::container::XEnumeration;
12853 published interface XCellRangesAccess {
12854 interface ::com::sun::star::uno::XInterface;
12855 ::com::sun::star::table::XCell getCellByPosition([in] long nColumn, [in] long nRow, [in] long nSheet) raises (::com::sun::star::lang::IndexOutOfBoundsException);
12856 ::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);
12857 sequence< ::com::sun::star::table::XCellRange > getCellRangesByName([in] string aRange) raises (::com::sun::star::lang::IllegalArgumentException);
12859 published interface XSpreadsheets {
12860 interface ::com::sun::star::container::XNameContainer;
12861 void insertNewByName([in] string aName, [in] short nPosition);
12862 void moveByName([in] string aName, [in] short nDestination);
12863 void copyByName([in] string aName, [in] string aCopy, [in] short nDestination);
12865 published service Spreadsheets {
12866 interface ::com::sun::star::sheet::XSpreadsheets;
12867 interface ::com::sun::star::container::XIndexAccess;
12868 interface ::com::sun::star::container::XEnumerationAccess;
12869 [optional] interface ::com::sun::star::sheet::XCellRangesAccess;
12871 published service SpreadsheetsEnumeration {
12872 interface ::com::sun::star::container::XEnumeration;
12874 published constants StatusBarFunction {
12875 const short AVERAGE = 1;
12876 const short COUNT = 3;
12877 const short COUNTNUMS = 2;
12878 const short MAX = 4;
12879 const short MIN = 5;
12880 const short NONE = 0;
12881 const short SUM = 9;
12883 published struct SubTotalColumn {
12884 long Column;
12885 ::com::sun::star::sheet::GeneralFunction Function;
12887 published interface XSubTotalDescriptor {
12888 interface ::com::sun::star::uno::XInterface;
12889 void addNew([in] sequence< ::com::sun::star::sheet::SubTotalColumn > aSubTotalColumns, [in] long nGroupColumn);
12890 void clear();
12892 published service SubTotalDescriptor {
12893 interface ::com::sun::star::sheet::XSubTotalDescriptor;
12894 interface ::com::sun::star::container::XEnumerationAccess;
12895 interface ::com::sun::star::container::XIndexAccess;
12896 interface ::com::sun::star::beans::XPropertySet;
12897 [property] boolean InsertPageBreaks;
12898 [property] boolean IsCaseSensitive;
12899 [property] boolean EnableUserSortList;
12900 [property] long UserSortListIndex;
12901 [property] boolean BindFormatsToContent;
12902 [property] boolean EnableSort;
12903 [property] boolean SortAscending;
12904 [property, readonly] long MaxFieldCount;
12906 published interface XSubTotalField {
12907 interface ::com::sun::star::uno::XInterface;
12908 long getGroupColumn();
12909 void setGroupColumn([in] long nGroupColumn);
12910 sequence< ::com::sun::star::sheet::SubTotalColumn > getSubTotalColumns();
12911 void setSubTotalColumns([in] sequence< ::com::sun::star::sheet::SubTotalColumn > aSubTotalColumns);
12913 published service SubTotalField {
12914 interface ::com::sun::star::sheet::XSubTotalField;
12916 published service SubTotalFieldsEnumeration {
12917 interface ::com::sun::star::container::XEnumeration;
12919 published service TableAutoFormat {
12920 interface ::com::sun::star::beans::XPropertySet;
12921 interface ::com::sun::star::container::XIndexAccess;
12922 interface ::com::sun::star::container::XEnumerationAccess;
12923 interface ::com::sun::star::container::XNamed;
12924 [property] boolean IncludeFont;
12925 [property] boolean IncludeJustify;
12926 [property] boolean IncludeBorder;
12927 [property] boolean IncludeBackground;
12928 [property] boolean IncludeNumberFormat;
12929 [property] boolean IncludeWidthAndHeight;
12931 published service TableAutoFormatEnumeration {
12932 interface ::com::sun::star::container::XEnumeration;
12934 published service TableAutoFormatField {
12935 interface ::com::sun::star::beans::XPropertySet;
12936 [property] string CharFontName;
12937 [property, optional] string CharFontNameAsian;
12938 [property, optional] string CharFontNameComplex;
12939 [property] string CharFontStyleName;
12940 [property, optional] string CharFontStyleNameAsian;
12941 [property, optional] string CharFontStyleNameComplex;
12942 [property] string CharFontCharSet;
12943 [property, optional] string CharFontCharSetAsian;
12944 [property, optional] string CharFontCharSetComplex;
12945 [property] string CharFontFamily;
12946 [property, optional] string CharFontFamilyAsian;
12947 [property, optional] string CharFontFamilyComplex;
12948 [property] string CharFontPitch;
12949 [property, optional] string CharFontPitchAsian;
12950 [property, optional] string CharFontPitchComplex;
12951 [property] float CharHeight;
12952 [property, optional] float CharHeightAsian;
12953 [property, optional] float CharHeightComplex;
12954 [property] float CharWeight;
12955 [property, optional] float CharWeightAsian;
12956 [property, optional] float CharWeightComplex;
12957 [property] ::com::sun::star::awt::FontSlant CharPosture;
12958 [property, optional] ::com::sun::star::awt::FontSlant CharPostureAsian;
12959 [property, optional] ::com::sun::star::awt::FontSlant CharPostureComplex;
12960 [property] short CharUnderline;
12961 [property] boolean CharCrossedOut;
12962 [property] boolean CharContoured;
12963 [property] boolean CharShadowed;
12964 [property] ::com::sun::star::util::Color CharColor;
12965 [property] ::com::sun::star::util::Color CellBackColor;
12966 [property] boolean IsCellBackgroundTransparent;
12967 [property, optional] ::com::sun::star::table::ShadowFormat ShadowFormat;
12968 [property, optional] ::com::sun::star::table::CellHoriJustify HoriJustify;
12969 [property, optional] long VertJustify;
12970 [property, optional] boolean IsTextWrapped;
12971 [property, optional] ::com::sun::star::table::CellOrientation Orientation;
12972 [property, optional] long RotateAngle;
12973 [property, optional] long RotateReference;
12974 [property, optional] long ParaTopMargin;
12975 [property, optional] long ParaBottomMargin;
12976 [property, optional] long ParaLeftMargin;
12977 [property, optional] long ParaRightMargin;
12978 [property, optional] ::com::sun::star::table::TableBorder TableBorder;
12979 [property, optional] ::com::sun::star::table::TableBorder2 TableBorder2;
12981 published service TableAutoFormats {
12982 interface ::com::sun::star::container::XNameContainer;
12983 interface ::com::sun::star::container::XIndexAccess;
12984 interface ::com::sun::star::container::XEnumerationAccess;
12986 published service TableAutoFormatsEnumeration {
12987 interface ::com::sun::star::container::XEnumeration;
12990 module style {
12991 published service CellStyle {
12992 service ::com::sun::star::style::Style;
12995 module sheet {
12996 published service TableCellStyle {
12997 service ::com::sun::star::table::CellProperties;
12998 service ::com::sun::star::style::CellStyle;
12999 service ::com::sun::star::style::CharacterProperties;
13000 service ::com::sun::star::style::CharacterPropertiesAsian;
13001 service ::com::sun::star::style::CharacterPropertiesComplex;
13002 service ::com::sun::star::style::ParagraphProperties;
13004 published interface XSheetCondition {
13005 interface ::com::sun::star::uno::XInterface;
13006 ::com::sun::star::sheet::ConditionOperator getOperator();
13007 void setOperator([in] ::com::sun::star::sheet::ConditionOperator nOperator);
13008 string getFormula1();
13009 void setFormula1([in] string aFormula1);
13010 string getFormula2();
13011 void setFormula2([in] string aFormula2);
13012 ::com::sun::star::table::CellAddress getSourcePosition();
13013 void setSourcePosition([in] ::com::sun::star::table::CellAddress aSourcePosition);
13015 published interface XSheetConditionalEntry {
13016 interface ::com::sun::star::uno::XInterface;
13017 string getStyleName();
13018 void setStyleName([in] string aStyleName);
13020 published service TableConditionalEntry {
13021 interface ::com::sun::star::sheet::XSheetCondition;
13022 interface ::com::sun::star::sheet::XSheetConditionalEntry;
13024 published service TableConditionalEntryEnumeration {
13025 interface ::com::sun::star::container::XEnumeration;
13027 published interface XSheetConditionalEntries {
13028 interface ::com::sun::star::container::XIndexAccess;
13029 void addNew([in] sequence< ::com::sun::star::beans::PropertyValue > aConditionalEntry);
13030 void removeByIndex([in] long nIndex);
13031 void clear();
13033 published service TableConditionalFormat {
13034 interface ::com::sun::star::sheet::XSheetConditionalEntries;
13035 interface ::com::sun::star::container::XNameAccess;
13036 interface ::com::sun::star::container::XEnumerationAccess;
13037 interface ::com::sun::star::container::XIndexAccess;
13040 module style {
13041 published enum PageStyleLayout {
13042 ALL = 0,
13043 LEFT = 1,
13044 RIGHT = 2,
13045 MIRRORED = 3
13047 published service PageProperties {
13048 [property] ::com::sun::star::util::Color BackColor;
13049 /** @deprecated */ [property] string BackGraphicURL;
13050 [property] string BackGraphicFilter;
13051 [property] ::com::sun::star::style::GraphicLocation BackGraphicLocation;
13052 [property] boolean BackTransparent;
13053 [property] long LeftMargin;
13054 [property] long RightMargin;
13055 [property] long TopMargin;
13056 [property] long BottomMargin;
13057 [property] ::com::sun::star::table::BorderLine LeftBorder;
13058 [property] ::com::sun::star::table::BorderLine RightBorder;
13059 [property] ::com::sun::star::table::BorderLine TopBorder;
13060 [property] ::com::sun::star::table::BorderLine BottomBorder;
13061 [property] long LeftBorderDistance;
13062 [property] long RightBorderDistance;
13063 [property] long TopBorderDistance;
13064 [property] long BottomBorderDistance;
13065 [property] ::com::sun::star::table::ShadowFormat ShadowFormat;
13066 [property] boolean IsLandscape;
13067 [property] short NumberingType;
13068 [property] ::com::sun::star::style::PageStyleLayout PageStyleLayout;
13069 [property] string PrinterPaperTray;
13070 [property, optional] boolean RegisterModeActive;
13071 [property, optional] string RegisterParagraphStyle;
13072 [property] ::com::sun::star::awt::Size Size;
13073 [property] long Width;
13074 [property] long Height;
13075 [property, optional] ::com::sun::star::text::XTextColumns TextColumns;
13076 [property] ::com::sun::star::container::XNameContainer UserDefinedAttributes;
13077 [property, maybevoid] ::com::sun::star::util::Color HeaderBackColor;
13078 /** @deprecated */ [property, maybevoid] string HeaderBackGraphicURL;
13079 [property, maybevoid] string HeaderBackGraphicFilter;
13080 [property, maybevoid] ::com::sun::star::style::GraphicLocation HeaderBackGraphicLocation;
13081 [property, maybevoid] long HeaderLeftMargin;
13082 [property, maybevoid] long HeaderRightMargin;
13083 [property, maybevoid] boolean HeaderBackTransparent;
13084 [property, maybevoid] ::com::sun::star::table::BorderLine HeaderLeftBorder;
13085 [property, maybevoid] ::com::sun::star::table::BorderLine HeaderRightBorder;
13086 [property, maybevoid] ::com::sun::star::table::BorderLine HeaderTopBorder;
13087 [property, maybevoid] ::com::sun::star::table::BorderLine HeaderBottomBorder;
13088 [property, maybevoid] long HeaderLeftBorderDistance;
13089 [property, maybevoid] long HeaderRightBorderDistance;
13090 [property, maybevoid] long HeaderTopBorderDistance;
13091 [property, maybevoid] long HeaderBottomBorderDistance;
13092 [property, maybevoid] ::com::sun::star::table::ShadowFormat HeaderShadowFormat;
13093 [property, maybevoid] long HeaderBodyDistance;
13094 [property, maybevoid] boolean HeaderIsShared;
13095 [property, maybevoid, optional] boolean FirstIsShared;
13096 [property, maybevoid] long HeaderHeight;
13097 [property, maybevoid] boolean HeaderIsDynamicHeight;
13098 [property] boolean HeaderIsOn;
13099 [property, maybevoid, optional] ::com::sun::star::text::XText HeaderText;
13100 [property, maybevoid, optional] ::com::sun::star::text::XText HeaderTextLeft;
13101 [property, maybevoid, optional] ::com::sun::star::text::XText HeaderTextRight;
13102 [property, maybevoid] ::com::sun::star::util::Color FooterBackColor;
13103 /** @deprecated */ [property, maybevoid] string FooterBackGraphicURL;
13104 [property, maybevoid] string FooterBackGraphicFilter;
13105 [property, maybevoid] ::com::sun::star::style::GraphicLocation FooterBackGraphicLocation;
13106 [property, maybevoid] long FooterLeftMargin;
13107 [property, maybevoid] long FooterRightMargin;
13108 [property, maybevoid] boolean FooterBackTransparent;
13109 [property, maybevoid] ::com::sun::star::table::BorderLine FooterLeftBorder;
13110 [property, maybevoid] ::com::sun::star::table::BorderLine FooterRightBorder;
13111 [property, maybevoid] ::com::sun::star::table::BorderLine FooterTopBorder;
13112 [property, maybevoid] ::com::sun::star::table::BorderLine FooterBottomBorder;
13113 [property, maybevoid] long FooterLeftBorderDistance;
13114 [property, maybevoid] long FooterRightBorderDistance;
13115 [property, maybevoid] long FooterTopBorderDistance;
13116 [property, maybevoid] long FooterBottomBorderDistance;
13117 [property, maybevoid] ::com::sun::star::table::ShadowFormat FooterShadowFormat;
13118 [property, maybevoid] long FooterBodyDistance;
13119 [property, maybevoid] boolean FooterIsDynamicHeight;
13120 [property, maybevoid] boolean FooterIsShared;
13121 [property, maybevoid] long FooterHeight;
13122 [property] boolean FooterIsOn;
13123 [property, maybevoid, optional] ::com::sun::star::text::XText FooterText;
13124 [property, maybevoid, optional] ::com::sun::star::text::XText FooterTextLeft;
13125 [property, maybevoid, optional] ::com::sun::star::text::XText FooterTextRight;
13126 [property, optional] long FootnoteHeight;
13127 [property, optional] short FootnoteLineWeight;
13128 [property, optional] short FootnoteLineStyle;
13129 [property, optional] ::com::sun::star::util::Color FootnoteLineColor;
13130 [property, optional] byte FootnoteLineRelativeWidth;
13131 [property, optional] short FootnoteLineAdjust;
13132 [property, optional] long FootnoteLineTextDistance;
13133 [property, optional] long FootnoteLineDistance;
13134 [property, optional] short WritingMode;
13135 [property, optional] short GridMode;
13136 [property, optional] ::com::sun::star::util::Color GridColor;
13137 [property, optional] short GridLines;
13138 [property, optional] long GridBaseHeight;
13139 [property, optional] long GridRubyHeight;
13140 [property, optional] boolean GridRubyBelow;
13141 [property, optional] boolean GridPrint;
13142 [property, optional] boolean GridDisplay;
13143 [property, maybevoid, optional] boolean HeaderDynamicSpacing;
13144 [property, maybevoid, optional] boolean FooterDynamicSpacing;
13145 [property] long BorderDistance;
13146 [property, maybevoid] long FooterBorderDistance;
13147 [property, maybevoid] long HeaderBorderDistance;
13148 [property, optional] ::com::sun::star::graphic::XGraphic BackGraphic;
13149 [property, maybevoid, optional] ::com::sun::star::graphic::XGraphic HeaderBackGraphic;
13150 [property, maybevoid, optional] ::com::sun::star::graphic::XGraphic FooterBackGraphic;
13151 [property, optional] long GutterMargin;
13152 [property, optional] boolean BackgroundFullSize;
13153 [property, optional] boolean RtlGutter;
13155 published service PageStyle {
13156 service ::com::sun::star::style::Style;
13157 service ::com::sun::star::style::PageProperties;
13160 module sheet {
13161 published service TablePageStyle {
13162 service ::com::sun::star::style::PageStyle;
13163 [property] boolean CenterHorizontally;
13164 [property] boolean CenterVertically;
13165 [property] boolean PrintAnnotations;
13166 [property] boolean PrintGrid;
13167 [property] boolean PrintHeaders;
13168 [property] boolean PrintCharts;
13169 [property] boolean PrintObjects;
13170 [property] boolean PrintDrawing;
13171 [property] boolean PrintFormulas;
13172 [property] boolean PrintZeroValues;
13173 [property] boolean PrintDownFirst;
13174 [property] ::com::sun::star::sheet::XHeaderFooterContent LeftPageHeaderContent;
13175 [property] ::com::sun::star::sheet::XHeaderFooterContent LeftPageFooterContent;
13176 [property] ::com::sun::star::sheet::XHeaderFooterContent RightPageHeaderContent;
13177 [property] ::com::sun::star::sheet::XHeaderFooterContent RightPageFooterContent;
13178 [property] short FirstPageNumber;
13179 [property] short PageScale;
13180 [property] short ScaleToPages;
13181 [property, optional] short ScaleToPagesX;
13182 [property, optional] short ScaleToPagesY;
13184 published enum ValidationAlertStyle {
13185 STOP = 0,
13186 WARNING = 1,
13187 INFO = 2,
13188 MACRO = 3
13190 published enum ValidationType {
13191 ANY = 0,
13192 WHOLE = 1,
13193 DECIMAL = 2,
13194 DATE = 3,
13195 TIME = 4,
13196 TEXT_LEN = 5,
13197 LIST = 6,
13198 CUSTOM = 7
13200 published service TableValidation {
13201 interface ::com::sun::star::beans::XPropertySet;
13202 interface ::com::sun::star::sheet::XSheetCondition;
13203 [property] ::com::sun::star::sheet::ValidationType Type;
13204 [property] boolean ShowInputMessage;
13205 [property] string InputTitle;
13206 [property] string InputMessage;
13207 [property] boolean ShowErrorMessage;
13208 [property] string ErrorTitle;
13209 [property] string ErrorMessage;
13210 [property] boolean IgnoreBlankCells;
13211 [property] ::com::sun::star::sheet::ValidationAlertStyle ErrorAlertStyle;
13212 [property, optional] short ShowList;
13214 published service UniqueCellFormatRanges {
13215 interface ::com::sun::star::container::XIndexAccess;
13216 interface ::com::sun::star::container::XEnumerationAccess;
13218 published service UniqueCellFormatRangesEnumeration {
13219 interface ::com::sun::star::container::XEnumeration;
13221 published interface XResultListener;
13222 published interface XVolatileResult {
13223 interface ::com::sun::star::uno::XInterface;
13224 void addResultListener([in] ::com::sun::star::sheet::XResultListener aListener);
13225 void removeResultListener([in] ::com::sun::star::sheet::XResultListener aListener);
13227 published service VolatileResult {
13228 interface ::com::sun::star::sheet::XVolatileResult;
13230 published interface XActivationEventListener {
13231 interface ::com::sun::star::lang::XEventListener;
13232 void activeSpreadsheetChanged([in] ::com::sun::star::sheet::ActivationEvent aEvent);
13234 /** @deprecated */ published interface XFillAcrossSheet {
13235 interface ::com::sun::star::uno::XInterface;
13236 void fillAcrossSheets([in] long nContentFlags);
13238 published interface XRangeSelectionChangeListener {
13239 interface ::com::sun::star::lang::XEventListener;
13240 void descriptorChanged([in] ::com::sun::star::sheet::RangeSelectionEvent aEvent);
13242 published interface XRangeSelectionListener {
13243 interface ::com::sun::star::lang::XEventListener;
13244 void done([in] ::com::sun::star::sheet::RangeSelectionEvent aEvent);
13245 void aborted([in] ::com::sun::star::sheet::RangeSelectionEvent aEvent);
13247 published interface XResultListener {
13248 interface ::com::sun::star::lang::XEventListener;
13249 void modified([in] ::com::sun::star::sheet::ResultEvent aEvent);
13251 /** @deprecated */ published interface XSheetPastable {
13252 interface ::com::sun::star::uno::XInterface;
13253 void paste([in] ::com::sun::star::table::CellAddress aDestination);
13254 void pasteFormat([in] ::com::sun::star::table::CellAddress aDestination, [in] string aFormat);
13255 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);
13257 /** @deprecated */ published interface XViewPanesSupplier {
13258 interface ::com::sun::star::uno::XInterface;
13259 ::com::sun::star::container::XIndexAccess getViewPanes();
13262 module style {
13263 published constants CaseMap {
13264 const short LOWERCASE = 2;
13265 const short NONE = 0;
13266 const short SMALLCAPS = 4;
13267 const short TITLE = 3;
13268 const short UPPERCASE = 1;
13270 published service CharacterStyle {
13271 service ::com::sun::star::style::Style;
13272 service ::com::sun::star::style::CharacterProperties;
13273 [property] float CharDiffHeight;
13274 [property] short CharPropHeight;
13275 [property] float CharDiffHeightAsian;
13276 [property] short CharPropHeightAsian;
13277 [property] float CharDiffHeightComplex;
13278 [property] short CharPropHeightComplex;
13280 published constants FootnoteLineStyle {
13281 const short DASHED = 3;
13282 const short DOTTED = 2;
13283 const short NONE = 0;
13284 const short SOLID = 1;
13286 published constants LineNumberPosition {
13287 const short INSIDE = 2;
13288 const short LEFT = 0;
13289 const short OUTSIDE = 3;
13290 const short RIGHT = 1;
13292 published constants LineSpacingMode {
13293 const short FIX = 3;
13294 const short LEADING = 2;
13295 const short MINIMUM = 1;
13296 const short PROP = 0;
13298 published service NumberingAlignment {
13299 [property] ::com::sun::star::style::HorizontalAlignment Alignment;
13300 [property] short TextMarginDistance;
13301 [property] short TextNumberingDistance;
13302 [property] short Insertion;
13304 published service NumberingLevel {
13305 [property] short NumberingType;
13306 [property] short ParentNumbering;
13307 /** @deprecated */ [property] string Prefix;
13308 /** @deprecated */ [property] string Suffix;
13309 [property] string CharStyleName;
13310 [property] short BulletId;
13311 [property] string BulletFontName;
13312 /** @deprecated */ [property] string GraphicURL;
13313 [property] short StartWith;
13314 [property, optional] ::com::sun::star::awt::XBitmap GraphicBitmap;
13315 [property, optional] string ListFormat;
13317 published service NumberingRule {
13318 service ::com::sun::star::style::NumberingAlignment;
13319 service ::com::sun::star::style::NumberingLevel;
13321 published constants NumberingType {
13322 const short AIU_FULLWIDTH_JA = 21;
13323 const short AIU_HALFWIDTH_JA = 22;
13324 const short ARABIC = 4;
13325 const short ARABIC_ZERO = 64;
13326 const short ARABIC_ZERO3 = 65;
13327 const short ARABIC_ZERO4 = 66;
13328 const short ARABIC_ZERO5 = 67;
13329 const short BITMAP = 8;
13330 const short CHARS_ARABIC = 31;
13331 const short CHARS_ARABIC_ABJAD = 54;
13332 const short CHARS_CYRILLIC_LOWER_LETTER_BG = 39;
13333 const short CHARS_CYRILLIC_LOWER_LETTER_N_BG = 41;
13334 const short CHARS_CYRILLIC_LOWER_LETTER_N_RU = 45;
13335 const short CHARS_CYRILLIC_LOWER_LETTER_N_SR = 51;
13336 const short CHARS_CYRILLIC_LOWER_LETTER_RU = 43;
13337 const short CHARS_CYRILLIC_LOWER_LETTER_SR = 49;
13338 const short CHARS_CYRILLIC_UPPER_LETTER_BG = 38;
13339 const short CHARS_CYRILLIC_UPPER_LETTER_N_BG = 40;
13340 const short CHARS_CYRILLIC_UPPER_LETTER_N_RU = 44;
13341 const short CHARS_CYRILLIC_UPPER_LETTER_N_SR = 50;
13342 const short CHARS_CYRILLIC_UPPER_LETTER_RU = 42;
13343 const short CHARS_CYRILLIC_UPPER_LETTER_SR = 48;
13344 const short CHARS_GREEK_LOWER_LETTER = 53;
13345 const short CHARS_GREEK_UPPER_LETTER = 52;
13346 const short CHARS_HEBREW = 33;
13347 const short CHARS_KHMER = 35;
13348 const short CHARS_LAO = 36;
13349 const short CHARS_LOWER_LETTER = 1;
13350 const short CHARS_LOWER_LETTER_N = 10;
13351 const short CHARS_MYANMAR = 47;
13352 const short CHARS_NEPALI = 34;
13353 const short CHARS_PERSIAN = 46;
13354 const short CHARS_PERSIAN_WORD = 55;
13355 const short CHARS_THAI = 32;
13356 const short CHARS_TIBETAN = 37;
13357 const short CHARS_UPPER_LETTER = 0;
13358 const short CHARS_UPPER_LETTER_N = 9;
13359 const short CHAR_SPECIAL = 6;
13360 const short CIRCLE_NUMBER = 14;
13361 const short DI_ZI_ZH = 19;
13362 const short FULLWIDTH_ARABIC = 13;
13363 const short HANGUL_CIRCLED_JAMO_KO = 29;
13364 const short HANGUL_CIRCLED_SYLLABLE_KO = 30;
13365 const short HANGUL_JAMO_KO = 27;
13366 const short HANGUL_SYLLABLE_KO = 28;
13367 const short IROHA_FULLWIDTH_JA = 23;
13368 const short IROHA_HALFWIDTH_JA = 24;
13369 const short NATIVE_NUMBERING = 12;
13370 const short NUMBER_ARABIC_INDIC = 57;
13371 const short NUMBER_EAST_ARABIC_INDIC = 58;
13372 const short NUMBER_HANGUL_KO = 26;
13373 const short NUMBER_HEBREW = 56;
13374 const short NUMBER_INDIC_DEVANAGARI = 59;
13375 const short NUMBER_LOWER_ZH = 15;
13376 const short NUMBER_NONE = 5;
13377 const short NUMBER_TRADITIONAL_JA = 20;
13378 const short NUMBER_UPPER_KO = 25;
13379 const short NUMBER_UPPER_ZH = 16;
13380 const short NUMBER_UPPER_ZH_TW = 17;
13381 const short PAGE_DESCRIPTOR = 7;
13382 const short ROMAN_LOWER = 3;
13383 const short ROMAN_UPPER = 2;
13384 const short SYMBOL_CHICAGO = 63;
13385 const short SZEKELY_ROVAS = 68;
13386 const short TEXT_CARDINAL = 61;
13387 const short TEXT_NUMBER = 60;
13388 const short TEXT_ORDINAL = 62;
13389 const short TIAN_GAN_ZH = 18;
13390 const short TRANSLITERATION = 11;
13393 module xml {
13394 published service ParaUserDefinedAttributesSupplier {
13395 [property] ::com::sun::star::container::XNameContainer ParaUserDefinedAttributes;
13398 module style {
13399 published service ParagraphStyle {
13400 service ::com::sun::star::style::Style;
13401 service ::com::sun::star::style::ParagraphProperties;
13402 [optional] service ::com::sun::star::xml::ParaUserDefinedAttributesSupplier;
13403 [property] long ParaLeftMarginRelative;
13404 [property] long ParaRightMarginRelative;
13405 [property] long ParaTopMarginRelative;
13406 [property] long ParaBottomMarginRelative;
13407 [property] short Category;
13408 [property] float CharDiffHeight;
13409 [property] short CharPropHeight;
13410 [property] float CharDiffHeightAsian;
13411 [property] short CharPropHeightAsian;
13412 [property] float CharDiffHeightComplex;
13413 [property] short CharPropHeightComplex;
13414 [property, optional, readonly] string PageStyleName;
13416 published constants ParagraphStyleCategory {
13417 const short CHAPTER = 1;
13418 const short EXTRA = 4;
13419 const short HTML = 5;
13420 const short INDEX = 3;
13421 const short LIST = 2;
13422 const short TEXT = 0;
13424 published service StyleFamilies {
13425 interface ::com::sun::star::container::XNameAccess;
13426 [optional] interface ::com::sun::star::container::XIndexAccess;
13428 published service StyleFamily {
13429 interface ::com::sun::star::container::XNameAccess;
13430 [optional] interface ::com::sun::star::container::XNameContainer;
13431 [optional] interface ::com::sun::star::container::XIndexAccess;
13433 published interface XStyleLoader {
13434 interface ::com::sun::star::uno::XInterface;
13435 void loadStylesFromURL([in] string URL, [in] sequence< ::com::sun::star::beans::PropertyValue > aOptions) raises (::com::sun::star::io::IOException);
13436 sequence< ::com::sun::star::beans::PropertyValue > getStyleLoaderOptions();
13439 module svg {
13440 /** @deprecated */ published interface XSVGPrinter {
13441 interface ::com::sun::star::uno::XInterface;
13442 boolean startJob([in] ::com::sun::star::xml::sax::XDocumentHandler aHandler, [in] sequence< byte > aJobSetup, [in] string aJobName, [in] unsigned long nCopies, [in] boolean bCollate);
13443 void printPage([in] sequence< byte > aPrintPage);
13444 void endJob();
13446 /** @deprecated */ published interface XSVGWriter {
13447 interface ::com::sun::star::uno::XInterface;
13448 void write([in] ::com::sun::star::xml::sax::XDocumentHandler aHandler, [in] sequence< byte > aMtf);
13451 module system {
13452 published interface XSimpleMailClient;
13453 published interface XSimpleMailClientSupplier {
13454 interface ::com::sun::star::uno::XInterface;
13455 ::com::sun::star::system::XSimpleMailClient querySimpleMailClient();
13457 published service SimpleCommandMail: ::com::sun::star::system::XSimpleMailClientSupplier;
13458 published constants SimpleMailClientFlags {
13459 const long DEFAULTS = 0;
13460 const long NO_LOGON_DIALOG = 2;
13461 const long NO_USER_INTERFACE = 1;
13463 published service SimpleSystemMail: ::com::sun::star::system::XSimpleMailClientSupplier;
13464 published exception SystemShellExecuteException: ::com::sun::star::uno::Exception {
13465 long PosixError;
13467 published interface XSystemShellExecute {
13468 interface ::com::sun::star::uno::XInterface;
13469 void execute([in] string aCommand, [in] string aParameter, [in] long nFlags) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::system::SystemShellExecuteException);
13471 published service SystemShellExecute: ::com::sun::star::system::XSystemShellExecute;
13472 published constants SystemShellExecuteFlags {
13473 const long DEFAULTS = 0;
13474 const long NO_SYSTEM_ERROR_MESSAGE = 1;
13475 const long URIS_ONLY = 2;
13477 published interface XSimpleMailMessage;
13478 published interface XSimpleMailClient {
13479 interface ::com::sun::star::uno::XInterface;
13480 ::com::sun::star::system::XSimpleMailMessage createSimpleMailMessage();
13481 void sendSimpleMailMessage([in] ::com::sun::star::system::XSimpleMailMessage xSimpleMailMessage, [in] long aFlag) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::Exception);
13483 published interface XSimpleMailMessage {
13484 interface ::com::sun::star::uno::XInterface;
13485 void setRecipient([in] string aRecipient);
13486 string getRecipient();
13487 void setCcRecipient([in] sequence< string > aCcRecipient);
13488 sequence< string > getCcRecipient();
13489 void setBccRecipient([in] sequence< string > aBccRecipient);
13490 sequence< string > getBccRecipient();
13491 void setOriginator([in] string aOriginator);
13492 string getOriginator();
13493 void setSubject([in] string aSubject);
13494 string getSubject();
13495 void setAttachement([in] sequence< string > aAttachement) raises (::com::sun::star::lang::IllegalArgumentException);
13496 sequence< string > getAttachement();
13499 module table {
13500 published enum CellVertJustify {
13501 STANDARD = 0,
13502 TOP = 1,
13503 CENTER = 2,
13504 BOTTOM = 3
13506 published struct TableBorderDistances {
13507 short TopDistance;
13508 boolean IsTopDistanceValid;
13509 short BottomDistance;
13510 boolean IsBottomDistanceValid;
13511 short LeftDistance;
13512 boolean IsLeftDistanceValid;
13513 short RightDistance;
13514 boolean IsRightDistanceValid;
13516 published interface XTableChart {
13517 interface ::com::sun::star::uno::XInterface;
13518 boolean getHasColumnHeaders();
13519 void setHasColumnHeaders([in] boolean bHasColumnHeaders);
13520 boolean getHasRowHeaders();
13521 void setHasRowHeaders([in] boolean bHasRowHeaders);
13522 sequence< ::com::sun::star::table::CellRangeAddress > getRanges();
13523 void setRanges([in] sequence< ::com::sun::star::table::CellRangeAddress > aRanges);
13525 published service TableChart {
13526 interface ::com::sun::star::table::XTableChart;
13527 interface ::com::sun::star::document::XEmbeddedObjectSupplier;
13528 interface ::com::sun::star::container::XNamed;
13530 published interface XTableCharts {
13531 interface ::com::sun::star::container::XNameAccess;
13532 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);
13533 void removeByName([in] string aName);
13535 published service TableCharts {
13536 interface ::com::sun::star::table::XTableCharts;
13537 interface ::com::sun::star::container::XIndexAccess;
13538 interface ::com::sun::star::container::XEnumerationAccess;
13540 published service TableChartsEnumeration {
13541 interface ::com::sun::star::container::XEnumeration;
13543 published service TableColumn {
13544 interface ::com::sun::star::table::XCellRange;
13545 interface ::com::sun::star::beans::XPropertySet;
13546 interface ::com::sun::star::container::XNamed;
13547 [property] long Width;
13548 [property] boolean OptimalWidth;
13549 [property] boolean IsVisible;
13550 [property] boolean IsStartOfNewPage;
13552 published interface XTableColumns {
13553 interface ::com::sun::star::container::XIndexAccess;
13554 void insertByIndex([in] long nIndex, [in] long nCount);
13555 void removeByIndex([in] long nIndex, [in] long nCount);
13557 published service TableColumns {
13558 interface ::com::sun::star::table::XTableColumns;
13559 interface ::com::sun::star::container::XEnumerationAccess;
13560 [optional] interface ::com::sun::star::container::XNameAccess;
13562 published service TableColumnsEnumeration {
13563 interface ::com::sun::star::container::XEnumeration;
13565 published service TableRow {
13566 interface ::com::sun::star::table::XCellRange;
13567 interface ::com::sun::star::beans::XPropertySet;
13568 [property] long Height;
13569 [property] boolean OptimalHeight;
13570 [property] boolean IsVisible;
13571 [property] boolean IsStartOfNewPage;
13573 published interface XTableRows {
13574 interface ::com::sun::star::container::XIndexAccess;
13575 void insertByIndex([in] long nIndex, [in] long nCount);
13576 void removeByIndex([in] long nIndex, [in] long nCount);
13578 published service TableRows {
13579 interface ::com::sun::star::table::XTableRows;
13580 interface ::com::sun::star::container::XEnumerationAccess;
13582 published service TableRowsEnumeration {
13583 interface ::com::sun::star::container::XEnumeration;
13586 module task {
13587 published interface XJobListener;
13588 published interface XAsyncJob {
13589 interface ::com::sun::star::uno::XInterface;
13590 void executeAsync([in] sequence< ::com::sun::star::beans::NamedValue > Arguments, [in] ::com::sun::star::task::XJobListener Listener) raises (::com::sun::star::lang::IllegalArgumentException);
13592 published service AsyncJob {
13593 interface ::com::sun::star::task::XAsyncJob;
13594 [optional] interface ::com::sun::star::util::XCloseable;
13596 published enum PasswordRequestMode {
13597 PASSWORD_CREATE = 0,
13598 PASSWORD_ENTER = 1,
13599 PASSWORD_REENTER = 2
13601 published exception PasswordRequest: ::com::sun::star::task::ClassifiedInteractionRequest {
13602 ::com::sun::star::task::PasswordRequestMode Mode;
13604 published exception DocumentMSPasswordRequest: ::com::sun::star::task::PasswordRequest {
13605 string Name;
13607 published exception DocumentPasswordRequest: ::com::sun::star::task::PasswordRequest {
13608 string Name;
13610 published exception ErrorCodeRequest: ::com::sun::star::uno::Exception {
13611 long ErrCode;
13613 published service InteractionHandler: ::com::sun::star::task::XInteractionHandler2 {
13614 createWithParent([in] ::com::sun::star::awt::XWindow parent);
13615 createWithParentAndContext([in] ::com::sun::star::awt::XWindow parent, [in] string context);
13617 published service Job {
13618 interface ::com::sun::star::task::XJob;
13619 [optional] interface ::com::sun::star::util::XCloseable;
13621 published interface XJobExecutor {
13622 interface ::com::sun::star::uno::XInterface;
13623 void trigger([in] string Event);
13625 /** @deprecated */ published service JobExecutor: ::com::sun::star::task::XJobExecutor;
13626 published exception MasterPasswordRequest: ::com::sun::star::task::PasswordRequest {
13628 published exception NoMasterException: ::com::sun::star::uno::RuntimeException {
13629 ::com::sun::star::task::PasswordRequestMode Mode;
13631 published interface XRestartManager {
13632 interface ::com::sun::star::uno::XInterface;
13633 void requestRestart([in] ::com::sun::star::task::XInteractionHandler xInteractionHandler) raises (::com::sun::star::uno::Exception);
13634 boolean isRestartRequested([in] boolean bInitialized) raises (::com::sun::star::uno::Exception);
13636 published exception PDFExportException: ::com::sun::star::uno::Exception {
13637 sequence< long > ErrorCodes;
13639 published interface XMasterPasswordHandling {
13640 interface ::com::sun::star::uno::XInterface;
13641 boolean authorizateWithMasterPassword([in] ::com::sun::star::task::XInteractionHandler xHandler);
13642 boolean changeMasterPassword([in] ::com::sun::star::task::XInteractionHandler xHandler);
13643 void removeMasterPassword();
13644 boolean hasMasterPassword();
13645 boolean allowPersistentStoring([in] boolean bAllow);
13646 boolean isPersistentStoringAllowed();
13648 published interface XMasterPasswordHandling2 {
13649 interface ::com::sun::star::task::XMasterPasswordHandling;
13650 boolean useDefaultMasterPassword([in] ::com::sun::star::task::XInteractionHandler xHandler);
13651 boolean isDefaultMasterPasswordUsed();
13653 published struct UserRecord {
13654 string UserName;
13655 sequence< string > Passwords;
13657 published struct UrlRecord {
13658 string Url;
13659 sequence< ::com::sun::star::task::UserRecord > UserList;
13661 published interface XPasswordContainer {
13662 interface ::com::sun::star::uno::XInterface;
13663 void add([in] string Url, [in] string UserName, [in] sequence< string > Passwords, [in] ::com::sun::star::task::XInteractionHandler Handler);
13664 void addPersistent([in] string Url, [in] string UserName, [in] sequence< string > Passwords, [in] ::com::sun::star::task::XInteractionHandler Handler);
13665 ::com::sun::star::task::UrlRecord find([in] string Url, [in] ::com::sun::star::task::XInteractionHandler Handler);
13666 ::com::sun::star::task::UrlRecord findForName([in] string Url, [in] string UserName, [in] ::com::sun::star::task::XInteractionHandler Handler);
13667 void remove([in] string Url, [in] string UserName);
13668 void removePersistent([in] string Url, [in] string UserName);
13669 void removeAllPersistent();
13670 sequence< ::com::sun::star::task::UrlRecord > getAllPersistent([in] ::com::sun::star::task::XInteractionHandler Handler);
13672 published interface XUrlContainer {
13673 interface ::com::sun::star::uno::XInterface;
13674 void addUrl([in] string Url, [in] boolean MakePersistent);
13675 string findUrl([in] string Url);
13676 void removeUrl([in] string Url);
13677 sequence< string > getUrls([in] boolean OnlyPersistent);
13679 published interface XPasswordContainer2 {
13680 interface ::com::sun::star::task::XPasswordContainer;
13681 interface ::com::sun::star::task::XMasterPasswordHandling2;
13682 interface ::com::sun::star::task::XUrlContainer;
13684 published service PasswordContainer: ::com::sun::star::task::XPasswordContainer2;
13685 published service PasswordContainerInteractionHandler: ::com::sun::star::task::XInteractionHandler;
13686 published exception UnsupportedOverwriteRequest: ::com::sun::star::task::ClassifiedInteractionRequest {
13687 string Name;
13689 published interface XInteractionApprove {
13690 interface ::com::sun::star::task::XInteractionContinuation;
13692 published interface XInteractionDisapprove {
13693 interface ::com::sun::star::task::XInteractionContinuation;
13695 published interface XInteractionPassword {
13696 interface ::com::sun::star::task::XInteractionContinuation;
13697 void setPassword([in] string aPasswd);
13698 string getPassword();
13700 published interface XInteractionPassword2 {
13701 interface ::com::sun::star::task::XInteractionPassword;
13702 void setPasswordToModify([in] string aPasswd);
13703 string getPasswordToModify();
13704 void setRecommendReadOnly([in] boolean bReadOnly);
13705 boolean getRecommendReadOnly();
13707 published interface XJobListener {
13708 interface ::com::sun::star::lang::XEventListener;
13709 void jobFinished([in] ::com::sun::star::task::XAsyncJob Job, [in] any Result);
13711 published interface XStatusIndicator {
13712 interface ::com::sun::star::uno::XInterface;
13713 void start([in] string Text, [in] long Range);
13714 void end();
13715 void setText([in] string Text);
13716 void setValue([in] long Value);
13717 void reset();
13719 /** @deprecated */ published interface XStatusIndicatorSupplier {
13720 interface ::com::sun::star::uno::XInterface;
13721 /** @deprecated */ ::com::sun::star::task::XStatusIndicator getStatusIndicator();
13723 published singleton theJobExecutor: ::com::sun::star::task::XJobExecutor;
13725 module text {
13726 published constants AuthorDisplayFormat {
13727 const short FIRST_NAME = 2;
13728 const short FULL = 0;
13729 const short INITIALS = 3;
13730 const short LAST_NAME = 1;
13732 published interface XAutoTextGroup;
13733 published interface XAutoTextContainer {
13734 interface ::com::sun::star::container::XNameAccess;
13735 ::com::sun::star::text::XAutoTextGroup insertNewByName([in] string aGroupName) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::ElementExistException);
13736 void removeByName([in] string aGroupName) raises (::com::sun::star::container::NoSuchElementException);
13738 published interface XAutoTextContainer2 {
13739 interface ::com::sun::star::text::XAutoTextContainer;
13740 interface ::com::sun::star::container::XIndexAccess;
13742 published service AutoTextContainer: ::com::sun::star::text::XAutoTextContainer2;
13743 /** @deprecated */ published interface XAutoTextEntry {
13744 interface ::com::sun::star::uno::XInterface;
13745 void applyTo([in] ::com::sun::star::text::XTextRange xRange);
13747 published service AutoTextEntry {
13748 interface ::com::sun::star::text::XAutoTextEntry;
13749 interface ::com::sun::star::text::XText;
13751 published interface XAutoTextGroup {
13752 interface ::com::sun::star::container::XNameAccess;
13753 sequence< string > getTitles();
13754 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);
13755 ::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);
13756 void removeByName([in] string aEntryName) raises (::com::sun::star::container::NoSuchElementException);
13758 published service AutoTextGroup {
13759 interface ::com::sun::star::text::XAutoTextGroup;
13760 interface ::com::sun::star::container::XIndexAccess;
13761 interface ::com::sun::star::container::XNamed;
13762 [property, readonly] string FilePath;
13763 [property] string Title;
13765 published interface XTextFrame;
13766 published service BaseFrameProperties {
13767 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
13768 [property] short AnchorPageNo;
13769 [property] ::com::sun::star::text::XTextFrame AnchorFrame;
13770 [property] ::com::sun::star::util::Color BackColor;
13771 /** @deprecated */ [property] string BackGraphicURL;
13772 [property] string BackGraphicFilter;
13773 [property] ::com::sun::star::style::GraphicLocation BackGraphicLocation;
13774 [property] ::com::sun::star::table::BorderLine LeftBorder;
13775 [property] ::com::sun::star::table::BorderLine RightBorder;
13776 [property] ::com::sun::star::table::BorderLine TopBorder;
13777 [property] ::com::sun::star::table::BorderLine BottomBorder;
13778 [property] long BorderDistance;
13779 [property] long LeftBorderDistance;
13780 [property] long RightBorderDistance;
13781 [property] long TopBorderDistance;
13782 [property] long BottomBorderDistance;
13783 [property] boolean BackTransparent;
13784 [property] boolean ContentProtected;
13785 [property] long LeftMargin;
13786 [property] long RightMargin;
13787 [property] long TopMargin;
13788 [property] long BottomMargin;
13789 [property] long Height;
13790 [property] long Width;
13791 [property] short RelativeHeight;
13792 [property] short RelativeWidth;
13793 [property] boolean IsSyncWidthToHeight;
13794 [property] boolean IsSyncHeightToWidth;
13795 [property] short HoriOrient;
13796 [property] long HoriOrientPosition;
13797 [property] short HoriOrientRelation;
13798 [property] short VertOrient;
13799 [property] long VertOrientPosition;
13800 [property] short VertOrientRelation;
13801 [property] string HyperLinkURL;
13802 [property] string HyperLinkTarget;
13803 [property] string HyperLinkName;
13804 [property] boolean Opaque;
13805 [property] boolean PageToggle;
13806 [property] boolean PositionProtected;
13807 [property] boolean Print;
13808 [property] ::com::sun::star::table::ShadowFormat ShadowFormat;
13809 [property] boolean ServerMap;
13810 [property] ::com::sun::star::awt::Size Size;
13811 [property] boolean SizeProtected;
13812 /** @deprecated */ [property] ::com::sun::star::text::WrapTextMode Surround;
13813 [property] boolean SurroundAnchorOnly;
13814 [property, optional] short WrapInfluenceOnPosition;
13815 [property, maybevoid, optional] ::com::sun::star::awt::Size LayoutSize;
13816 [property, optional] string Title;
13817 [property, optional] string Description;
13818 [property, optional] ::com::sun::star::drawing::FillStyle FillStyle;
13819 [property, optional] ::com::sun::star::awt::Gradient FillGradient;
13820 [property, optional] string FillGradientName;
13821 [property, optional] short ShadowTransparence;
13822 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > FrameInteropGrabBag;
13823 [property, optional] short RelativeHeightRelation;
13824 [property, optional] short RelativeWidthRelation;
13825 [property, optional] ::com::sun::star::graphic::XGraphic BackGraphic;
13826 [property, optional] boolean AllowOverlap;
13828 published service BaseFrame {
13829 service ::com::sun::star::text::BaseFrameProperties;
13830 service ::com::sun::star::text::TextContent;
13831 interface ::com::sun::star::beans::XPropertySet;
13832 interface ::com::sun::star::container::XNamed;
13833 [optional] interface ::com::sun::star::drawing::XShape;
13834 [property] string FrameStyleName;
13836 /** @deprecated */ published interface XDocumentIndex {
13837 interface ::com::sun::star::text::XTextContent;
13838 string getServiceName();
13839 void update();
13841 published interface XTextSection;
13842 published service BaseIndex {
13843 interface ::com::sun::star::text::XDocumentIndex;
13844 [optional] interface ::com::sun::star::util::XRefreshable;
13845 [property] string Title;
13846 [property] boolean IsProtected;
13847 [property] string ParaStyleHeading;
13848 [property] string ParaStyleLevel1;
13849 [property, optional] string ParaStyleLevel2;
13850 [property, optional] string ParaStyleLevel3;
13851 [property, optional] string ParaStyleLevel4;
13852 [property, optional] string ParaStyleLevel5;
13853 [property, optional] string ParaStyleLevel6;
13854 [property, optional] string ParaStyleLevel7;
13855 [property, optional] string ParaStyleLevel8;
13856 [property, optional] string ParaStyleLevel9;
13857 [property, optional] string ParaStyleLevel10;
13858 [property, optional] string ParaStyleSeparator;
13859 [property] ::com::sun::star::text::XTextColumns TextColumns;
13860 /** @deprecated */ [property] string BackGraphicURL;
13861 [property] string BackGraphicFilter;
13862 [property] ::com::sun::star::style::GraphicLocation BackGraphicLocation;
13863 [property] ::com::sun::star::util::Color BackColor;
13864 [property] boolean BackTransparent;
13865 [property, optional] ::com::sun::star::container::XIndexReplace LevelFormat;
13866 [property, optional] boolean CreateFromChapter;
13867 [property] ::com::sun::star::text::XTextSection ContentSection;
13868 [property] ::com::sun::star::text::XTextSection HeaderSection;
13869 [property, optional] ::com::sun::star::graphic::XGraphic BackGraphic;
13871 published service BaseIndexMark {
13872 service ::com::sun::star::text::TextContent;
13873 [property] string AlternativeText;
13875 published service Bibliography {
13876 service ::com::sun::star::text::BaseIndex;
13877 [property] ::com::sun::star::lang::Locale Locale;
13878 [property] string SortAlgorithm;
13880 published constants BibliographyDataField {
13881 const short ADDRESS = 2;
13882 const short ANNOTE = 3;
13883 const short AUTHOR = 4;
13884 const short BIBILIOGRAPHIC_TYPE = 1;
13885 const short BOOKTITLE = 5;
13886 const short CHAPTER = 6;
13887 const short CUSTOM1 = 25;
13888 const short CUSTOM2 = 26;
13889 const short CUSTOM3 = 27;
13890 const short CUSTOM4 = 28;
13891 const short CUSTOM5 = 29;
13892 const short EDITION = 7;
13893 const short EDITOR = 8;
13894 const short HOWPUBLISHED = 9;
13895 const short IDENTIFIER = 0;
13896 const short INSTITUTION = 10;
13897 const short ISBN = 30;
13898 const short JOURNAL = 11;
13899 const short MONTH = 12;
13900 const short NOTE = 13;
13901 const short NUMBER = 14;
13902 const short ORGANIZATIONS = 15;
13903 const short PAGES = 16;
13904 const short PUBLISHER = 17;
13905 const short REPORT_TYPE = 21;
13906 const short SCHOOL = 18;
13907 const short SERIES = 19;
13908 const short TITLE = 20;
13909 const short URL = 24;
13910 const short VOLUME = 22;
13911 const short YEAR = 23;
13913 published constants BibliographyDataType {
13914 const short ARTICLE = 0;
13915 const short BOOK = 1;
13916 const short BOOKLET = 2;
13917 const short CONFERENCE = 3;
13918 const short CUSTOM1 = 17;
13919 const short CUSTOM2 = 18;
13920 const short CUSTOM3 = 19;
13921 const short CUSTOM4 = 20;
13922 const short CUSTOM5 = 21;
13923 const short EMAIL = 15;
13924 const short INBOOK = 4;
13925 const short INCOLLECTION = 5;
13926 const short INPROCEEDINGS = 6;
13927 const short JOURNAL = 7;
13928 const short MANUAL = 8;
13929 const short MASTERSTHESIS = 9;
13930 const short MISC = 10;
13931 const short PHDTHESIS = 11;
13932 const short PROCEEDINGS = 12;
13933 const short TECHREPORT = 13;
13934 const short UNPUBLISHED = 14;
13935 const short WWW = 16;
13937 published service Bookmark {
13938 service ::com::sun::star::text::TextContent;
13939 interface ::com::sun::star::container::XNamed;
13941 published service Bookmarks {
13942 interface ::com::sun::star::container::XNameAccess;
13943 interface ::com::sun::star::container::XIndexAccess;
13945 published service CellProperties {
13946 service ::com::sun::star::xml::UserDefinedAttributesSupplier;
13947 interface ::com::sun::star::beans::XPropertySet;
13948 [property] string CellName;
13949 [property] ::com::sun::star::util::Color BackColor;
13950 /** @deprecated */ [property] string BackGraphicURL;
13951 [property] string BackGraphicFilter;
13952 [property] ::com::sun::star::style::GraphicLocation BackGraphicLocation;
13953 [property] long NumberFormat;
13954 [property] boolean BackTransparent;
13955 [property] ::com::sun::star::table::BorderLine LeftBorder;
13956 [property] ::com::sun::star::table::BorderLine RightBorder;
13957 [property] ::com::sun::star::table::BorderLine TopBorder;
13958 [property] ::com::sun::star::table::BorderLine BottomBorder;
13959 [property] long LeftBorderDistance;
13960 [property] long RightBorderDistance;
13961 [property] long TopBorderDistance;
13962 [property] long BottomBorderDistance;
13963 [property, readonly] ::com::sun::star::text::XTextSection TextSection;
13964 [property] boolean IsProtected;
13965 [property] short VertOrient;
13966 [property, optional] ::com::sun::star::graphic::XGraphic BackGraphic;
13967 [property, optional, readonly] ::com::sun::star::text::XText ParentText;
13969 published service CellRange {
13970 service ::com::sun::star::style::CharacterProperties;
13971 service ::com::sun::star::style::CharacterPropertiesAsian;
13972 service ::com::sun::star::style::CharacterPropertiesComplex;
13973 service ::com::sun::star::style::ParagraphProperties;
13974 [optional] service ::com::sun::star::style::ParagraphPropertiesAsian;
13975 [optional] service ::com::sun::star::style::ParagraphPropertiesComplex;
13976 interface ::com::sun::star::table::XCellRange;
13977 [optional] interface ::com::sun::star::sheet::XCellRangeData;
13978 [optional] interface ::com::sun::star::chart::XChartDataArray;
13979 [property] ::com::sun::star::util::Color BackColor;
13980 [property] string BackGraphicFilter;
13981 [property] ::com::sun::star::style::GraphicLocation BackGraphicLocation;
13982 /** @deprecated */ [property] string BackGraphicURL;
13983 [property] boolean BackTransparent;
13984 [property] boolean ChartColumnAsLabel;
13985 [property] boolean ChartRowAsLabel;
13986 [property] long NumberFormat;
13987 [property, optional] ::com::sun::star::graphic::XGraphic BackGraphic;
13989 published interface XTextFrame {
13990 interface ::com::sun::star::text::XTextContent;
13991 ::com::sun::star::text::XText getText();
13993 published service TextFrame {
13994 service ::com::sun::star::text::BaseFrame;
13995 interface ::com::sun::star::text::XTextFrame;
13996 [property] long FrameHeightAbsolute;
13997 [property] long FrameWidthAbsolute;
13998 [property] byte FrameWidthPercent;
13999 [property] byte FrameHeightPercent;
14000 [property] boolean FrameIsAutomaticHeight;
14001 [property] short SizeType;
14002 [property, optional] boolean EditInReadonly;
14003 [property, optional] short WidthType;
14004 [property, optional] short WritingMode;
14005 [property, optional] boolean IsFollowingTextFlow;
14006 [property, optional] ::com::sun::star::drawing::TextVerticalAdjust TextVerticalAdjust;
14007 [property, optional, readonly] ::com::sun::star::text::XText ParentText;
14009 published service ChainedTextFrame {
14010 service ::com::sun::star::text::TextFrame;
14011 [property, maybevoid] string ChainNextName;
14012 [property, maybevoid] string ChainPrevName;
14014 published constants ChapterFormat {
14015 const short DIGIT = 4;
14016 const short NAME = 0;
14017 const short NAME_NUMBER = 2;
14018 const short NO_PREFIX_SUFFIX = 3;
14019 const short NUMBER = 1;
14021 published service ChapterNumberingRule {
14022 service ::com::sun::star::style::NumberingRule;
14023 [property] string HeadingStyleName;
14025 published constants CharacterCompressionType {
14026 const short NONE = 0;
14027 const short PUNCTUATION_AND_KANA = 2;
14028 const short PUNCTUATION_ONLY = 1;
14030 published constants ColumnSeparatorStyle {
14031 const short DASHED = 3;
14032 const short DOTTED = 2;
14033 const short NONE = 0;
14034 const short SOLID = 1;
14036 published service ContentIndex {
14037 service ::com::sun::star::text::BaseIndex;
14038 [property, optional] short Level;
14039 [property, optional] boolean CreateFromOutline;
14040 [property, optional] ::com::sun::star::container::XIndexReplace LevelParagraphStyles;
14041 [property, optional] boolean CreateFromMarks;
14043 published service ContentIndexMark {
14044 service ::com::sun::star::text::TextContent;
14045 service ::com::sun::star::text::BaseIndexMark;
14046 [property] short Level;
14048 published constants ControlCharacter {
14049 const short APPEND_PARAGRAPH = 5;
14050 const short HARD_HYPHEN = 2;
14051 const short HARD_SPACE = 4;
14052 const short LINE_BREAK = 1;
14053 const short PARAGRAPH_BREAK = 0;
14054 const short SOFT_HYPHEN = 3;
14056 /** @deprecated */ published constants DateDisplayFormat {
14057 const short DDMMMMYYYY = 5;
14058 const short DDMMMYYYY = 4;
14059 const short MMDDYY = 2;
14060 const short MMDDYYYY = 3;
14061 const short NNDDMMMMYYYY = 6;
14062 const short NNNNDDMMMMYYYY = 7;
14063 const short STANDARD_LONG = 1;
14064 const short STANDARD_SHORT = 0;
14066 published interface XDefaultNumberingProvider {
14067 interface ::com::sun::star::uno::XInterface;
14068 sequence< ::com::sun::star::container::XIndexAccess > getDefaultOutlineNumberings([in] ::com::sun::star::lang::Locale aLocale);
14069 sequence< ::com::sun::star::beans::PropertyValues > getDefaultContinuousNumberingLevels([in] ::com::sun::star::lang::Locale aLocale);
14071 published service DefaultNumberingProvider: ::com::sun::star::text::XDefaultNumberingProvider;
14072 published service Defaults {
14073 service ::com::sun::star::style::CharacterProperties;
14074 service ::com::sun::star::style::ParagraphProperties;
14075 [optional] service ::com::sun::star::style::CharacterPropertiesAsian;
14076 [optional] service ::com::sun::star::style::CharacterPropertiesComplex;
14077 [optional] service ::com::sun::star::style::ParagraphPropertiesAsian;
14078 [optional] service ::com::sun::star::style::ParagraphPropertiesComplex;
14079 interface ::com::sun::star::beans::XPropertySet;
14080 [property] long TabStopDistance;
14082 published interface XDependentTextField {
14083 interface ::com::sun::star::text::XTextField;
14084 void attachTextFieldMaster([in] ::com::sun::star::beans::XPropertySet xFieldMaster) raises (::com::sun::star::lang::IllegalArgumentException);
14085 ::com::sun::star::beans::XPropertySet getTextFieldMaster();
14087 published service DependentTextField {
14088 service ::com::sun::star::text::TextField;
14089 interface ::com::sun::star::text::XDependentTextField;
14091 published interface XDocumentIndexMark;
14092 published service DocumentIndex {
14093 service ::com::sun::star::text::BaseIndex;
14094 [property, optional] boolean UseAlphabeticalSeparators;
14095 [property, optional] boolean UseKeyAsEntry;
14096 [property, optional] boolean UseCombinedEntries;
14097 [property, optional] boolean IsCaseSensitive;
14098 [property, optional] boolean UsePP;
14099 [property, optional] boolean UseDash;
14100 [property, optional] boolean UseUpperCase;
14101 [property, optional] string MainEntryCharacterStyleName;
14102 [property, readonly] sequence< ::com::sun::star::text::XDocumentIndexMark > DocumentIndexMarks;
14103 [property] ::com::sun::star::lang::Locale Locale;
14104 [property] string SortAlgorithm;
14106 published service DocumentIndexLevelFormat {
14107 interface ::com::sun::star::container::XIndexReplace;
14109 published service DocumentIndexMark {
14110 service ::com::sun::star::text::TextContent;
14111 service ::com::sun::star::text::BaseIndexMark;
14112 [property] string PrimaryKey;
14113 [property] string SecondaryKey;
14114 [property] boolean IsMainEntry;
14116 published service DocumentIndexMarkAsian {
14117 [property] string TextReading;
14118 [property] string PrimaryKeyReading;
14119 [property] string SecondaryKeyReading;
14121 published service DocumentIndexParagraphStyles {
14122 interface ::com::sun::star::container::XIndexReplace;
14124 published service DocumentIndexes {
14125 interface ::com::sun::star::container::XNameAccess;
14126 interface ::com::sun::star::container::XIndexAccess;
14128 published enum NotePrintMode {
14129 NOT = 0,
14130 ONLY = 1,
14131 DOC_END = 2,
14132 PAGE_END = 3
14134 published service PrintSettings {
14135 [property] boolean PrintGraphics;
14136 [property] boolean PrintTables;
14137 [property] boolean PrintDrawings;
14138 [property] boolean PrintLeftPages;
14139 [property] boolean PrintRightPages;
14140 [property] boolean PrintControls;
14141 [property] boolean PrintReversed;
14142 [property] boolean PrintPaperFromSetup;
14143 [property] string PrintFaxName;
14144 [property] ::com::sun::star::text::NotePrintMode PrintAnnotationMode;
14145 [property] boolean PrintProspect;
14146 [property] boolean PrintPageBackground;
14147 [property] boolean PrintBlackFonts;
14148 [property, optional] boolean PrintEmptyPages;
14150 published service DocumentSettings {
14151 service ::com::sun::star::document::Settings;
14152 [optional] service ::com::sun::star::text::PrintSettings;
14153 interface ::com::sun::star::beans::XPropertySet;
14154 [property, optional] boolean ChartAutoUpdate;
14155 [property, optional] boolean AddParaTableSpacing;
14156 [property, optional] boolean AddParaTableSpacingAtStart;
14157 [property, optional] boolean AlignTabStopPosition;
14158 [property, optional] boolean SaveGlobalDocumentLinks;
14159 [property, optional] boolean IsLabelDocument;
14160 [property, optional] boolean UseFormerLineSpacing;
14161 [property, optional] boolean AddParaSpacingToTableCells;
14162 [property, optional] boolean UseFormerObjectPositioning;
14163 [property, optional] boolean ConsiderTextWrapOnObjPos;
14164 [property, optional] boolean MathBaselineAlignment;
14166 published constants DocumentStatistic {
14167 const short CHARS = 3;
14168 const short PAGES = 0;
14169 const short PARAS = 1;
14170 const short WORDS = 2;
14172 published interface XFootnote {
14173 interface ::com::sun::star::text::XTextContent;
14174 string getLabel();
14175 void setLabel([in] string aLabel);
14177 published service Footnote {
14178 interface ::com::sun::star::text::XFootnote;
14179 interface ::com::sun::star::text::XText;
14180 [property, optional, readonly] short ReferenceId;
14182 published service Endnote {
14183 service ::com::sun::star::text::Footnote;
14185 published service FootnoteSettings {
14186 [property] string CharStyleName;
14187 [property] short NumberingType;
14188 [property] string PageStyleName;
14189 [property] string ParaStyleName;
14190 [property] string Prefix;
14191 [property] short StartAt;
14192 [property] string Suffix;
14193 [property, optional] string BeginNotice;
14194 [property, optional] string EndNotice;
14195 [property, optional] short FootnoteCounting;
14196 [property, optional] boolean PositionEndOfDoc;
14197 [property, optional] string AnchorCharStyleName;
14199 published service EndnoteSettings {
14200 service ::com::sun::star::text::FootnoteSettings;
14202 published constants FilenameDisplayFormat {
14203 const short FULL = 0;
14204 const short NAME = 2;
14205 const short NAME_AND_EXT = 3;
14206 const short PATH = 1;
14208 published constants FontEmphasis {
14209 const short ACCENT_ABOVE = 4;
14210 const short ACCENT_BELOW = 14;
14211 const short CIRCLE_ABOVE = 2;
14212 const short CIRCLE_BELOW = 12;
14213 const short DISK_ABOVE = 3;
14214 const short DISK_BELOW = 13;
14215 const short DOT_ABOVE = 1;
14216 const short DOT_BELOW = 11;
14217 const short NONE = 0;
14219 published constants FontRelief {
14220 const short EMBOSSED = 1;
14221 const short ENGRAVED = 2;
14222 const short NONE = 0;
14224 published constants FootnoteNumbering {
14225 const short PER_CHAPTER = 1;
14226 const short PER_DOCUMENT = 2;
14227 const short PER_PAGE = 0;
14229 published service Footnotes {
14230 interface ::com::sun::star::container::XIndexAccess;
14232 published interface XBookmarksSupplier {
14233 interface ::com::sun::star::uno::XInterface;
14234 ::com::sun::star::container::XNameAccess getBookmarks();
14236 published interface XChapterNumberingSupplier {
14237 interface ::com::sun::star::uno::XInterface;
14238 ::com::sun::star::container::XIndexReplace getChapterNumberingRules();
14240 published interface XDocumentIndexesSupplier {
14241 interface ::com::sun::star::uno::XInterface;
14242 ::com::sun::star::container::XIndexAccess getDocumentIndexes();
14244 published interface XEndnotesSupplier {
14245 interface ::com::sun::star::uno::XInterface;
14246 ::com::sun::star::container::XIndexAccess getEndnotes();
14247 ::com::sun::star::beans::XPropertySet getEndnoteSettings();
14249 published interface XFootnotesSupplier {
14250 interface ::com::sun::star::uno::XInterface;
14251 ::com::sun::star::container::XIndexAccess getFootnotes();
14252 ::com::sun::star::beans::XPropertySet getFootnoteSettings();
14254 published interface XPagePrintable {
14255 interface ::com::sun::star::uno::XInterface;
14256 sequence< ::com::sun::star::beans::PropertyValue > getPagePrintSettings();
14257 void setPagePrintSettings([in] sequence< ::com::sun::star::beans::PropertyValue > aSettings);
14258 void printPages([in] sequence< ::com::sun::star::beans::PropertyValue > xOptions) raises (::com::sun::star::lang::IllegalArgumentException);
14260 published interface XReferenceMarksSupplier {
14261 interface ::com::sun::star::uno::XInterface;
14262 ::com::sun::star::container::XNameAccess getReferenceMarks();
14264 published interface XTextDocument {
14265 interface ::com::sun::star::frame::XModel;
14266 ::com::sun::star::text::XText getText();
14267 void reformat();
14269 published interface XTextEmbeddedObjectsSupplier {
14270 interface ::com::sun::star::uno::XInterface;
14271 ::com::sun::star::container::XNameAccess getEmbeddedObjects();
14273 published interface XTextFramesSupplier {
14274 interface ::com::sun::star::uno::XInterface;
14275 ::com::sun::star::container::XNameAccess getTextFrames();
14277 published interface XTextGraphicObjectsSupplier {
14278 interface ::com::sun::star::uno::XInterface;
14279 ::com::sun::star::container::XNameAccess getGraphicObjects();
14281 published interface XTextSectionsSupplier {
14282 interface ::com::sun::star::uno::XInterface;
14283 ::com::sun::star::container::XNameAccess getTextSections();
14285 published interface XTextTablesSupplier {
14286 interface ::com::sun::star::uno::XInterface;
14287 ::com::sun::star::container::XNameAccess getTextTables();
14290 module tiledrendering {
14291 interface XTiledRenderable {
14292 interface ::com::sun::star::uno::XInterface;
14293 void paintTile([in] any Parent, [in] long nOutputWidth, [in] long nOutputHeight, [in] long nTilePosX, [in] long nTilePosY, [in] long nTileWidth, [in] long nTileHeight);
14296 module text {
14297 published service GenericTextDocument {
14298 service ::com::sun::star::document::OfficeDocument;
14299 interface ::com::sun::star::lang::XMultiServiceFactory;
14300 interface ::com::sun::star::text::XTextDocument;
14301 interface ::com::sun::star::util::XSearchable;
14302 interface ::com::sun::star::util::XRefreshable;
14303 [optional] interface ::com::sun::star::tiledrendering::XTiledRenderable;
14304 [optional] interface ::com::sun::star::text::XFootnotesSupplier;
14305 [optional] interface ::com::sun::star::text::XEndnotesSupplier;
14306 [optional] interface ::com::sun::star::util::XReplaceable;
14307 [optional] interface ::com::sun::star::text::XPagePrintable;
14308 [optional] interface ::com::sun::star::text::XReferenceMarksSupplier;
14309 [optional] interface ::com::sun::star::text::XChapterNumberingSupplier;
14310 [optional] interface ::com::sun::star::beans::XPropertySet;
14311 [optional] interface ::com::sun::star::text::XTextGraphicObjectsSupplier;
14312 [optional] interface ::com::sun::star::text::XTextEmbeddedObjectsSupplier;
14313 [optional] interface ::com::sun::star::text::XTextTablesSupplier;
14314 [optional] interface ::com::sun::star::style::XStyleFamiliesSupplier;
14315 [optional] interface ::com::sun::star::text::XBookmarksSupplier;
14316 [optional] interface ::com::sun::star::text::XDocumentIndexesSupplier;
14317 [optional] interface ::com::sun::star::text::XTextFieldsSupplier;
14318 [optional] interface ::com::sun::star::text::XTextFramesSupplier;
14319 [optional] interface ::com::sun::star::text::XTextSectionsSupplier;
14320 [optional] interface ::com::sun::star::util::XNumberFormatsSupplier;
14321 [property, optional] ::com::sun::star::lang::Locale CharLocale;
14322 [property, optional, readonly] long CharacterCount;
14323 [property, optional, readonly] long ParagraphCount;
14324 [property, optional, readonly] long WordCount;
14325 [property, optional] string WordSeparator;
14326 [property, optional] string IndexAutoMarkFileURL;
14327 [property, optional] boolean RecordChanges;
14328 [property, optional] short TwoDigitYear;
14331 module view {
14332 published interface XPrintSettingsSupplier {
14333 interface ::com::sun::star::uno::XInterface;
14334 ::com::sun::star::beans::XPropertySet getPrintSettings();
14336 published interface XViewSettingsSupplier {
14337 interface ::com::sun::star::uno::XInterface;
14338 ::com::sun::star::beans::XPropertySet getViewSettings();
14341 module text {
14342 published service GlobalSettings {
14343 interface ::com::sun::star::view::XPrintSettingsSupplier;
14344 interface ::com::sun::star::view::XViewSettingsSupplier;
14346 published constants HoriOrientation {
14347 const short CENTER = 2;
14348 const short FULL = 6;
14349 const short INSIDE = 4;
14350 const short LEFT = 3;
14351 const short LEFT_AND_WIDTH = 7;
14352 const short NONE = 0;
14353 const short OUTSIDE = 5;
14354 const short RIGHT = 1;
14356 published struct HoriOrientationFormat {
14357 long XPos;
14358 short HorizontalOrientation;
14359 short HorizontalRelation;
14360 boolean PositionToggle;
14362 published enum HorizontalAdjust {
14363 LEFT = 0,
14364 CENTER = 1,
14365 RIGHT = 2
14367 published service IllustrationsIndex {
14368 service ::com::sun::star::text::BaseIndex;
14369 [property, optional] boolean CreateFromLabels;
14370 [property, optional] string LabelCategory;
14371 [property, optional] short LabelDisplayType;
14373 published exception InvalidTextContentException: ::com::sun::star::uno::Exception {
14374 ::com::sun::star::text::XTextContent TextContent;
14376 published constants LabelFollow {
14377 const short LISTTAB = 0;
14378 const short NEWLINE = 3;
14379 const short NOTHING = 2;
14380 const short SPACE = 1;
14382 published service LineNumberingProperties {
14383 [property] boolean IsOn;
14384 [property] string CharStyleName;
14385 [property] boolean CountEmptyLines;
14386 [property] boolean CountLinesInFrames;
14387 [property] long Distance;
14388 [property] short Interval;
14389 [property] string SeparatorText;
14390 [property] short SeparatorInterval;
14391 [property] short NumberPosition;
14392 [property] short NumberingType;
14393 [property, optional] boolean RestartAtEachPage;
14395 published interface XMailMergeListener;
14396 published interface XMailMergeBroadcaster {
14397 interface ::com::sun::star::uno::XInterface;
14398 void addMailMergeEventListener([in] ::com::sun::star::text::XMailMergeListener xListener);
14399 void removeMailMergeEventListener([in] ::com::sun::star::text::XMailMergeListener xListener);
14401 published service MailMerge {
14402 service ::com::sun::star::sdb::DataAccessDescriptor;
14403 interface ::com::sun::star::task::XJob;
14404 interface ::com::sun::star::beans::XPropertySet;
14405 [optional] interface ::com::sun::star::util::XCancellable;
14406 [optional] interface ::com::sun::star::text::XMailMergeBroadcaster;
14407 [property] string DataSourceName;
14408 [property] long CommandType;
14409 [property] string Command;
14410 [property] ::com::sun::star::sdbc::XResultSet ResultSet;
14411 [property] ::com::sun::star::sdbc::XConnection ActiveConnection;
14412 [property] sequence< any > Selection;
14413 [property] boolean EscapeProcessing;
14414 [property] string Filter;
14415 [property] string DocumentURL;
14416 [property, readonly] ::com::sun::star::frame::XModel Model;
14417 [property] short OutputType;
14418 [property] boolean SinglePrintJobs;
14419 [property] string OutputURL;
14420 [property] boolean FileNameFromColumn;
14421 [property] string FileNamePrefix;
14422 [property, optional] string OutServerPassword;
14423 [property, optional] string InServerPassword;
14424 [property, optional] string Subject;
14425 [property, optional] string AddressFromColumn;
14426 [property, optional] boolean SendAsHTML;
14427 [property, optional] boolean SendAsAttachment;
14428 [property, optional] string MailBody;
14429 [property, optional] string AttachmentName;
14430 [property, optional] string AttachmentFilter;
14431 [property, optional] sequence< string > CopiesTo;
14432 [property, optional] sequence< string > BlindCopiesTo;
14433 [property, optional] boolean SaveAsSingleFile;
14434 [property, optional] string SaveFilter;
14435 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > PrintOptions;
14437 published struct MailMergeEvent: ::com::sun::star::lang::EventObject {
14438 ::com::sun::star::frame::XModel Model;
14440 published constants MailMergeType {
14441 const short FILE = 2;
14442 const short MAIL = 3;
14443 const short PRINTER = 1;
14444 const short SHELL = 4;
14446 published service NumberingLevel {
14447 [property] short Adjust;
14448 [property, optional] short ParentNumbering;
14449 [property] string Prefix;
14450 [property] string Suffix;
14451 [property, optional] string CharStyleName;
14452 /** @deprecated */ [property, optional] short BulletId;
14453 [property] string BulletChar;
14454 [property] string BulletFontName;
14455 [property, optional] ::com::sun::star::awt::FontDescriptor BulletFont;
14456 /** @deprecated */ [property] string GraphicURL;
14457 [property, optional] ::com::sun::star::awt::XBitmap GraphicBitmap;
14458 [property, optional] ::com::sun::star::awt::Size GraphicSize;
14459 [property, optional] short VertOrient;
14460 [property, optional] short StartWith;
14461 [property] long LeftMargin;
14462 [property, optional] long SymbolTextDistance;
14463 [property] long FirstLineOffset;
14464 [property] short NumberingType;
14465 [property] string HeadingStyleName;
14466 [property, optional] string ParagraphStyleName;
14467 [property, optional] ::com::sun::star::util::Color BulletColor;
14468 [property, optional] short BulletRelSize;
14469 [property, optional] short PositionAndSpaceMode;
14470 [property, optional] short LabelFollowedBy;
14471 [property, optional] long ListtabStopPosition;
14472 [property, optional] long FirstLineIndent;
14473 [property, optional] long IndentAt;
14475 published service NumberingRules {
14476 interface ::com::sun::star::container::XIndexReplace;
14477 [optional] interface ::com::sun::star::beans::XPropertySet;
14478 [property, optional] boolean IsAbsoluteMargins;
14479 [property, optional] boolean IsAutomatic;
14480 [property, optional] boolean IsContinuousNumbering;
14481 [property, optional, readonly] string Name;
14482 [property, optional] boolean NumberingIsOutline;
14483 [property, optional] short NumberingType;
14484 [property, optional, readonly] string DefaultListId;
14486 published service NumberingStyle {
14487 service ::com::sun::star::style::Style;
14488 service ::com::sun::star::text::NumberingRules;
14490 published service ObjectIndex {
14491 service ::com::sun::star::text::BaseIndex;
14492 [property, optional] boolean CreateFromStarMath;
14493 [property, optional] boolean CreateFromStarImage;
14494 [property, optional] boolean CreateFromStarChart;
14495 [property, optional] boolean CreateFromStarCalc;
14496 [property, optional] boolean CreateFromStarDraw;
14497 [property, optional] boolean CreateFromOtherEmbeddedObjects;
14499 published service PageFootnoteInfo {
14500 [property] long FootnoteHeight;
14501 [property] long FootnoteSeparatorLineWidth;
14502 [property] long FootnoteTopDistance;
14503 [property] long FootnoteBottomDistance;
14504 [property] short FootnoteSeparatorLineWidthPercent;
14505 [property] ::com::sun::star::text::HorizontalAdjust FootnoteSeparatorLineAdjust;
14506 [property] short FootnoteSeparatorLinePenWidth;
14508 published enum PageNumberType {
14509 PREV = 0,
14510 CURRENT = 1,
14511 NEXT = 2
14513 published service PagePrintSettings {
14514 [property] short PageRows;
14515 [property] short PageColumns;
14516 [property] long LeftMargin;
14517 [property] long RightMargin;
14518 [property] long TopMargin;
14519 [property] long BottomMargin;
14520 [property] long HoriMargin;
14521 [property] long VertMargin;
14522 [property] boolean IsLandscape;
14524 published struct TableColumnSeparator {
14525 short Position;
14526 boolean IsVisible;
14528 published interface XTextTableCursor;
14529 published interface XTextTable {
14530 interface ::com::sun::star::text::XTextContent;
14531 void initialize([in] long nRows, [in] long nColumns);
14532 ::com::sun::star::table::XTableRows getRows();
14533 ::com::sun::star::table::XTableColumns getColumns();
14534 ::com::sun::star::table::XCell getCellByName([in] string aCellName);
14535 sequence< string > getCellNames();
14536 ::com::sun::star::text::XTextTableCursor createCursorByCellName([in] string aCellName);
14538 published service TextTable {
14539 service ::com::sun::star::text::TextContent;
14540 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
14541 interface ::com::sun::star::text::XTextTable;
14542 interface ::com::sun::star::container::XNamed;
14543 interface ::com::sun::star::table::XCellRange;
14544 interface ::com::sun::star::chart::XChartDataArray;
14545 interface ::com::sun::star::table::XAutoFormattable;
14546 interface ::com::sun::star::util::XSortable;
14547 [optional] interface ::com::sun::star::sheet::XCellRangeData;
14548 [property] ::com::sun::star::style::BreakType BreakType;
14549 [property] long LeftMargin;
14550 [property] long RightMargin;
14551 [property] short HoriOrient;
14552 [property] boolean KeepTogether;
14553 [property] boolean Split;
14554 [property] short PageNumberOffset;
14555 [property] string PageDescName;
14556 [property] short RelativeWidth;
14557 [property] boolean IsWidthRelative;
14558 [property] boolean RepeatHeadline;
14559 [property, optional] long HeaderRowCount;
14560 [property] ::com::sun::star::table::ShadowFormat ShadowFormat;
14561 [property] long TopMargin;
14562 [property] long BottomMargin;
14563 [property] boolean BackTransparent;
14564 [property] long Width;
14565 [property] boolean ChartRowAsLabel;
14566 [property] boolean ChartColumnAsLabel;
14567 [property] ::com::sun::star::table::TableBorder TableBorder;
14568 [property] sequence< ::com::sun::star::text::TableColumnSeparator > TableColumnSeparators;
14569 [property] short TableColumnRelativeSum;
14570 [property] ::com::sun::star::util::Color BackColor;
14571 /** @deprecated */ [property] string BackGraphicURL;
14572 [property] string BackGraphicFilter;
14573 [property] ::com::sun::star::style::GraphicLocation BackGraphicLocation;
14574 [property, optional] boolean CollapsingBorders;
14575 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > TableInteropGrabBag;
14576 [property, optional] string TableTemplateName;
14577 [property, optional] ::com::sun::star::graphic::XGraphic BackGraphic;
14579 published service Paragraph {
14580 service ::com::sun::star::text::TextContent;
14581 [optional] service ::com::sun::star::style::ParagraphProperties;
14582 [optional] service ::com::sun::star::style::ParagraphPropertiesAsian;
14583 [optional] service ::com::sun::star::style::ParagraphPropertiesComplex;
14584 [optional] service ::com::sun::star::style::CharacterProperties;
14585 [optional] service ::com::sun::star::style::CharacterPropertiesAsian;
14586 [optional] service ::com::sun::star::style::CharacterPropertiesComplex;
14587 [optional] service ::com::sun::star::text::TextTable;
14588 interface ::com::sun::star::beans::XPropertySet;
14589 interface ::com::sun::star::beans::XPropertyState;
14590 interface ::com::sun::star::container::XEnumerationAccess;
14591 [optional] interface ::com::sun::star::beans::XTolerantMultiPropertySet;
14593 published service ParagraphEnumeration {
14594 interface ::com::sun::star::container::XEnumeration;
14596 published constants ParagraphVertAlign {
14597 const short AUTOMATIC = 0;
14598 const short BASELINE = 1;
14599 const short BOTTOM = 4;
14600 const short CENTER = 3;
14601 const short TOP = 2;
14603 published constants PlaceholderType {
14604 const short GRAPHIC = 3;
14605 const short OBJECT = 4;
14606 const short TABLE = 1;
14607 const short TEXT = 0;
14608 const short TEXTFRAME = 2;
14610 published constants PositionAndSpaceMode {
14611 const short LABEL_ALIGNMENT = 1;
14612 const short LABEL_WIDTH_AND_POSITION = 0;
14614 published service TextPortion {
14615 service ::com::sun::star::text::TextRange;
14616 [optional] interface ::com::sun::star::container::XContentEnumerationAccess;
14617 [optional] interface ::com::sun::star::beans::XTolerantMultiPropertySet;
14618 [property, readonly] string TextPortionType;
14619 /** @deprecated */ [property, readonly] short ControlCharacter;
14620 [property, optional, readonly] ::com::sun::star::text::XTextContent Bookmark;
14621 [property, optional, readonly] ::com::sun::star::text::XTextContent DocumentIndexMark;
14622 [property, optional, readonly] ::com::sun::star::text::XTextContent ReferenceMark;
14623 [property, optional, readonly] ::com::sun::star::text::XFootnote Footnote;
14624 [property, optional, readonly] ::com::sun::star::text::XTextField TextField;
14625 [property, optional, readonly] ::com::sun::star::text::XTextContent InContentMetadata;
14626 [property, optional, readonly] boolean IsCollapsed;
14627 [property, optional, readonly] boolean IsStart;
14629 published service RedlinePortion {
14630 service ::com::sun::star::text::TextPortion;
14631 [property, readonly] string RedlineAuthor;
14632 [property, readonly] ::com::sun::star::util::DateTime RedlineDateTime;
14633 [property, readonly] string RedlineComment;
14634 [property, readonly] string RedlineType;
14635 [property, readonly] ::com::sun::star::beans::PropertyValues RedlineSuccessorData;
14636 [property, readonly] string RedlineIdentifier;
14637 [property, readonly] boolean IsInHeaderFooter;
14638 [property, readonly] ::com::sun::star::text::XText RedlineText;
14639 [property, readonly] boolean MergeLastPara;
14641 published constants ReferenceFieldPart {
14642 const short CATEGORY_AND_NUMBER = 5;
14643 const short CHAPTER = 1;
14644 const short NUMBER = 8;
14645 const short NUMBER_FULL_CONTEXT = 10;
14646 const short NUMBER_NO_CONTEXT = 9;
14647 const short ONLY_CAPTION = 6;
14648 const short ONLY_SEQUENCE_NUMBER = 7;
14649 const short PAGE = 0;
14650 const short PAGE_DESC = 4;
14651 const short TEXT = 2;
14652 const short UP_DOWN = 3;
14654 published constants ReferenceFieldSource {
14655 const short BOOKMARK = 2;
14656 const short ENDNOTE = 4;
14657 const short FOOTNOTE = 3;
14658 const short REFERENCE_MARK = 0;
14659 const short SEQUENCE_FIELD = 1;
14661 published service ReferenceMark {
14662 interface ::com::sun::star::text::XTextContent;
14663 interface ::com::sun::star::container::XNamed;
14665 published service ReferenceMarks {
14666 interface ::com::sun::star::container::XIndexAccess;
14667 interface ::com::sun::star::container::XNameAccess;
14669 published constants RelOrientation {
14670 const short CHAR = 2;
14671 const short FRAME = 0;
14672 const short FRAME_LEFT = 5;
14673 const short FRAME_RIGHT = 6;
14674 const short PAGE_FRAME = 7;
14675 const short PAGE_LEFT = 3;
14676 const short PAGE_PRINT_AREA = 8;
14677 const short PAGE_PRINT_AREA_BOTTOM = 10;
14678 const short PAGE_PRINT_AREA_TOP = 11;
14679 const short PAGE_RIGHT = 4;
14680 const short PRINT_AREA = 1;
14681 const short TEXT_LINE = 9;
14683 published enum RubyAdjust {
14684 LEFT = 0,
14685 CENTER = 1,
14686 RIGHT = 2,
14687 BLOCK = 3,
14688 INDENT_BLOCK = 4
14690 published struct SectionFileLink {
14691 string FileURL;
14692 string FilterName;
14694 published constants SetVariableType {
14695 const short FORMULA = 2;
14696 const short SEQUENCE = 1;
14697 const short STRING = 3;
14698 const short VAR = 0;
14700 published service Shape {
14701 service ::com::sun::star::drawing::Shape;
14702 [property] short AnchorPageNo;
14703 [property] ::com::sun::star::text::XTextFrame AnchorFrame;
14704 [property, optional] ::com::sun::star::text::TextContentAnchorType AnchorType;
14705 [property] short HoriOrient;
14706 [property] long HoriOrientPosition;
14707 [property] short HoriOrientRelation;
14708 [property] short VertOrient;
14709 [property] long VertOrientPosition;
14710 [property] short VertOrientRelation;
14711 [property] long LeftMargin;
14712 [property] long RightMargin;
14713 [property] long TopMargin;
14714 [property] long BottomMargin;
14715 /** @deprecated */ [property] ::com::sun::star::text::WrapTextMode Surround;
14716 [property] boolean SurroundAnchorOnly;
14717 [property] boolean SurroundContour;
14718 [property] boolean ContourOutside;
14719 [property] boolean Opaque;
14720 [property] ::com::sun::star::text::XTextRange TextRange;
14721 [property, optional] short WrapInfluenceOnPosition;
14722 [property, optional, readonly] ::com::sun::star::drawing::HomogenMatrix3 TransformationInHoriL2R;
14723 [property, optional] short PositionLayoutDir;
14724 [property, optional, readonly] ::com::sun::star::awt::Point StartPositionInHoriL2R;
14725 [property, optional, readonly] ::com::sun::star::awt::Point EndPositionInHoriL2R;
14726 [property, optional] boolean AllowOverlap;
14728 published constants SizeType {
14729 const short FIX = 1;
14730 const short MIN = 2;
14731 const short VARIABLE = 0;
14733 published service TableColumns {
14734 interface ::com::sun::star::table::XTableColumns;
14736 published service TableIndex {
14737 service ::com::sun::star::text::BaseIndex;
14738 [property, optional] boolean CreateFromLabels;
14739 [property, optional] string LabelCategory;
14740 [property, optional] short LabelDisplayType;
14742 published service TableRows {
14743 interface ::com::sun::star::table::XTableRows;
14745 published constants TemplateDisplayFormat {
14746 const short AREA = 4;
14747 const short FULL = 0;
14748 const short NAME = 2;
14749 const short NAME_AND_EXT = 3;
14750 const short PATH = 1;
14751 const short TITLE = 5;
14753 published struct TextColumn {
14754 long Width;
14755 long LeftMargin;
14756 long RightMargin;
14758 published typedef sequence< ::com::sun::star::text::TextColumn > TextColumnSequence;
14759 published interface XTextColumns {
14760 interface ::com::sun::star::uno::XInterface;
14761 long getReferenceValue();
14762 short getColumnCount();
14763 void setColumnCount([in] short nColumns);
14764 sequence< ::com::sun::star::text::TextColumn > getColumns();
14765 void setColumns([in] sequence< ::com::sun::star::text::TextColumn > Columns);
14767 published service TextColumns {
14768 interface ::com::sun::star::text::XTextColumns;
14769 [property, readonly] boolean IsAutomatic;
14770 [property] long AutomaticDistance;
14771 [property] long SeparatorLineWidth;
14772 [property] ::com::sun::star::util::Color SeparatorLineColor;
14773 [property] long SeparatorLineRelativeHeight;
14774 [property] ::com::sun::star::style::VerticalAlignment SeparatorLineVerticalAlignment;
14775 [property] boolean SeparatorLineIsOn;
14776 [property, optional] short SeparatorLineStyle;
14778 published service TextContentCollection {
14779 interface ::com::sun::star::container::XNameAccess;
14780 interface ::com::sun::star::container::XContainer;
14782 published interface XTextCursor {
14783 interface ::com::sun::star::text::XTextRange;
14784 void collapseToStart();
14785 void collapseToEnd();
14786 boolean isCollapsed();
14787 boolean goLeft([in] short nCount, [in] boolean bExpand);
14788 boolean goRight([in] short nCount, [in] boolean bExpand);
14789 void gotoStart([in] boolean bExpand);
14790 void gotoEnd([in] boolean bExpand);
14791 void gotoRange([in] ::com::sun::star::text::XTextRange xRange, [in] boolean bExpand);
14793 published interface XParagraphCursor {
14794 interface ::com::sun::star::text::XTextCursor;
14795 boolean isStartOfParagraph();
14796 boolean isEndOfParagraph();
14797 boolean gotoStartOfParagraph([in] boolean bExpand);
14798 boolean gotoEndOfParagraph([in] boolean bExpand);
14799 boolean gotoNextParagraph([in] boolean bExpand);
14800 boolean gotoPreviousParagraph([in] boolean bExpand);
14802 published interface XSentenceCursor {
14803 interface ::com::sun::star::text::XTextCursor;
14804 boolean isStartOfSentence();
14805 boolean isEndOfSentence();
14806 boolean gotoNextSentence([in] boolean Expand);
14807 boolean gotoPreviousSentence([in] boolean Expand);
14808 boolean gotoStartOfSentence([in] boolean Expand);
14809 boolean gotoEndOfSentence([in] boolean Expand);
14811 published interface XWordCursor {
14812 interface ::com::sun::star::text::XTextCursor;
14813 boolean isStartOfWord();
14814 boolean isEndOfWord();
14815 boolean gotoNextWord([in] boolean bExpand);
14816 boolean gotoPreviousWord([in] boolean bExpand);
14817 boolean gotoEndOfWord([in] boolean bExpand);
14818 boolean gotoStartOfWord([in] boolean bExpand);
14820 published service TextCursor {
14821 service ::com::sun::star::text::TextRange;
14822 interface ::com::sun::star::text::XTextCursor;
14823 interface ::com::sun::star::beans::XPropertySet;
14824 interface ::com::sun::star::beans::XPropertyState;
14825 interface ::com::sun::star::beans::XMultiPropertyStates;
14826 [optional] interface ::com::sun::star::text::XWordCursor;
14827 [optional] interface ::com::sun::star::text::XSentenceCursor;
14828 [optional] interface ::com::sun::star::text::XParagraphCursor;
14829 [optional] interface ::com::sun::star::document::XDocumentInsertable;
14830 [optional] interface ::com::sun::star::util::XSortable;
14832 published service TextDocument {
14833 service ::com::sun::star::text::GenericTextDocument;
14835 published interface XTextViewCursor;
14836 published interface XTextViewCursorSupplier {
14837 interface ::com::sun::star::uno::XInterface;
14838 ::com::sun::star::text::XTextViewCursor getViewCursor();
14841 module view {
14842 published service OfficeDocumentView {
14843 interface ::com::sun::star::view::XSelectionSupplier;
14844 [optional] interface ::com::sun::star::view::XViewSettingsSupplier;
14845 [optional] interface ::com::sun::star::view::XControlAccess;
14848 module text {
14849 published service TextDocumentView {
14850 service ::com::sun::star::view::OfficeDocumentView;
14851 interface ::com::sun::star::view::XViewSettingsSupplier;
14852 interface ::com::sun::star::text::XTextViewCursorSupplier;
14853 [optional] interface ::com::sun::star::beans::XPropertySet;
14854 [property, optional, readonly] long PageCount;
14855 [property, optional, readonly] long LineCount;
14856 [property, optional] boolean IsConstantSpellcheck;
14857 [property, optional] boolean IsHideSpellMarks;
14859 published service TextEmbeddedObject {
14860 service ::com::sun::star::text::BaseFrame;
14861 interface ::com::sun::star::document::XEmbeddedObjectSupplier;
14862 [property] string CLSID;
14863 [property, maybevoid, readonly] ::com::sun::star::frame::XModel Model;
14864 [property, maybevoid, readonly] ::com::sun::star::lang::XComponent Component;
14866 published service TextEmbeddedObjects {
14867 interface ::com::sun::star::container::XNameAccess;
14868 interface ::com::sun::star::container::XIndexAccess;
14870 published service TextFieldEnumeration {
14871 interface ::com::sun::star::container::XEnumeration;
14873 published service TextFieldMaster {
14874 [optional] interface ::com::sun::star::beans::XPropertySet;
14875 [property, optional] string Name;
14876 [property, readonly] sequence< ::com::sun::star::text::XDependentTextField > DependentTextFields;
14877 [property, readonly] string InstanceName;
14879 published service TextFieldMasters {
14880 interface ::com::sun::star::container::XNameAccess;
14882 published service TextFields {
14883 interface ::com::sun::star::container::XEnumerationAccess;
14884 interface ::com::sun::star::util::XRefreshable;
14886 published service TextFrames {
14887 interface ::com::sun::star::container::XNameAccess;
14888 interface ::com::sun::star::container::XIndexAccess;
14889 [optional] interface ::com::sun::star::container::XContainer;
14891 published service TextGraphicObject {
14892 service ::com::sun::star::text::BaseFrame;
14893 [property] ::com::sun::star::container::XIndexContainer ImageMap;
14894 [property] boolean ContentProtected;
14895 [property] boolean SurroundContour;
14896 [property] boolean ContourOutside;
14897 [property, optional] ::com::sun::star::drawing::PointSequenceSequence ContourPolyPolygon;
14898 [property] ::com::sun::star::text::GraphicCrop GraphicCrop;
14899 [property] boolean HoriMirroredOnEvenPages;
14900 [property] boolean HoriMirroredOnOddPages;
14901 [property] boolean VertMirrored;
14902 /** @deprecated */ [property] string GraphicURL;
14903 [property] string GraphicFilter;
14904 [property] ::com::sun::star::awt::Size ActualSize;
14905 [property] short AdjustLuminance;
14906 [property] short AdjustContrast;
14907 [property] short AdjustRed;
14908 [property] short AdjustGreen;
14909 [property] short AdjustBlue;
14910 [property] double Gamma;
14911 [property] boolean GraphicIsInverted;
14912 [property] short Transparency;
14913 [property] ::com::sun::star::drawing::ColorMode GraphicColorMode;
14914 [property, optional] ::com::sun::star::graphic::XGraphic Graphic;
14916 published service TextGraphicObjects {
14917 interface ::com::sun::star::container::XNameAccess;
14918 interface ::com::sun::star::container::XIndexAccess;
14920 published constants TextGridMode {
14921 const short LINES = 1;
14922 const short LINES_AND_CHARS = 2;
14923 const short NONE = 0;
14925 published interface XPageCursor {
14926 interface ::com::sun::star::uno::XInterface;
14927 boolean jumpToFirstPage();
14928 boolean jumpToLastPage();
14929 boolean jumpToPage([in] short nPage);
14930 short getPage();
14931 boolean jumpToNextPage();
14932 boolean jumpToPreviousPage();
14933 boolean jumpToEndOfPage();
14934 boolean jumpToStartOfPage();
14936 published service TextLayoutCursor {
14937 service ::com::sun::star::text::TextCursor;
14938 interface ::com::sun::star::text::XPageCursor;
14940 published service TextPageStyle {
14941 [property] boolean RegisterModeActive;
14942 [property] string RegisterParagraphStyle;
14943 [property] ::com::sun::star::text::XTextColumns TextColumns;
14944 [property] ::com::sun::star::text::XText HeaderText;
14945 [property] ::com::sun::star::text::XText HeaderTextLeft;
14946 [property] ::com::sun::star::text::XText HeaderTextRight;
14947 [property, optional] ::com::sun::star::text::XText HeaderTextFirst;
14948 [property] ::com::sun::star::text::XText FooterText;
14949 [property] ::com::sun::star::text::XText FooterTextLeft;
14950 [property] ::com::sun::star::text::XText FooterTextRight;
14951 [property, optional] ::com::sun::star::text::XText FooterTextFirst;
14952 [property] long FootnoteHeight;
14953 [property] short FootnoteLineWeight;
14954 [property] ::com::sun::star::util::Color FootnoteLineColor;
14955 [property] byte FootnoteLineRelativeWidth;
14956 [property] short FootnoteLineAdjust;
14957 [property] long FootnoteLineTextDistance;
14958 [property] long FootnoteLineDistance;
14960 published service TextPortionEnumeration {
14961 interface ::com::sun::star::container::XEnumeration;
14963 published service TextRanges {
14964 interface ::com::sun::star::container::XIndexAccess;
14966 published interface XTextSection {
14967 interface ::com::sun::star::text::XTextContent;
14968 ::com::sun::star::text::XTextSection getParentSection();
14969 sequence< ::com::sun::star::text::XTextSection > getChildSections();
14971 published service TextSection {
14972 service ::com::sun::star::text::TextContent;
14973 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
14974 interface ::com::sun::star::text::XTextSection;
14975 interface ::com::sun::star::container::XNamed;
14976 interface ::com::sun::star::beans::XPropertySet;
14977 interface ::com::sun::star::beans::XPropertyState;
14978 [property] string Condition;
14979 [property] boolean IsVisible;
14980 [property] boolean IsProtected;
14981 [property] ::com::sun::star::text::SectionFileLink FileLink;
14982 [property] string LinkRegion;
14983 [property] string DDECommandType;
14984 [property] string DDECommandFile;
14985 [property] string DDECommandElement;
14986 /** @deprecated */ [property] string BackGraphicURL;
14987 [property] string BackGraphicFilter;
14988 [property] ::com::sun::star::style::GraphicLocation BackGraphicLocation;
14989 [property] boolean FootnoteIsCollectAtTextEnd;
14990 [property] boolean FootnoteIsRestartNumbering;
14991 [property] short FootnoteRestartNumberingAt;
14992 [property] boolean FootnoteIsOwnNumbering;
14993 [property] short FootnoteNumberingType;
14994 [property] string FootnoteNumberingPrefix;
14995 [property] string FootnoteNumberingSuffix;
14996 [property] boolean EndnoteIsCollectAtTextEnd;
14997 [property] boolean EndnoteIsRestartNumbering;
14998 [property] short EndnoteRestartNumberingAt;
14999 [property] boolean EndnoteIsOwnNumbering;
15000 [property] short EndnoteNumberingType;
15001 [property] string EndnoteNumberingPrefix;
15002 [property] string EndnoteNumberingSuffix;
15003 [property] boolean IsAutomaticUpdate;
15004 [property] ::com::sun::star::text::XTextColumns TextColumns;
15005 [property, optional] long SectionLeftMargin;
15006 [property, optional] long SectionRightMargin;
15007 [property, optional] ::com::sun::star::graphic::XGraphic BackGraphic;
15009 published service TextSections {
15010 interface ::com::sun::star::container::XIndexAccess;
15011 interface ::com::sun::star::container::XNameAccess;
15013 /** @deprecated */ published service TextSortDescriptor {
15014 service ::com::sun::star::util::SortDescriptor;
15015 [property] char Delimiter;
15016 [property] boolean IsSortInTable;
15017 [property] long SortRowOrColumnNo0;
15018 [property] boolean IsSortNumeric0;
15019 [property] boolean IsSortAscending0;
15020 [property] long SortRowOrColumnNo1;
15021 [property] boolean IsSortNumeric1;
15022 [property] boolean IsSortAscending1;
15023 [property] long SortRowOrColumnNo2;
15024 [property] boolean IsSortNumeric2;
15025 [property] boolean IsSortAscending2;
15027 published service TextSortDescriptor2 {
15028 service ::com::sun::star::table::TableSortDescriptor2;
15029 [property] boolean IsSortInTable;
15030 [property] char Delimiter;
15032 /** @deprecated */ published service TextSortable {
15033 interface ::com::sun::star::util::XSortable;
15035 published interface XTextTableCursor {
15036 interface ::com::sun::star::uno::XInterface;
15037 string getRangeName();
15038 boolean gotoCellByName([in] string aCellName, [in] boolean bExpand);
15039 boolean goLeft([in] short nCount, [in] boolean bExpand);
15040 boolean goRight([in] short nCount, [in] boolean bExpand);
15041 boolean goUp([in] short nCount, [in] boolean bExpand);
15042 boolean goDown([in] short nCount, [in] boolean bExpand);
15043 void gotoStart([in] boolean bExpand);
15044 void gotoEnd([in] boolean bExpand);
15045 boolean mergeRange();
15046 boolean splitRange([in] short nCount, [in] boolean bHorizontal);
15048 published service TextTableCursor {
15049 service ::com::sun::star::style::CharacterProperties;
15050 service ::com::sun::star::style::CharacterPropertiesAsian;
15051 service ::com::sun::star::style::CharacterPropertiesComplex;
15052 service ::com::sun::star::style::ParagraphProperties;
15053 [optional] service ::com::sun::star::xml::UserDefinedAttributesSupplier;
15054 interface ::com::sun::star::text::XTextTableCursor;
15055 interface ::com::sun::star::beans::XPropertySet;
15057 published service TextTableRow {
15058 interface ::com::sun::star::beans::XPropertySet;
15059 [property] ::com::sun::star::util::Color BackColor;
15060 [property] boolean BackTransparent;
15061 /** @deprecated */ [property] string BackGraphicURL;
15062 [property] string BackGraphicFilter;
15063 [property] ::com::sun::star::style::GraphicLocation BackGraphicLocation;
15064 [property] sequence< ::com::sun::star::text::TableColumnSeparator > TableColumnSeparators;
15065 [property] long Height;
15066 [property] boolean IsAutoHeight;
15067 [property, maybevoid, optional] boolean IsSplitAllowed;
15068 [property, optional] sequence< ::com::sun::star::beans::PropertyValue > RowInteropGrabBag;
15069 [property, optional] ::com::sun::star::graphic::XGraphic BackGraphic;
15070 [property, optional] boolean HasTextChangesOnly;
15072 published service TextTables {
15073 interface ::com::sun::star::container::XIndexAccess;
15074 interface ::com::sun::star::container::XNameAccess;
15077 module view {
15078 published interface XScreenCursor {
15079 interface ::com::sun::star::uno::XInterface;
15080 boolean screenDown();
15081 boolean screenUp();
15084 module text {
15085 published service TextViewCursor {
15086 service ::com::sun::star::text::TextLayoutCursor;
15087 interface ::com::sun::star::view::XScreenCursor;
15089 /** @deprecated */ published constants TimeDisplayFormat {
15090 const short HHMM = 1;
15091 const short HHMMAMPM = 4;
15092 const short HHMMSS = 2;
15093 const short HHMMSS00 = 3;
15094 const short HHMMSS00AMPM = 6;
15095 const short HHMMSSAMPM = 5;
15096 const short STANDARD = 0;
15098 published constants UserDataPart {
15099 const short CITY = 7;
15100 const short COMPANY = 0;
15101 const short COUNTRY = 5;
15102 const short EMAIL = 13;
15103 const short FAX = 12;
15104 const short FIRSTNAME = 1;
15105 const short NAME = 2;
15106 const short PHONE_COMPANY = 11;
15107 const short PHONE_PRIVATE = 10;
15108 const short POSITION = 9;
15109 const short SHORTCUT = 3;
15110 const short STATE = 14;
15111 const short STREET = 4;
15112 const short TITLE = 8;
15113 const short ZIP = 6;
15115 published service UserDefinedIndex {
15116 service ::com::sun::star::text::BaseIndex;
15117 [property, optional] ::com::sun::star::container::XIndexReplace LevelParagraphStyles;
15118 [property, optional] boolean CreateFromMarks;
15119 [property, optional] boolean UseLevelFromSource;
15120 [property, optional] boolean CreateFromTables;
15121 [property, optional] boolean CreateFromTextFrames;
15122 [property, optional] boolean CreateFromGraphicObjects;
15123 [property, optional] boolean CreateFromEmbeddedObjects;
15124 [property, readonly] sequence< ::com::sun::star::text::XDocumentIndexMark > DocumentIndexMarks;
15126 published constants UserFieldFormat {
15127 const short NUM = 2;
15128 const short SYSTEM = 0;
15129 const short TEXT = 1;
15131 published service UserIndex {
15132 service ::com::sun::star::text::BaseIndex;
15133 [property, optional] ::com::sun::star::container::XIndexReplace LevelParagraphStyles;
15134 [property, optional] boolean CreateFromMarks;
15135 [property, optional] boolean UseLevelFromSource;
15136 [property, optional] boolean CreateFromTables;
15137 [property, optional] boolean CreateFromTextFrames;
15138 [property, optional] boolean CreateFromGraphicObjects;
15139 [property, optional] boolean CreateFromEmbeddedObjects;
15140 [property] string UserIndexName;
15142 published service UserIndexMark {
15143 service ::com::sun::star::text::TextContent;
15144 service ::com::sun::star::text::BaseIndexMark;
15145 [property] string UserIndexName;
15147 published constants VertOrientation {
15148 const short BOTTOM = 3;
15149 const short CENTER = 2;
15150 const short CHAR_BOTTOM = 6;
15151 const short CHAR_CENTER = 5;
15152 const short CHAR_TOP = 4;
15153 const short LINE_BOTTOM = 9;
15154 const short LINE_CENTER = 8;
15155 const short LINE_TOP = 7;
15156 const short NONE = 0;
15157 const short TOP = 1;
15159 published struct VertOrientationFormat {
15160 long YPos;
15161 short VerticalOrientation;
15162 short VerticalRelation;
15164 published service ViewSettings {
15165 interface ::com::sun::star::beans::XPropertySet;
15166 [property] boolean ShowAnnotations;
15167 [property] boolean ShowBreaks;
15168 [property] boolean ShowDrawings;
15169 [property] boolean ShowFieldCommands;
15170 [property] boolean ShowFootnoteBackground;
15171 [property] boolean ShowGraphics;
15172 [property] boolean ShowHiddenParagraphs;
15173 [property] boolean ShowHiddenText;
15174 [property] boolean ShowRulers;
15175 [property] boolean ShowHoriRuler;
15176 [property] boolean ShowHoriScrollBar;
15177 [property] boolean ShowIndexMarkBackground;
15178 [property] boolean ShowParaBreaks;
15179 [property] boolean ShowProtectedSpaces;
15180 [property] boolean ShowSoftHyphens;
15181 [property] boolean ShowSpaces;
15182 [property] boolean ShowTableBoundaries;
15183 [property] boolean ShowTables;
15184 [property] boolean ShowTabstops;
15185 [property] boolean ShowTextBoundaries;
15186 [property] boolean ShowTextFieldBackground;
15187 [property] boolean ShowVertRuler;
15188 [property] boolean ShowVertScrollBar;
15189 [property] boolean SmoothScrolling;
15190 [property] boolean IsVertRulerRightAligned;
15191 [property] boolean ShowOnlineLayout;
15192 [property] short ZoomType;
15193 [property] short ZoomValue;
15194 [property, optional] boolean IsExecuteHyperlinks;
15195 [property, optional] boolean IsRasterVisible;
15196 [property, optional] boolean IsSnapToRaster;
15197 [property, optional] long RasterSubdivisionX;
15198 [property, optional] long RasterSubdivisionY;
15199 [property, optional] long RasterResolutionX;
15200 [property, optional] long RasterResolutionY;
15201 [property, optional] boolean ShowHiddenCharacters;
15202 [property, optional] boolean ShowNonprintingCharacters;
15203 [property, optional] long HorizontalRulerMetric;
15204 [property, optional] long VerticalRulerMetric;
15205 [property, optional] boolean ShowContentTips;
15206 [property, optional] boolean ShowScrollBarTips;
15207 [property, optional] boolean HideWhitespace;
15208 [property, optional] boolean ShowInlineTooltips;
15209 [property, optional] boolean UseHeaderFooterMenu;
15210 [property, optional] boolean ShowBookmarks;
15211 [property, optional] boolean ShowOutlineContentVisibilityButton;
15212 [property, optional] boolean ShowChangesInMargin;
15213 [property, optional] boolean TreatSubOutlineLevelsAsContent;
15215 published constants WritingMode2 {
15216 const short BT_LR = 5;
15217 const short CONTEXT = 4;
15218 const short LR_TB = 0;
15219 /** @deprecated */ const short PAGE = 4;
15220 const short RL_TB = 1;
15221 const short TB_LR = 3;
15222 const short TB_RL = 2;
15224 published interface XBookmarkInsertTool {
15225 interface ::com::sun::star::uno::XInterface;
15226 ::com::sun::star::text::XTextContent insertNewBookmark([in] ::com::sun::star::text::XTextRange xTextRange, [in] string aName);
15228 published interface XDocumentIndexMark {
15229 interface ::com::sun::star::text::XTextContent;
15230 string getMarkEntry();
15231 void setMarkEntry([in] string aIndexEntry);
15233 published interface XEndnotesSettingsSupplier {
15234 interface ::com::sun::star::uno::XInterface;
15235 ::com::sun::star::beans::XPropertySet getEndnotesSettings();
15237 published interface XFootnotesSettingsSupplier {
15238 interface ::com::sun::star::uno::XInterface;
15239 ::com::sun::star::beans::XPropertySet getFootnotesSettings();
15241 published interface XLineNumberingProperties {
15242 interface ::com::sun::star::uno::XInterface;
15243 ::com::sun::star::beans::XPropertySet getLineNumberingProperties();
15245 published interface XMailMergeListener {
15246 interface ::com::sun::star::uno::XInterface;
15247 void notifyMailMergeEvent([in] ::com::sun::star::text::MailMergeEvent aEvent);
15249 published interface XNumberingFormatter {
15250 interface ::com::sun::star::uno::XInterface;
15251 string makeNumberingString([in] sequence< ::com::sun::star::beans::PropertyValue > aProperties, [in] ::com::sun::star::lang::Locale aLocale) raises (::com::sun::star::lang::IllegalArgumentException);
15253 published interface XNumberingRulesSupplier {
15254 interface ::com::sun::star::uno::XInterface;
15255 ::com::sun::star::container::XIndexAccess getNumberingRules();
15257 published interface XNumberingTypeInfo {
15258 interface ::com::sun::star::uno::XInterface;
15259 sequence< short > getSupportedNumberingTypes();
15260 short getNumberingType([in] string NumberingIdentifier);
15261 boolean hasNumberingType([in] string NumberingIdentifier);
15262 string getNumberingIdentifier([in] short NumberingType);
15264 published interface XRedline {
15265 interface ::com::sun::star::uno::XInterface;
15266 void makeRedline([in] string RedlineType, [in] ::com::sun::star::beans::PropertyValues RedlineProperties) raises (::com::sun::star::lang::IllegalArgumentException);
15268 /** @deprecated */ published interface XRelativeTextContentRemove {
15269 interface ::com::sun::star::uno::XInterface;
15270 void removeTextContentBefore([in] ::com::sun::star::text::XTextContent xSuccessor) raises (::com::sun::star::lang::IllegalArgumentException);
15271 void removeTextContentAfter([in] ::com::sun::star::text::XTextContent xPredecessor) raises (::com::sun::star::lang::IllegalArgumentException);
15273 published interface XRubySelection {
15274 interface ::com::sun::star::uno::XInterface;
15275 sequence< ::com::sun::star::beans::PropertyValues > getRubyList([in] boolean Automatic);
15276 void setRubyList([in] sequence< ::com::sun::star::beans::PropertyValues > RubyList, [in] boolean Automatic);
15278 published interface XTextCopy {
15279 interface ::com::sun::star::uno::XInterface;
15280 void copyText([in] ::com::sun::star::text::XTextCopy xSource);
15282 published interface XTextShapesSupplier {
15283 interface ::com::sun::star::uno::XInterface;
15284 ::com::sun::star::container::XIndexAccess getShapes();
15286 published interface XTextViewCursor {
15287 interface ::com::sun::star::text::XTextCursor;
15288 boolean isVisible();
15289 void setVisible([in] boolean bVisible);
15290 ::com::sun::star::awt::Point getPosition();
15292 module fieldmaster {
15293 published service Bibliography {
15294 service ::com::sun::star::text::TextFieldMaster;
15295 [property] boolean IsNumberEntries;
15296 [property] boolean IsSortByPosition;
15297 [property] string BracketBefore;
15298 [property] string BracketAfter;
15299 [property] sequence< ::com::sun::star::beans::PropertyValues > SortKeys;
15300 [property] ::com::sun::star::lang::Locale Locale;
15301 [property] string SortAlgorithm;
15303 published service DDE {
15304 service ::com::sun::star::text::TextFieldMaster;
15305 [property] string DDECommandElement;
15306 [property] string DDECommandFile;
15307 [property] string DDECommandType;
15308 [property] boolean IsAutomaticUpdate;
15309 [property, optional] string Content;
15311 published service Database {
15312 service ::com::sun::star::text::TextFieldMaster;
15313 [property] string DataBaseName;
15314 [property] long CommandType;
15315 [property] string DataTableName;
15316 [property] string DataColumnName;
15317 [property, optional] string DataBaseURL;
15318 [property, optional] string DataBaseResource;
15319 [property, optional] string Name;
15321 published service SetExpression {
15322 service ::com::sun::star::text::TextFieldMaster;
15323 [property] byte ChapterNumberingLevel;
15324 [property] string NumberingSeparator;
15325 [property] short SubType;
15327 published service User {
15328 service ::com::sun::star::text::TextFieldMaster;
15329 [property] boolean IsExpression;
15330 [property] double Value;
15331 [property] string Content;
15334 module textfield {
15335 published service Annotation {
15336 service ::com::sun::star::text::TextField;
15337 [property] string Author;
15338 [property, optional] string Initials;
15339 [property, optional] string Name;
15340 [property] string Content;
15341 [property] ::com::sun::star::util::Date Date;
15342 [property, optional] ::com::sun::star::util::DateTime DateTimeValue;
15344 published service Author {
15345 service ::com::sun::star::text::TextField;
15346 [property, optional] boolean IsFixed;
15347 [property, optional] string Content;
15348 [property, optional] short AuthorFormat;
15349 [property, optional] string CurrentPresentation;
15350 [property, optional] boolean FullName;
15352 published service Bibliography {
15353 service ::com::sun::star::text::DependentTextField;
15354 [property] sequence< ::com::sun::star::beans::PropertyValue > Fields;
15356 published service Chapter {
15357 service ::com::sun::star::text::TextField;
15358 [property] short ChapterFormat;
15359 [property] byte Level;
15361 published service CharacterCount {
15362 service ::com::sun::star::text::TextField;
15363 [property] short NumberingType;
15365 published service CombinedCharacters {
15366 service ::com::sun::star::text::TextField;
15367 [property] string Content;
15369 published service ConditionalText {
15370 service ::com::sun::star::text::TextField;
15371 [property] string TrueContent;
15372 [property] string FalseContent;
15373 [property] string Condition;
15374 [property] boolean IsConditionTrue;
15375 [property, optional] string CurrentPresentation;
15377 published service DDE {
15378 service ::com::sun::star::text::TextField;
15380 published service Database {
15381 service ::com::sun::star::text::DependentTextField;
15382 [property] string Content;
15383 [property] string CurrentPresentation;
15384 [property] boolean DataBaseFormat;
15385 [property] long NumberFormat;
15387 published service DatabaseName {
15388 service ::com::sun::star::text::DependentTextField;
15389 [property] string DataBaseName;
15390 [property] long DataCommandType;
15391 [property] string DataTableName;
15392 [property, optional] string DataBaseURL;
15393 [property, optional] string DataBaseResource;
15395 published service DatabaseNextSet {
15396 service ::com::sun::star::text::DependentTextField;
15397 [property] string DataBaseName;
15398 [property] long DataCommandType;
15399 [property] string DataTableName;
15400 [property] string Condition;
15401 [property, optional] string DataBaseURL;
15402 [property, optional] string DataBaseResource;
15404 published service DatabaseNumberOfSet {
15405 service ::com::sun::star::text::DependentTextField;
15406 [property] string DataBaseName;
15407 [property] long DataCommandType;
15408 [property] string DataTableName;
15409 [property] string Condition;
15410 [property] long SetNumber;
15411 [property, optional] string DataBaseURL;
15412 [property, optional] string DataBaseResource;
15414 published service DatabaseSetNumber {
15415 service ::com::sun::star::text::DependentTextField;
15416 [property] string DataBaseName;
15417 [property] long DataCommandType;
15418 [property] string DataTableName;
15419 [property] short NumberingType;
15420 [property] long SetNumber;
15421 [property, optional] string DataBaseURL;
15422 [property, optional] string DataBaseResource;
15424 published service DateTime {
15425 service ::com::sun::star::text::TextField;
15426 [property, optional] boolean IsFixed;
15427 [property] boolean IsDate;
15428 [property, optional] ::com::sun::star::util::DateTime DateTimeValue;
15429 [property, optional] long NumberFormat;
15430 /** @deprecated */ [property, optional] short DateTimeFormat;
15431 [property, optional] long Adjust;
15432 [property, optional] boolean IsFixedLanguage;
15434 published service DropDown {
15435 service ::com::sun::star::text::TextField;
15436 [property] string Name;
15437 [property] sequence< string > Items;
15438 [property] string SelectedItem;
15440 published service EmbeddedObjectCount {
15441 service ::com::sun::star::text::TextField;
15442 [property] short NumberingType;
15444 published service ExtendedUser {
15445 service ::com::sun::star::text::TextField;
15446 [property] string Content;
15447 [property] string CurrentPresentation;
15448 [property] boolean IsFixed;
15449 [property] short UserDataType;
15451 published service FileName {
15452 service ::com::sun::star::text::TextField;
15453 [property] string CurrentPresentation;
15454 [property] short FileFormat;
15455 [property] boolean IsFixed;
15457 published service GetExpression {
15458 service ::com::sun::star::text::TextField;
15459 [property] string Content;
15460 [property] string CurrentPresentation;
15461 [property] long NumberFormat;
15462 [property] boolean IsShowFormula;
15463 [property] short SubType;
15464 [property, readonly] double Value;
15465 [property] short VariableSubtype;
15466 [property, optional] boolean IsFixedLanguage;
15468 published service GetReference {
15469 service ::com::sun::star::text::TextField;
15470 [property] string CurrentPresentation;
15471 [property] short ReferenceFieldSource;
15472 [property] string SourceName;
15473 [property] short ReferenceFieldPart;
15474 [property] short SequenceNumber;
15475 [property, optional] string ReferenceFieldLanguage;
15477 published service GraphicObjectCount {
15478 service ::com::sun::star::text::TextField;
15479 [property] short NumberingType;
15481 published service HiddenParagraph {
15482 service ::com::sun::star::text::TextField;
15483 [property] string Condition;
15484 [property] boolean IsHidden;
15486 published service HiddenText {
15487 service ::com::sun::star::text::TextField;
15488 [property] string Content;
15489 [property] string Condition;
15490 [property] boolean IsHidden;
15492 published service Input {
15493 service ::com::sun::star::text::TextField;
15494 [property, optional] string Content;
15495 [property, optional] string Hint;
15496 [property, optional] string Help;
15498 published service InputUser {
15499 service ::com::sun::star::text::TextField;
15500 [property, optional] string Content;
15501 [property, optional] string Hint;
15503 published service JumpEdit {
15504 service ::com::sun::star::text::TextField;
15505 [property] string Hint;
15506 [property] string PlaceHolder;
15507 [property] short PlaceHolderType;
15509 published service Macro {
15510 service ::com::sun::star::text::TextField;
15511 [property] string Hint;
15512 [property] string MacroName;
15513 [property] string MacroLibrary;
15515 published service PageCount {
15516 service ::com::sun::star::text::TextField;
15517 [property] short NumberingType;
15519 published service PageNumber {
15520 service ::com::sun::star::text::TextField;
15521 [property] short NumberingType;
15522 [property] short Offset;
15523 [property] ::com::sun::star::text::PageNumberType SubType;
15524 [property] string UserText;
15526 published service ParagraphCount {
15527 service ::com::sun::star::text::TextField;
15528 [property] short NumberingType;
15530 published service ReferencePageGet {
15531 service ::com::sun::star::text::TextField;
15532 [property] short NumberingType;
15534 published service ReferencePageSet {
15535 service ::com::sun::star::text::TextField;
15536 [property] short Offset;
15537 [property] boolean NameOn;
15539 published service Script {
15540 service ::com::sun::star::text::TextField;
15541 [property] string Content;
15542 [property] string ScriptType;
15543 [property] boolean URLContent;
15545 published service SetExpression {
15546 service ::com::sun::star::text::DependentTextField;
15547 [property] string Content;
15548 [property] string CurrentPresentation;
15549 [property] long NumberFormat;
15550 [property] short NumberingType;
15551 [property] boolean IsShowFormula;
15552 [property] string Hint;
15553 [property] boolean IsInput;
15554 [property] boolean IsVisible;
15555 [property] short SequenceValue;
15556 [property] short SubType;
15557 [property] double Value;
15558 [property, readonly] string VariableName;
15559 [property, optional] boolean IsFixedLanguage;
15561 published service TableCount {
15562 service ::com::sun::star::text::TextField;
15563 [property] short NumberingType;
15565 /** @deprecated */ published service TableFormula {
15566 service ::com::sun::star::text::TextField;
15567 [property] string Formula;
15568 [property] string CurrentPresentation;
15569 [property] boolean IsShowFormula;
15570 [property] short NumberFormat;
15572 published service TemplateName {
15573 service ::com::sun::star::text::TextField;
15574 [property] short FileFormat;
15576 published service URL {
15577 service ::com::sun::star::text::TextField;
15578 [property] short Format;
15579 [property] string URL;
15580 [property] string Representation;
15581 [property] string TargetFrame;
15583 published service User {
15584 service ::com::sun::star::text::DependentTextField;
15585 [property, optional] boolean IsShowFormula;
15586 [property, optional] boolean IsVisible;
15587 [property, optional] long NumberFormat;
15588 [property, optional] boolean IsFixedLanguage;
15590 published service WordCount {
15591 service ::com::sun::star::text::TextField;
15592 [property] short NumberingType;
15594 module docinfo {
15595 published service ChangeAuthor {
15596 service ::com::sun::star::text::TextField;
15597 [property] string Author;
15598 [property] string CurrentPresentation;
15599 [property, optional] boolean IsFixed;
15601 published service ChangeDateTime {
15602 service ::com::sun::star::text::TextField;
15603 [property] string CurrentPresentation;
15604 [property, optional] boolean IsFixed;
15605 [property] boolean IsDate;
15606 [property] double DateTimeValue;
15607 [property] long NumberFormat;
15608 [property, optional] boolean IsFixedLanguage;
15610 published service CreateAuthor {
15611 service ::com::sun::star::text::TextField;
15612 [property] string Author;
15613 [property] string CurrentPresentation;
15614 [property, optional] boolean IsFixed;
15616 published service CreateDateTime {
15617 service ::com::sun::star::text::TextField;
15618 [property] string CurrentPresentation;
15619 [property, optional] boolean IsFixed;
15620 [property] boolean IsDate;
15621 [property] double DateTimeValue;
15622 [property] long NumberFormat;
15623 [property, optional] boolean IsFixedLanguage;
15625 published service Custom {
15626 service ::com::sun::star::text::TextField;
15627 [property] string Name;
15628 [property] string CurrentPresentation;
15629 [property] boolean IsFixed;
15631 published service Description {
15632 service ::com::sun::star::text::TextField;
15633 [property] string Content;
15634 [property] string CurrentPresentation;
15635 [property] boolean IsFixed;
15637 published service EditTime {
15638 service ::com::sun::star::text::TextField;
15639 [property] string CurrentPresentation;
15640 [property, optional] boolean IsFixed;
15641 [property] double DateTimeValue;
15642 [property] long NumberFormat;
15643 [property, optional] boolean IsFixedLanguage;
15645 published service Keywords {
15646 service ::com::sun::star::text::TextField;
15647 [property] string Content;
15648 [property] string CurrentPresentation;
15649 [property] boolean IsFixed;
15651 published service PrintAuthor {
15652 service ::com::sun::star::text::TextField;
15653 [property] string Author;
15654 [property] string CurrentPresentation;
15655 [property, optional] boolean IsFixed;
15657 published service PrintDateTime {
15658 service ::com::sun::star::text::TextField;
15659 [property] string CurrentPresentation;
15660 [property, optional] boolean IsFixed;
15661 [property] boolean IsDate;
15662 [property] double DateTimeValue;
15663 [property] long NumberFormat;
15664 [property, optional] boolean IsFixedLanguage;
15666 published service Revision {
15667 service ::com::sun::star::text::TextField;
15668 [property] string Content;
15669 [property] string CurrentPresentation;
15670 [property] boolean IsFixed;
15672 published service Subject {
15673 service ::com::sun::star::text::TextField;
15674 [property] string Content;
15675 [property] string CurrentPresentation;
15676 [property] boolean IsFixed;
15678 published service Title {
15679 service ::com::sun::star::text::TextField;
15680 [property] string Content;
15681 [property] string CurrentPresentation;
15682 [property] boolean IsFixed;
15687 module ucb {
15688 published exception AlreadyInitializedException: ::com::sun::star::uno::Exception {
15690 published interface XAnyCompare;
15691 published interface XAnyCompareFactory {
15692 interface ::com::sun::star::uno::XInterface;
15693 ::com::sun::star::ucb::XAnyCompare createAnyCompareByName([in] string PropertyName);
15695 published service AnyCompareFactory: ::com::sun::star::ucb::XAnyCompareFactory {
15696 createWithLocale([in] ::com::sun::star::lang::Locale aLocale);
15698 published exception AuthenticationRequest: ::com::sun::star::task::ClassifiedInteractionRequest {
15699 string ServerName;
15700 string Diagnostic;
15701 boolean HasRealm;
15702 string Realm;
15703 boolean HasUserName;
15704 string UserName;
15705 boolean HasPassword;
15706 string Password;
15707 boolean HasAccount;
15708 string Account;
15710 published interface XContentAccess {
15711 interface ::com::sun::star::uno::XInterface;
15712 string queryContentIdentifierString();
15713 ::com::sun::star::ucb::XContentIdentifier queryContentIdentifier();
15714 ::com::sun::star::ucb::XContent queryContent();
15716 published service ContentResultSet {
15717 service ::com::sun::star::sdbc::ResultSet;
15718 interface ::com::sun::star::lang::XComponent;
15719 interface ::com::sun::star::sdbc::XResultSetMetaDataSupplier;
15720 interface ::com::sun::star::sdbc::XResultSet;
15721 interface ::com::sun::star::sdbc::XRow;
15722 interface ::com::sun::star::sdbc::XCloseable;
15723 interface ::com::sun::star::beans::XPropertySet;
15724 interface ::com::sun::star::ucb::XContentAccess;
15725 [property, optional] long CursorTravelMode;
15726 [property, readonly] long RowCount;
15727 [property, readonly] boolean IsRowCountFinal;
15729 published service CachedContentResultSet {
15730 service ::com::sun::star::ucb::ContentResultSet;
15731 [property] long FetchSize;
15732 [property] long FetchDirection;
15734 published interface XContentIdentifierMapping;
15735 published interface XCachedContentResultSetFactory {
15736 interface ::com::sun::star::uno::XInterface;
15737 ::com::sun::star::sdbc::XResultSet createCachedContentResultSet([in] ::com::sun::star::sdbc::XResultSet xSource, [in] ::com::sun::star::ucb::XContentIdentifierMapping xMapping);
15739 published service CachedContentResultSetFactory: ::com::sun::star::ucb::XCachedContentResultSetFactory;
15740 published struct FetchResult {
15741 sequence< any > Rows;
15742 long StartIndex;
15743 boolean Orientation;
15744 short FetchError;
15746 published interface XFetchProvider {
15747 interface ::com::sun::star::uno::XInterface;
15748 ::com::sun::star::ucb::FetchResult fetch([in] long nRowStartPosition, [in] long nRowCount, [in] boolean bDirection);
15750 published interface XFetchProviderForContentAccess {
15751 interface ::com::sun::star::uno::XInterface;
15752 ::com::sun::star::ucb::FetchResult fetchContentIdentifierStrings([in] long nRowStartPosition, [in] long nRowCount, [in] boolean bDirection);
15753 ::com::sun::star::ucb::FetchResult fetchContentIdentifiers([in] long nRowStartPosition, [in] long nRowCount, [in] boolean bDirection);
15754 ::com::sun::star::ucb::FetchResult fetchContents([in] long nRowStartPosition, [in] long nRowCount, [in] boolean bDirection);
15756 published service CachedContentResultSetStub {
15757 service ::com::sun::star::ucb::ContentResultSet;
15758 interface ::com::sun::star::ucb::XFetchProvider;
15759 interface ::com::sun::star::ucb::XFetchProviderForContentAccess;
15761 published interface XCachedContentResultSetStubFactory {
15762 interface ::com::sun::star::uno::XInterface;
15763 ::com::sun::star::sdbc::XResultSet createCachedContentResultSetStub([in] ::com::sun::star::sdbc::XResultSet xSource);
15765 published service CachedContentResultSetStubFactory: ::com::sun::star::ucb::XCachedContentResultSetStubFactory;
15766 published exception ListenerAlreadySetException: ::com::sun::star::uno::Exception {
15768 published exception ServiceNotFoundException: ::com::sun::star::uno::Exception {
15770 published interface XDynamicResultSetListener;
15771 published interface XDynamicResultSet {
15772 interface ::com::sun::star::lang::XComponent;
15773 ::com::sun::star::sdbc::XResultSet getStaticResultSet() raises (::com::sun::star::ucb::ListenerAlreadySetException);
15774 void setListener([in] ::com::sun::star::ucb::XDynamicResultSetListener Listener) raises (::com::sun::star::ucb::ListenerAlreadySetException);
15775 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);
15776 short getCapabilities();
15778 published interface XSourceInitialization {
15779 interface ::com::sun::star::uno::XInterface;
15780 void setSource([in] ::com::sun::star::uno::XInterface Source) raises (::com::sun::star::ucb::AlreadyInitializedException);
15782 published service CachedDynamicResultSet {
15783 interface ::com::sun::star::ucb::XDynamicResultSet;
15784 interface ::com::sun::star::ucb::XSourceInitialization;
15786 published interface XCachedDynamicResultSetFactory {
15787 interface ::com::sun::star::uno::XInterface;
15788 ::com::sun::star::ucb::XDynamicResultSet createCachedDynamicResultSet([in] ::com::sun::star::ucb::XDynamicResultSet SourceStub, [in] ::com::sun::star::ucb::XContentIdentifierMapping ContentIdentifierMapping);
15790 published service CachedDynamicResultSetFactory: ::com::sun::star::ucb::XCachedDynamicResultSetFactory;
15791 published service CachedDynamicResultSetStub {
15792 interface ::com::sun::star::ucb::XDynamicResultSet;
15793 interface ::com::sun::star::ucb::XSourceInitialization;
15795 published struct NumberedSortingInfo {
15796 long ColumnIndex;
15797 boolean Ascending;
15799 published interface XCachedDynamicResultSetStubFactory {
15800 interface ::com::sun::star::uno::XInterface;
15801 ::com::sun::star::ucb::XDynamicResultSet createCachedDynamicResultSetStub([in] ::com::sun::star::ucb::XDynamicResultSet Source);
15802 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);
15804 published service CachedDynamicResultSetStubFactory: ::com::sun::star::ucb::XCachedDynamicResultSetStubFactory;
15805 published exception IllegalIdentifierException: ::com::sun::star::uno::Exception {
15807 published interface XContentProvider {
15808 interface ::com::sun::star::uno::XInterface;
15809 ::com::sun::star::ucb::XContent queryContent([in] ::com::sun::star::ucb::XContentIdentifier Identifier) raises (::com::sun::star::ucb::IllegalIdentifierException);
15810 long compareContentIds([in] ::com::sun::star::ucb::XContentIdentifier Id1, [in] ::com::sun::star::ucb::XContentIdentifier Id2);
15812 published service CommandEnvironment: ::com::sun::star::ucb::XCommandEnvironment {
15813 create([in] ::com::sun::star::task::XInteractionHandler InteractionHandler, [in] ::com::sun::star::ucb::XProgressHandler ProgressHandler);
15815 published struct CommandInfo {
15816 string Name;
15817 long Handle;
15818 type ArgType;
15820 published constants CommandInfoChange {
15821 const long COMMAND_INSERTED = 0;
15822 const long COMMAND_REMOVED = 1;
15824 published struct CommandInfoChangeEvent: ::com::sun::star::lang::EventObject {
15825 string Name;
15826 long Handle;
15827 long Reason;
15829 published constants ConnectionMode {
15830 const short OFFLINE = 1;
15831 const short ONLINE = 0;
15833 published constants ContentAction {
15834 const long DELETED = 2;
15835 const long EXCHANGED = 4;
15836 const long INSERTED = 0;
15837 const long REMOVED = 1;
15838 /** @deprecated */ const long SEARCH_MATCHED = 128;
15840 published struct ContentEvent: ::com::sun::star::lang::EventObject {
15841 long Action;
15842 ::com::sun::star::ucb::XContent Content;
15843 ::com::sun::star::ucb::XContentIdentifier Id;
15845 published constants ContentInfoAttribute {
15846 const short INSERT_WITH_INPUTSTREAM = 1;
15847 const short KIND_DOCUMENT = 2;
15848 const short KIND_FOLDER = 4;
15849 const short KIND_LINK = 8;
15850 const short NONE = 0;
15852 published interface XContentIdentifierFactory {
15853 interface ::com::sun::star::uno::XInterface;
15854 ::com::sun::star::ucb::XContentIdentifier createContentIdentifier([in] string ContentId);
15856 published interface XParameterizedContentProvider {
15857 interface ::com::sun::star::uno::XInterface;
15858 ::com::sun::star::ucb::XContentProvider registerInstance([in] string Template, [in] string Arguments, [in] boolean ReplaceExisting) raises (::com::sun::star::lang::IllegalArgumentException);
15859 ::com::sun::star::ucb::XContentProvider deregisterInstance([in] string Template, [in] string Arguments) raises (::com::sun::star::lang::IllegalArgumentException);
15861 published service ContentProvider {
15862 interface ::com::sun::star::ucb::XContentProvider;
15863 [optional] interface ::com::sun::star::ucb::XContentIdentifierFactory;
15864 [optional] interface ::com::sun::star::ucb::XParameterizedContentProvider;
15866 published struct ContentProviderInfo {
15867 ::com::sun::star::ucb::XContentProvider ContentProvider;
15868 string Scheme;
15870 published interface XContentProviderSupplier {
15871 interface ::com::sun::star::uno::XInterface;
15872 ::com::sun::star::ucb::XContentProvider getContentProvider();
15874 published service ContentProviderProxy {
15875 interface ::com::sun::star::uno::XInterface;
15876 interface ::com::sun::star::ucb::XContentProviderSupplier;
15877 interface ::com::sun::star::ucb::XContentProvider;
15878 interface ::com::sun::star::ucb::XParameterizedContentProvider;
15880 published interface XContentProviderFactory {
15881 interface ::com::sun::star::uno::XInterface;
15882 ::com::sun::star::ucb::XContentProvider createContentProvider([in] string Service);
15884 published service ContentProviderProxyFactory: ::com::sun::star::ucb::XContentProviderFactory;
15885 published constants ContentResultSetCapability {
15886 const short SORTED = 1;
15888 /** @deprecated */ published interface XContentTransmitter {
15889 interface ::com::sun::star::uno::XInterface;
15890 void transmit([in] string Source, [in] string Destination, [in] long Flags);
15892 /** @deprecated */ published service ContentTransmitter {
15893 interface ::com::sun::star::ucb::XContentTransmitter;
15895 published struct CrossReference {
15896 string Group;
15897 long Id;
15899 published service HierarchyDataSource {
15900 interface ::com::sun::star::lang::XMultiServiceFactory;
15901 interface ::com::sun::star::lang::XComponent;
15903 published service DefaultHierarchyDataSource {
15904 service ::com::sun::star::ucb::HierarchyDataSource;
15906 published struct DocumentHeaderField {
15907 string Name;
15908 string Value;
15910 published enum DocumentStoreMode {
15911 REMOTE = 0,
15912 LOCAL = 1
15914 published exception DuplicateCommandIdentifierException: ::com::sun::star::uno::Exception {
15916 published exception DuplicateProviderException: ::com::sun::star::uno::Exception {
15918 published service DynamicResultSet {
15919 interface ::com::sun::star::ucb::XDynamicResultSet;
15921 /** @deprecated */ published constants Error {
15922 const long ACCOUNT_SYNTAX = 122977;
15923 const long BAD_CCMAIL_EXPORT_PASSWORD = 122909;
15924 const long BAD_INET = 122965;
15925 const long CCMAIL_EXPORT_ERROR = 122905;
15926 const long CCMAIL_EXPORT_NOT_TERMINATING = 122957;
15927 const long CCMAIL_EXPORT_TOO_LONG = 122910;
15928 const long CNTOUT_NO_FROM = 122890;
15929 const long CONFIRM_EMPTY_TRASH = 122952;
15930 const long CONNECT_FAILURE = 122883;
15931 const long COULD_NOT_INIT_COMPONENT = 122961;
15932 const long DELETE_ABORTED = 122892;
15933 const long DO_LOG = 122947;
15934 const long EMPTY_SERVERNAME = 122963;
15935 const long EMPTY_USERNAME = 122964;
15936 const long EXTERNAL_COMMAND_FAILED = 122958;
15937 const long FILE_EXISTS = 122921;
15938 const long FILE_NOT_EXISTS = 122922;
15939 const long FOLDER_EXISTS = 122911;
15940 const long FOLDER_INVALID = 122896;
15941 const long FOLDER_NOT_EXISTS = 122912;
15942 const long FSYS_ACCESS_DENIED = 122926;
15943 const long FSYS_CACHE_INCONSISTENT = 122940;
15944 const long FSYS_CANT_ITERATE = 122937;
15945 const long FSYS_CANT_RESOLVE_CONFLICT = 122936;
15946 const long FSYS_DELETE = 122944;
15947 const long FSYS_INSERT_MEDIUM = 122955;
15948 const long FSYS_INVALID_CHAR = 122924;
15949 const long FSYS_INVALID_DEVICE = 122925;
15950 const long FSYS_IS_MARKED = 122945;
15951 const long FSYS_IS_WILDCARD = 122933;
15952 const long FSYS_LOCK = 122942;
15953 const long FSYS_LOCK_VIOLATION = 122927;
15954 const long FSYS_LOST_ROOT = 122949;
15955 const long FSYS_MISPLACED_CHAR = 122923;
15956 const long FSYS_NOT_A_DIRECTORY = 122932;
15957 const long FSYS_NOT_A_FILE = 122931;
15958 const long FSYS_NOT_SUPPORTED = 122929;
15959 const long FSYS_NO_TARGET = 122953;
15960 const long FSYS_READONLY = 122941;
15961 const long FSYS_RECURSIVE = 122954;
15962 const long FSYS_ROOT_DELETE = 122920;
15963 const long FSYS_UNKNOWN = 122930;
15964 const long FSYS_UNLOCK = 122943;
15965 const long FSYS_UPDATE_NEEDED = 122935;
15966 const long FSYS_VOLUME_FULL = 122928;
15967 const long FTP_DCONFAILURE = 122901;
15968 const long FTP_GENERAL_FAILURE = 122946;
15969 const long FTP_NETWORKERROR = 122898;
15970 const long FTP_NOTNECESSARYCMD = 122899;
15971 const long FTP_PROXY = 122950;
15972 const long FTP_RESOLVERERROR = 122897;
15973 const long FTP_SERVICEUNAVAILABLE = 122900;
15974 const long FTP_TRANSFERABORTED = 122902;
15975 const long HTTP_COOKIE_REQUEST = 122948;
15976 const long ILLEGAL_CCMAIL_EXPORT_FILE = 122907;
15977 const long ILLEGAL_MESSAGE_ID = 122914;
15978 const long IMAP_BAD_SERVER = 122969;
15979 const long IMAP_BAD_TITLE = 122971;
15980 const long IMAP_CONNECTION_CLOSED = 122967;
15981 const long IMAP_NOT_IMAP4 = 122968;
15982 const long IMAP_SERVER_MSG = 122966;
15983 const long IS_RESCHEDULED = 122918;
15984 const long LOGIN_FAILURE_ACCOUNT = 122976;
15985 const long LOGIN_FAILURE_MAILSEND = 122882;
15986 const long LOGIN_FAILURE_NEWSSEND = 122881;
15987 const long LOGIN_FAILURE_RECEIVE = 122880;
15988 const long MESSAGE_NOT_FOUND = 122908;
15989 const long MULTIPLE_NOT_SEARCHABLE = 122939;
15990 const long NONE = 0;
15991 const long NOTAVAILABLE = 122894;
15992 const long NOT_HANDLED = 122960;
15993 const long NO_CCMAIL_EXPORT_FILE = 122906;
15994 const long NO_DOCINFO = 122956;
15995 const long NO_VIM_BBOARDLIST = 122913;
15996 const long NO_VIM_LIBRARY = 122903;
15997 const long ONE_NOT_SEARCHABLE = 122938;
15998 const long PASSWORD_SYNTAX = 122973;
15999 const long QUERY_DELETE = 122893;
16000 const long QUERY_DELETE_CACHE = 122974;
16001 const long RENAMED_WRONG_FILE_FORMAT = 122934;
16002 const long RENAME_FAILED = 122959;
16003 const long REORGANIZE_FILE_LOCKED = 122970;
16004 const long REORGANIZE_NO_DISKSPACE = 122975;
16005 const long SERVERNAME_SYNTAX = 122916;
16006 const long SERVER_CONNECT_FAILURE = 122972;
16007 const long SERVER_PORT_SYNTAX = 122915;
16008 const long SOURCE_SAME_AS_TARGET = 122951;
16009 const long STORAGE_KILLED = 122887;
16010 const long STORAGE_READONLY = 122886;
16011 const long TOO_MANY_GROUPS = 122891;
16012 const long TRANSFER_URL_NOT_SUPPORTED = 122962;
16013 const long UCB_OFFLINE = 122884;
16014 const long UCB_SERVER_ERROR = 122885;
16015 const long UNSUPPORTED_URL = 122889;
16016 const long USERNAME_SYNTAX = 122917;
16017 const long VIM_LIBRARY_CORRUPTED = 122904;
16018 const long VIM_LIBRARY_ERROR = 122895;
16019 const long VIM_NO_FAKE_MESSAGE_ID = 122919;
16020 const long WRONG_FILE_FORMAT = 122888;
16022 published struct ExportStreamInfo {
16023 ::com::sun::star::io::XOutputStream Target;
16024 boolean ForceBodies;
16026 published service FTPContent {
16027 interface ::com::sun::star::lang::XComponent;
16028 interface ::com::sun::star::ucb::XContent;
16029 interface ::com::sun::star::ucb::XContentCreator;
16030 interface ::com::sun::star::ucb::XCommandProcessor;
16031 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16032 interface ::com::sun::star::beans::XPropertyContainer;
16033 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16034 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16035 interface ::com::sun::star::container::XChild;
16037 published service FTPContentProvider {
16038 interface ::com::sun::star::ucb::XContentProvider;
16040 published constants FetchError {
16041 const short ENDOFDATA = 1;
16042 const short EXCEPTION = 2;
16043 const short SUCCESS = 0;
16045 published service FileContent {
16046 interface ::com::sun::star::lang::XComponent;
16047 interface ::com::sun::star::ucb::XContent;
16048 interface ::com::sun::star::ucb::XContentCreator;
16049 interface ::com::sun::star::ucb::XCommandProcessor;
16050 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16051 interface ::com::sun::star::beans::XPropertyContainer;
16052 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16053 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16054 interface ::com::sun::star::container::XChild;
16055 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16057 published interface XFileIdentifierConverter {
16058 interface ::com::sun::star::uno::XInterface;
16059 long getFileProviderLocality([in] string BaseURL);
16060 string getFileURLFromSystemPath([in] string BaseURL, [in] string SystemPath);
16061 string getSystemPathFromFileURL([in] string URL);
16063 published service FileContentProvider {
16064 interface ::com::sun::star::ucb::XContentProvider;
16065 interface ::com::sun::star::ucb::XContentIdentifierFactory;
16066 interface ::com::sun::star::beans::XPropertySet;
16067 interface ::com::sun::star::ucb::XFileIdentifierConverter;
16069 published constants FileSystemNotation {
16070 const long DOS_NOTATION = 2;
16071 const long MAC_NOTATION = 3;
16072 const long UNIX_NOTATION = 1;
16073 const long UNKNOWN_NOTATION = 0;
16075 published enum FolderListCommand {
16076 GET = 0,
16077 GET_SUBSCRIBED = 1,
16078 SET = 2
16080 published struct FolderListEntry {
16081 string Title;
16082 string ID;
16083 boolean Subscribed;
16084 boolean New;
16085 boolean Removed;
16086 boolean Purge;
16088 published struct FolderList {
16089 ::com::sun::star::ucb::FolderListCommand Command;
16090 sequence< ::com::sun::star::ucb::FolderListEntry > List;
16092 published enum TransferCommandOperation {
16093 COPY = 0,
16094 MOVE = 1,
16095 LINK = 2
16097 published struct GlobalTransferCommandArgument {
16098 ::com::sun::star::ucb::TransferCommandOperation Operation;
16099 string SourceURL;
16100 string TargetURL;
16101 string NewTitle;
16102 long NameClash;
16104 published service HelpContent {
16105 interface ::com::sun::star::lang::XComponent;
16106 interface ::com::sun::star::ucb::XContent;
16107 interface ::com::sun::star::ucb::XCommandProcessor;
16108 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16109 interface ::com::sun::star::beans::XPropertyContainer;
16110 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16111 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16112 interface ::com::sun::star::container::XChild;
16113 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16115 published service HelpContentProvider {
16116 interface ::com::sun::star::ucb::XContentProvider;
16118 published service HierarchyContentProvider {
16119 interface ::com::sun::star::ucb::XContentProvider;
16121 published service HierarchyDataReadAccess {
16122 interface ::com::sun::star::container::XNameAccess;
16123 interface ::com::sun::star::container::XHierarchicalNameAccess;
16124 interface ::com::sun::star::util::XChangesNotifier;
16125 interface ::com::sun::star::lang::XComponent;
16127 published service HierarchyDataReadWriteAccess {
16128 service ::com::sun::star::ucb::HierarchyDataReadAccess;
16129 interface ::com::sun::star::container::XNameContainer;
16130 interface ::com::sun::star::lang::XSingleServiceFactory;
16131 interface ::com::sun::star::util::XChangesBatch;
16133 published service HierarchyFolderContent {
16134 interface ::com::sun::star::lang::XComponent;
16135 interface ::com::sun::star::ucb::XContent;
16136 interface ::com::sun::star::ucb::XCommandProcessor;
16137 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16138 interface ::com::sun::star::beans::XPropertyContainer;
16139 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16140 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16141 interface ::com::sun::star::container::XChild;
16142 interface ::com::sun::star::ucb::XContentCreator;
16143 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16145 published service HierarchyLinkContent {
16146 interface ::com::sun::star::lang::XComponent;
16147 interface ::com::sun::star::ucb::XContent;
16148 interface ::com::sun::star::ucb::XCommandProcessor;
16149 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16150 interface ::com::sun::star::beans::XPropertyContainer;
16151 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16152 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16153 interface ::com::sun::star::container::XChild;
16154 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16156 published service HierarchyRootFolderContent {
16157 interface ::com::sun::star::lang::XComponent;
16158 interface ::com::sun::star::ucb::XContent;
16159 interface ::com::sun::star::ucb::XCommandProcessor;
16160 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16161 interface ::com::sun::star::beans::XPropertyContainer;
16162 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16163 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16164 interface ::com::sun::star::container::XChild;
16165 interface ::com::sun::star::ucb::XContentCreator;
16166 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16168 published struct InsertCommandArgument {
16169 ::com::sun::star::io::XInputStream Data;
16170 boolean ReplaceExisting;
16172 published exception InteractiveAppException: ::com::sun::star::task::ClassifiedInteractionRequest {
16173 unsigned long Code;
16175 published exception InteractiveAugmentedIOException: ::com::sun::star::ucb::InteractiveIOException {
16176 sequence< any > Arguments;
16178 published exception InteractiveBadTransferURLException: ::com::sun::star::uno::Exception {
16180 /** @deprecated */ published exception InteractiveFileIOException: ::com::sun::star::ucb::InteractiveIOException {
16181 string FileName;
16183 published exception InteractiveNetworkException: ::com::sun::star::task::ClassifiedInteractionRequest {
16185 published exception InteractiveNetworkConnectException: ::com::sun::star::ucb::InteractiveNetworkException {
16186 string Server;
16188 published exception InteractiveNetworkGeneralException: ::com::sun::star::ucb::InteractiveNetworkException {
16190 published exception InteractiveNetworkOffLineException: ::com::sun::star::ucb::InteractiveNetworkException {
16192 published exception InteractiveNetworkReadException: ::com::sun::star::ucb::InteractiveNetworkException {
16193 string Diagnostic;
16195 published exception InteractiveNetworkResolveNameException: ::com::sun::star::ucb::InteractiveNetworkException {
16196 string Server;
16198 published exception InteractiveNetworkWriteException: ::com::sun::star::ucb::InteractiveNetworkException {
16199 string Diagnostic;
16201 published exception InteractiveWrongMediumException: ::com::sun::star::task::ClassifiedInteractionRequest {
16202 any Medium;
16204 published struct Link {
16205 string Source;
16206 string Destination;
16208 published struct ListAction {
16209 long Position;
16210 long Count;
16211 long ListActionType;
16212 any ActionInfo;
16214 published constants ListActionType {
16215 const long CLEARED = 23;
16216 const long COMPLETED = 27;
16217 const long INSERTED = 21;
16218 const long MOVED = 24;
16219 const long PROPERTIES_CHANGED = 25;
16220 const long REMOVED = 22;
16221 const long WELCOME = 20;
16223 published struct ListEvent: ::com::sun::star::lang::EventObject {
16224 sequence< ::com::sun::star::ucb::ListAction > Changes;
16226 published enum LockDepth {
16227 ZERO = 0,
16228 ONE = 1,
16229 INFINITY = 2
16231 published enum LockScope {
16232 EXCLUSIVE = 0,
16233 SHARED = 1
16235 published enum LockType {
16236 WRITE = 0
16238 published struct LockEntry {
16239 ::com::sun::star::ucb::LockScope Scope;
16240 ::com::sun::star::ucb::LockType Type;
16242 published struct Lock: ::com::sun::star::ucb::LockEntry {
16243 ::com::sun::star::ucb::LockDepth Depth;
16244 any Owner;
16245 hyper Timeout;
16246 sequence< string > LockTokens;
16248 published exception MissingInputStreamException: ::com::sun::star::uno::Exception {
16250 published exception MissingPropertiesException: ::com::sun::star::uno::Exception {
16251 sequence< string > Properties;
16253 published constants NameClash {
16254 const long ASK = 4;
16255 const long ERROR = 0;
16256 /** @deprecated */ const long KEEP = 3;
16257 const long OVERWRITE = 1;
16258 const long RENAME = 2;
16260 published exception NameClashException: ::com::sun::star::task::ClassifiedInteractionRequest {
16261 string Name;
16263 published exception NameClashResolveRequest: ::com::sun::star::task::ClassifiedInteractionRequest {
16264 string TargetFolderURL;
16265 string ClashingName;
16266 string ProposedNewName;
16268 published service ODMAContent {
16269 interface ::com::sun::star::lang::XComponent;
16270 interface ::com::sun::star::ucb::XContent;
16271 interface ::com::sun::star::ucb::XCommandProcessor;
16272 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16273 interface ::com::sun::star::beans::XPropertyContainer;
16274 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16275 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16276 interface ::com::sun::star::container::XChild;
16277 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16279 published service ODMAContentProvider {
16280 interface ::com::sun::star::ucb::XContentProvider;
16282 published struct OpenCommandArgument {
16283 long Mode;
16284 long Priority;
16285 ::com::sun::star::uno::XInterface Sink;
16286 sequence< ::com::sun::star::beans::Property > Properties;
16288 published struct OpenCommandArgument2: ::com::sun::star::ucb::OpenCommandArgument {
16289 sequence< ::com::sun::star::ucb::NumberedSortingInfo > SortingInfo;
16291 published struct OpenCommandArgument3: ::com::sun::star::ucb::OpenCommandArgument2 {
16292 sequence< ::com::sun::star::beans::NamedValue > OpeningFlags;
16294 published constants OpenMode {
16295 const short ALL = 0;
16296 const short DOCUMENT = 2;
16297 const short DOCUMENTS = 3;
16298 const short DOCUMENT_SHARE_DENY_NONE = 4;
16299 const short DOCUMENT_SHARE_DENY_WRITE = 5;
16300 const short FOLDERS = 1;
16302 published enum OutgoingMessageState {
16303 WRITTEN = 0,
16304 PARTIALLY_LOCALLY_SENT = 1,
16305 COMPLETELY_LOCALLY_SENT = 2,
16306 RECOVERABLE_LOCAL_ERROR = 3,
16307 NONRECOVERABLE_LOCAL_ERROR = 4,
16308 EXTERNAL_ERROR = 5,
16309 WAITING_CONFIRMATION = 6,
16310 CONFIRMED = 7
16312 published service PackageContentProvider {
16313 interface ::com::sun::star::ucb::XContentProvider;
16315 published service PackageFolderContent {
16316 interface ::com::sun::star::lang::XComponent;
16317 interface ::com::sun::star::ucb::XContent;
16318 interface ::com::sun::star::ucb::XCommandProcessor;
16319 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16320 interface ::com::sun::star::beans::XPropertyContainer;
16321 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16322 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16323 interface ::com::sun::star::container::XChild;
16324 interface ::com::sun::star::ucb::XContentCreator;
16325 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16327 published service PackageStreamContent {
16328 interface ::com::sun::star::lang::XComponent;
16329 interface ::com::sun::star::ucb::XContent;
16330 interface ::com::sun::star::ucb::XCommandProcessor;
16331 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16332 interface ::com::sun::star::beans::XPropertyContainer;
16333 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16334 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16335 interface ::com::sun::star::container::XChild;
16336 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16338 published interface XPropertySetRegistry;
16339 published interface XPersistentPropertySet {
16340 interface ::com::sun::star::beans::XPropertySet;
16341 ::com::sun::star::ucb::XPropertySetRegistry getRegistry();
16342 string getKey();
16344 published service PersistentPropertySet {
16345 interface ::com::sun::star::ucb::XPersistentPropertySet;
16346 interface ::com::sun::star::container::XNamed;
16347 interface ::com::sun::star::beans::XPropertyContainer;
16348 interface ::com::sun::star::beans::XPropertyAccess;
16350 published struct PostCommandArgument {
16351 ::com::sun::star::io::XInputStream Source;
16352 ::com::sun::star::uno::XInterface Sink;
16354 published struct PostCommandArgument2: ::com::sun::star::ucb::PostCommandArgument {
16355 string MediaType;
16356 string Referer;
16358 published enum Priority {
16359 HIGHEST = 0,
16360 HIGH = 1,
16361 NORMAL = 2,
16362 LOW = 3,
16363 LOWEST = 4
16365 published service PropertiesManager: ::com::sun::star::beans::XPropertySetInfo;
16366 published interface XPropertySetRegistry {
16367 interface ::com::sun::star::uno::XInterface;
16368 ::com::sun::star::ucb::XPersistentPropertySet openPropertySet([in] string key, [in] boolean create);
16369 void removePropertySet([in] string key);
16371 published service PropertySetRegistry {
16372 interface ::com::sun::star::ucb::XPropertySetRegistry;
16373 interface ::com::sun::star::container::XNameAccess;
16375 published enum PropertyValueState {
16376 UNPROCESSED = 0,
16377 PROCESSED = 1,
16378 INVALID_NAME = 2,
16379 INVALID_TYPE = 3
16381 published struct PropertyValueInfo: ::com::sun::star::beans::PropertyValue {
16382 ::com::sun::star::ucb::PropertyValueState ValueState;
16384 published struct RecipientInfo {
16385 string ProtocolType;
16386 ::com::sun::star::ucb::OutgoingMessageState State;
16387 string To;
16388 string CC;
16389 string BCC;
16390 string Newsgroups;
16391 string Server;
16392 string Username;
16393 string Password;
16394 string VIMPostOfficePath;
16395 string ProtocolErrorString;
16396 long ProtocolErrorNumber;
16397 long SendTries;
16399 published service RemoteAccessContentProvider {
16400 service ::com::sun::star::ucb::ContentProvider;
16401 interface ::com::sun::star::ucb::XParameterizedContentProvider;
16403 published interface XRemoteContentProviderDoneListener;
16404 published interface XRemoteContentProviderAcceptor {
16405 interface ::com::sun::star::uno::XInterface;
16406 boolean addRemoteContentProvider([in] string Identifier, [in] ::com::sun::star::lang::XMultiServiceFactory Factory, [in] sequence< string > Templates, [in] ::com::sun::star::ucb::XRemoteContentProviderDoneListener DoneListener);
16407 boolean removeRemoteContentProvider([in] string Identifier);
16409 published interface XContentProviderManager;
16410 /** @deprecated */ published interface XRemoteContentProviderActivator {
16411 interface ::com::sun::star::uno::XInterface;
16412 ::com::sun::star::ucb::XContentProviderManager activateRemoteContentProviders();
16414 published service RemoteContentProviderAcceptor {
16415 interface ::com::sun::star::ucb::XRemoteContentProviderAcceptor;
16416 /** @deprecated */ [optional] interface ::com::sun::star::ucb::XRemoteContentProviderActivator;
16418 published enum RemoteContentProviderChangeAction {
16419 ADDED = 0,
16420 REMOVED = 1
16422 published struct RemoteContentProviderChangeEvent: ::com::sun::star::lang::EventObject {
16423 string Identifier;
16424 ::com::sun::star::ucb::RemoteContentProviderChangeAction Action;
16426 /** @deprecated */ published service RemoteProxyContentProvider {
16427 interface ::com::sun::star::ucb::XContentProvider;
16428 [optional] interface ::com::sun::star::ucb::XContentIdentifierFactory;
16429 [optional] interface ::com::sun::star::ucb::XParameterizedContentProvider;
16431 published exception ResultSetException: ::com::sun::star::sdbc::SQLException {
16433 published struct RuleTerm {
16434 string Property;
16435 any Operand;
16436 short Operator;
16437 boolean CaseSensitive;
16438 boolean RegularExpression;
16440 published struct Rule {
16441 sequence< ::com::sun::star::ucb::RuleTerm > Terms;
16442 string Parameter;
16443 short Action;
16445 published constants RuleAction {
16446 const short COPY = 8;
16447 const short DELETE = 9;
16448 const short FORWARD = 11;
16449 const short HIDE = 2;
16450 const short LINK = 10;
16451 const short MARK = 3;
16452 const short MARKREAD = 5;
16453 const short MARKUNREAD = 6;
16454 const short MOVE = 7;
16455 const short NONE = 0;
16456 const short SHOW = 1;
16457 const short UNMARK = 4;
16459 published constants RuleOperator {
16460 const short CONTAINS = 1;
16461 const short CONTAINSNOT = 2;
16462 const short EQUAL = 5;
16463 const short GREATEREQUAL = 3;
16464 const short LESSEQUAL = 4;
16465 const short NOTEQUAL = 6;
16466 const short VALUE_FALSE = 8;
16467 const short VALUE_TRUE = 7;
16469 published struct RuleSet {
16470 sequence< ::com::sun::star::ucb::Rule > Rules;
16471 boolean HandleFolder;
16473 published struct SearchCriterium {
16474 sequence< ::com::sun::star::ucb::RuleTerm > Terms;
16476 published enum SearchRecursion {
16477 NONE = 0,
16478 ONE_LEVEL = 1,
16479 DEEP = 2
16481 published struct SearchInfo {
16482 sequence< ::com::sun::star::ucb::SearchCriterium > Criteria;
16483 ::com::sun::star::ucb::SearchRecursion Recursion;
16484 boolean IncludeBase;
16485 boolean RespectFolderViewRestrictions;
16486 boolean RespectDocViewRestrictions;
16487 boolean FollowIndirections;
16489 published struct SearchCommandArgument {
16490 ::com::sun::star::ucb::SearchInfo Info;
16491 sequence< ::com::sun::star::beans::Property > Properties;
16493 published struct SendInfo {
16494 string ProtocolType;
16495 string Value;
16497 published struct SendMediaTypes {
16498 string ProtocolType;
16499 sequence< string > Value;
16501 published interface XSimpleFileAccess {
16502 interface ::com::sun::star::uno::XInterface;
16503 void copy([in] string SourceURL, [in] string DestURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16504 void move([in] string SourceURL, [in] string DestURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16505 void kill([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16506 boolean isFolder([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16507 boolean isReadOnly([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16508 void setReadOnly([in] string FileURL, [in] boolean bReadOnly) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16509 void createFolder([in] string NewFolderURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16510 long getSize([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16511 string getContentType([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16512 ::com::sun::star::util::DateTime getDateTimeModified([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16513 sequence< string > getFolderContents([in] string FolderURL, [in] boolean bIncludeFolders) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16514 boolean exists([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16515 ::com::sun::star::io::XInputStream openFileRead([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16516 ::com::sun::star::io::XOutputStream openFileWrite([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16517 ::com::sun::star::io::XStream openFileReadWrite([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16518 void setInteractionHandler([in] ::com::sun::star::task::XInteractionHandler Handler);
16520 published interface XSimpleFileAccess2 {
16521 interface ::com::sun::star::ucb::XSimpleFileAccess;
16522 void writeFile([in] string FileURL, [in] ::com::sun::star::io::XInputStream data) raises (::com::sun::star::uno::Exception);
16524 published interface XSimpleFileAccess3 {
16525 interface ::com::sun::star::ucb::XSimpleFileAccess2;
16526 boolean isHidden([in] string FileURL) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16527 void setHidden([in] string FileURL, [in] boolean bHidden) raises (::com::sun::star::ucb::CommandAbortedException, ::com::sun::star::uno::Exception);
16529 published service SimpleFileAccess: ::com::sun::star::ucb::XSimpleFileAccess3;
16530 published interface XSortedDynamicResultSetFactory {
16531 interface ::com::sun::star::uno::XInterface;
16532 ::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);
16534 published service SortedDynamicResultSetFactory: ::com::sun::star::ucb::XSortedDynamicResultSetFactory;
16535 published struct SortingInfo {
16536 string PropertyName;
16537 boolean Ascending;
16539 published interface XPropertySetRegistryFactory {
16540 interface ::com::sun::star::uno::XInterface;
16541 ::com::sun::star::ucb::XPropertySetRegistry createPropertySetRegistry([in] string URL);
16543 published service Store: ::com::sun::star::ucb::XPropertySetRegistryFactory;
16544 published enum SynchronizePolicy {
16545 SERVER_IS_MASTER = 0,
16546 CLIENT_IS_MASTER = 1,
16547 NONE_IS_MASTER = 2
16549 published struct TransferInfo {
16550 boolean MoveData;
16551 string SourceURL;
16552 string NewTitle;
16553 long NameClash;
16555 published struct TransferResult {
16556 string Source;
16557 string Target;
16558 any Result;
16560 published interface XContentProviderManager {
16561 interface ::com::sun::star::uno::XInterface;
16562 ::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);
16563 void deregisterContentProvider([in] ::com::sun::star::ucb::XContentProvider Provider, [in] string Scheme);
16564 sequence< ::com::sun::star::ucb::ContentProviderInfo > queryContentProviders();
16565 ::com::sun::star::ucb::XContentProvider queryContentProvider([in] string Identifier);
16567 published interface XUniversalContentBroker {
16568 interface ::com::sun::star::lang::XComponent;
16569 interface ::com::sun::star::ucb::XContentProvider;
16570 interface ::com::sun::star::ucb::XContentProviderManager;
16571 interface ::com::sun::star::ucb::XContentIdentifierFactory;
16572 interface ::com::sun::star::ucb::XCommandProcessor2;
16574 published service UniversalContentBroker: ::com::sun::star::ucb::XUniversalContentBroker {
16575 create();
16577 published exception UnsupportedCommandException: ::com::sun::star::uno::Exception {
16579 published exception UnsupportedDataSinkException: ::com::sun::star::uno::Exception {
16580 ::com::sun::star::uno::XInterface Sink;
16582 published exception UnsupportedNameClashException: ::com::sun::star::uno::Exception {
16583 long NameClash;
16585 published exception UnsupportedOpenModeException: ::com::sun::star::uno::Exception {
16586 short Mode;
16588 published enum VerificationMode {
16589 ALWAYS = 0,
16590 ONCE = 1,
16591 NEVER = 2
16593 published service WebDAVContentProvider {
16594 interface ::com::sun::star::ucb::XContentProvider;
16596 published service WebDAVDocumentContent {
16597 interface ::com::sun::star::lang::XComponent;
16598 interface ::com::sun::star::ucb::XContent;
16599 interface ::com::sun::star::ucb::XCommandProcessor;
16600 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16601 interface ::com::sun::star::beans::XPropertyContainer;
16602 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16603 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16604 interface ::com::sun::star::container::XChild;
16605 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16607 published service WebDAVFolderContent {
16608 interface ::com::sun::star::lang::XComponent;
16609 interface ::com::sun::star::ucb::XContent;
16610 interface ::com::sun::star::ucb::XCommandProcessor;
16611 interface ::com::sun::star::beans::XPropertiesChangeNotifier;
16612 interface ::com::sun::star::beans::XPropertyContainer;
16613 interface ::com::sun::star::beans::XPropertySetInfoChangeNotifier;
16614 interface ::com::sun::star::ucb::XCommandInfoChangeNotifier;
16615 interface ::com::sun::star::container::XChild;
16616 interface ::com::sun::star::ucb::XContentCreator;
16617 [optional] interface ::com::sun::star::ucb::XCommandProcessor2;
16619 published struct WelcomeDynamicResultSetStruct {
16620 ::com::sun::star::sdbc::XResultSet Old;
16621 ::com::sun::star::sdbc::XResultSet New;
16623 published interface XAnyCompare {
16624 interface ::com::sun::star::uno::XInterface;
16625 short compare([in] any Any1, [in] any Any2);
16627 published interface XCommandInfo {
16628 interface ::com::sun::star::uno::XInterface;
16629 sequence< ::com::sun::star::ucb::CommandInfo > getCommands();
16630 ::com::sun::star::ucb::CommandInfo getCommandInfoByName([in] string Name) raises (::com::sun::star::ucb::UnsupportedCommandException);
16631 ::com::sun::star::ucb::CommandInfo getCommandInfoByHandle([in] long Handle) raises (::com::sun::star::ucb::UnsupportedCommandException);
16632 boolean hasCommandByName([in] string Name);
16633 boolean hasCommandByHandle([in] long Handle);
16635 published interface XCommandInfoChangeListener {
16636 interface ::com::sun::star::lang::XEventListener;
16637 void commandInfoChange([in] ::com::sun::star::ucb::CommandInfoChangeEvent evt);
16639 published interface XContentEventListener {
16640 interface ::com::sun::star::lang::XEventListener;
16641 void contentEvent([in] ::com::sun::star::ucb::ContentEvent evt);
16643 published interface XContentIdentifier {
16644 interface ::com::sun::star::uno::XInterface;
16645 string getContentIdentifier();
16646 string getContentProviderScheme();
16648 published interface XContentIdentifierMapping {
16649 interface ::com::sun::star::uno::XInterface;
16650 string mapContentIdentifierString([in] string Source);
16651 ::com::sun::star::ucb::XContentIdentifier mapContentIdentifier([in] ::com::sun::star::ucb::XContentIdentifier Source);
16652 ::com::sun::star::ucb::XContent mapContent([in] ::com::sun::star::ucb::XContent Source);
16653 boolean mapRow([inout] sequence< any > Value);
16655 /** @deprecated */ published interface XDataContainer {
16656 interface ::com::sun::star::container::XIndexContainer;
16657 string getContentType();
16658 void setContentType([in] string aType);
16659 sequence< byte > getData();
16660 void setData([in] sequence< byte > aData);
16661 /** @deprecated */ string getDataURL();
16662 /** @deprecated */ void setDataURL([in] string aURL);
16664 published interface XDynamicResultSetListener {
16665 interface ::com::sun::star::lang::XEventListener;
16666 void notify([in] ::com::sun::star::ucb::ListEvent Changes);
16668 published interface XInteractionHandlerSupplier {
16669 interface ::com::sun::star::uno::XInterface;
16670 boolean hasInteractionHandler();
16672 published interface XInteractionReplaceExistingData {
16673 interface ::com::sun::star::task::XInteractionContinuation;
16675 published interface XInteractionSupplyAuthentication {
16676 interface ::com::sun::star::task::XInteractionContinuation;
16677 boolean canSetRealm();
16678 void setRealm([in] string Realm);
16679 boolean canSetUserName();
16680 void setUserName([in] string UserName);
16681 boolean canSetPassword();
16682 void setPassword([in] string Password);
16683 sequence< ::com::sun::star::ucb::RememberAuthentication > getRememberPasswordModes([out] ::com::sun::star::ucb::RememberAuthentication Default);
16684 void setRememberPassword([in] ::com::sun::star::ucb::RememberAuthentication Remember);
16685 boolean canSetAccount();
16686 void setAccount([in] string Account);
16687 sequence< ::com::sun::star::ucb::RememberAuthentication > getRememberAccountModes([out] ::com::sun::star::ucb::RememberAuthentication Default);
16688 void setRememberAccount([in] ::com::sun::star::ucb::RememberAuthentication Remember);
16690 published interface XInteractionSupplyName {
16691 interface ::com::sun::star::task::XInteractionContinuation;
16692 void setName([in] string Name);
16694 published interface XProgressHandler {
16695 interface ::com::sun::star::uno::XInterface;
16696 void push([in] any Status);
16697 void update([in] any Status);
16698 void pop();
16700 published interface XPropertyMatcher {
16701 interface ::com::sun::star::uno::XInterface;
16702 boolean matches([in] ::com::sun::star::ucb::XCommandProcessor Properties, [in] ::com::sun::star::ucb::XCommandEnvironment Environment);
16704 published interface XPropertyMatcherFactory {
16705 interface ::com::sun::star::uno::XInterface;
16706 ::com::sun::star::ucb::XPropertyMatcher createPropertyMatcher([in] sequence< ::com::sun::star::ucb::SearchCriterium > Criteria);
16708 published interface XRecycler {
16709 interface ::com::sun::star::uno::XInterface;
16710 void trashContent([in] ::com::sun::star::ucb::XCommandProcessor Properties, [in] ::com::sun::star::ucb::XContentIdentifier Identifier);
16712 published interface XRemoteContentProviderChangeListener {
16713 interface ::com::sun::star::lang::XEventListener;
16714 void remoteContentProviderChange([in] ::com::sun::star::ucb::RemoteContentProviderChangeEvent Event);
16716 published interface XRemoteContentProviderChangeNotifier {
16717 interface ::com::sun::star::uno::XInterface;
16718 void addRemoteContentProviderChangeListener([in] ::com::sun::star::ucb::XRemoteContentProviderChangeListener Listener);
16719 void removeRemoteContentProviderChangeListener([in] ::com::sun::star::ucb::XRemoteContentProviderChangeListener Listener);
16721 published interface XRemoteContentProviderConnectionControl {
16722 interface ::com::sun::star::uno::XInterface;
16723 void enableConnectionControl([in] ::com::sun::star::ucb::XRemoteContentProviderAcceptor Acceptor, [in] ::com::sun::star::uno::XInterface Token);
16725 published interface XRemoteContentProviderDistributor {
16726 interface ::com::sun::star::uno::XInterface;
16727 boolean connectToRemoteAcceptor([in] string Url, [in] string Identifier) raises (::com::sun::star::connection::NoConnectException, ::com::sun::star::connection::ConnectionSetupException, ::com::sun::star::lang::IllegalArgumentException);
16728 boolean disconnectFromRemoteAcceptor([in] string Url);
16729 void disconnectFromAll();
16731 published interface XRemoteContentProviderDoneListener {
16732 interface ::com::sun::star::uno::XInterface;
16733 void doneWithRemoteContentProviders([in] ::com::sun::star::ucb::XRemoteContentProviderAcceptor Acceptor);
16735 published interface XRemoteContentProviderSupplier {
16736 interface ::com::sun::star::uno::XInterface;
16737 ::com::sun::star::lang::XMultiServiceFactory queryRemoteContentProvider([in] string Identifier);
16740 module ui {
16741 published service ActionTrigger {
16742 [property] string Text;
16743 [property] string CommandURL;
16744 [property, optional] string HelpURL;
16745 [property] ::com::sun::star::awt::XBitmap Image;
16746 [property] ::com::sun::star::container::XIndexContainer SubContainer;
16748 published service ActionTriggerContainer {
16749 interface ::com::sun::star::container::XIndexContainer;
16750 interface ::com::sun::star::lang::XMultiServiceFactory;
16751 [optional] interface ::com::sun::star::container::XEnumerationAccess;
16752 [optional] interface ::com::sun::star::container::XContainer;
16754 published service ActionTriggerSeparator {
16755 [property, optional] short SeparatorType;
16757 published constants ActionTriggerSeparatorType {
16758 const short LINE = 0;
16759 const short LINEBREAK = 2;
16760 const short SPACE = 1;
16762 published struct ContextMenuExecuteEvent {
16763 ::com::sun::star::awt::XWindow SourceWindow;
16764 ::com::sun::star::awt::Point ExecutePosition;
16765 ::com::sun::star::container::XIndexContainer ActionTriggerContainer;
16766 ::com::sun::star::view::XSelectionSupplier Selection;
16768 published enum ContextMenuInterceptorAction {
16769 IGNORED = 0,
16770 CANCELLED = 1,
16771 EXECUTE_MODIFIED = 2,
16772 CONTINUE_MODIFIED = 3
16774 published interface XUIConfiguration {
16775 interface ::com::sun::star::uno::XInterface;
16776 void addConfigurationListener([in] ::com::sun::star::ui::XUIConfigurationListener Listener);
16777 void removeConfigurationListener([in] ::com::sun::star::ui::XUIConfigurationListener Listener);
16779 published interface XUIConfigurationPersistence {
16780 interface ::com::sun::star::uno::XInterface;
16781 void reload() raises (::com::sun::star::uno::Exception);
16782 void store() raises (::com::sun::star::uno::Exception);
16783 void storeToStorage([in] ::com::sun::star::embed::XStorage Storage) raises (::com::sun::star::uno::Exception);
16784 boolean isModified();
16785 boolean isReadOnly();
16787 published interface XUIConfigurationStorage {
16788 interface ::com::sun::star::uno::XInterface;
16789 void setStorage([in] ::com::sun::star::embed::XStorage Storage);
16790 boolean hasStorage();
16792 published interface XAcceleratorConfiguration {
16793 interface ::com::sun::star::ui::XUIConfigurationPersistence;
16794 interface ::com::sun::star::ui::XUIConfigurationStorage;
16795 interface ::com::sun::star::ui::XUIConfiguration;
16796 sequence< ::com::sun::star::awt::KeyEvent > getAllKeyEvents();
16797 string getCommandByKeyEvent([in] ::com::sun::star::awt::KeyEvent aKeyEvent) raises (::com::sun::star::container::NoSuchElementException);
16798 void setKeyEvent([in] ::com::sun::star::awt::KeyEvent aKeyEvent, [in] string sCommand) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException);
16799 void removeKeyEvent([in] ::com::sun::star::awt::KeyEvent aKeyEvent) raises (::com::sun::star::container::NoSuchElementException);
16800 sequence< ::com::sun::star::awt::KeyEvent > getKeyEventsByCommand([in] string sCommand) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException);
16801 sequence< any > getPreferredKeyEventsForCommandList([in] sequence< string > lCommandList) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException);
16802 void removeCommandFromAllKeyEvents([in] string sCommand) raises (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::container::NoSuchElementException);
16804 published interface XContextMenuInterceptor {
16805 interface ::com::sun::star::uno::XInterface;
16806 ::com::sun::star::ui::ContextMenuInterceptorAction notifyContextMenuExecute([in] ::com::sun::star::ui::ContextMenuExecuteEvent aEvent);
16808 module dialogs {
16809 published constants CommonFilePickerElementIds {
16810 const short CONTROL_FILEVIEW = 4;
16811 const short EDIT_FILEURL = 5;
16812 const short EDIT_FILEURL_LABEL = 7;
16813 const short LISTBOX_FILTER = 3;
16814 const short LISTBOX_FILTER_LABEL = 6;
16815 const short PUSHBUTTON_CANCEL = 2;
16816 const short PUSHBUTTON_OK = 1;
16818 published constants ControlActions {
16819 const short ADD_ITEM = 1;
16820 const short ADD_ITEMS = 2;
16821 const short DELETE_ITEM = 3;
16822 const short DELETE_ITEMS = 4;
16823 const short GET_HELP_URL = 101;
16824 const short GET_ITEMS = 6;
16825 const short GET_SELECTED_ITEM = 7;
16826 const short GET_SELECTED_ITEM_INDEX = 8;
16827 const short SET_HELP_URL = 100;
16828 const short SET_SELECT_ITEM = 5;
16830 published exception ExecutableDialogException: ::com::sun::star::uno::Exception {
16832 published constants ExecutableDialogResults {
16833 const short CANCEL = 0;
16834 const short OK = 1;
16836 published constants ExtendedFilePickerElementIds {
16837 const short CHECKBOX_AUTOEXTENSION = 100;
16838 const short CHECKBOX_FILTEROPTIONS = 102;
16839 const short CHECKBOX_GPGENCRYPTION = 211;
16840 const short CHECKBOX_LINK = 104;
16841 const short CHECKBOX_PASSWORD = 101;
16842 const short CHECKBOX_PREVIEW = 105;
16843 const short CHECKBOX_READONLY = 103;
16844 const short CHECKBOX_SELECTION = 110;
16845 const short LISTBOX_FILTER_SELECTOR = 210;
16846 const short LISTBOX_IMAGE_ANCHOR = 212;
16847 const short LISTBOX_IMAGE_ANCHOR_LABEL = 213;
16848 const short LISTBOX_IMAGE_TEMPLATE = 109;
16849 const short LISTBOX_IMAGE_TEMPLATE_LABEL = 209;
16850 const short LISTBOX_TEMPLATE = 108;
16851 const short LISTBOX_TEMPLATE_LABEL = 208;
16852 const short LISTBOX_VERSION = 107;
16853 const short LISTBOX_VERSION_LABEL = 207;
16854 const short PUSHBUTTON_PLAY = 106;
16856 published interface XFilePicker {
16857 interface ::com::sun::star::ui::dialogs::XExecutableDialog;
16858 void setMultiSelectionMode([in] boolean bMode);
16859 void setDefaultName([in] string aName);
16860 void setDisplayDirectory([in] string aDirectory) raises (::com::sun::star::lang::IllegalArgumentException);
16861 string getDisplayDirectory();
16862 /** @deprecated */ sequence< string > getFiles();
16864 published interface XFilePicker2 {
16865 interface ::com::sun::star::ui::dialogs::XFilePicker;
16866 sequence< string > getSelectedFiles();
16868 published interface XFilePickerListener;
16869 published interface XFilePickerNotifier {
16870 interface ::com::sun::star::uno::XInterface;
16871 void addFilePickerListener([in] ::com::sun::star::ui::dialogs::XFilePickerListener xListener);
16872 void removeFilePickerListener([in] ::com::sun::star::ui::dialogs::XFilePickerListener xListener);
16874 published interface XFilePreview {
16875 interface ::com::sun::star::uno::XInterface;
16876 sequence< short > getSupportedImageFormats();
16877 /** @deprecated */ ::com::sun::star::util::Color getTargetColorDepth();
16878 long getAvailableWidth();
16879 long getAvailableHeight();
16880 void setImage([in] short aImageFormat, [in] any aImage) raises (::com::sun::star::lang::IllegalArgumentException);
16881 boolean setShowState([in] boolean bShowState);
16882 boolean getShowState();
16884 published interface XFilterGroupManager {
16885 interface ::com::sun::star::uno::XInterface;
16886 void appendFilterGroup([in] string sGroupTitle, [in] sequence< ::com::sun::star::beans::StringPair > aFilters) raises (::com::sun::star::lang::IllegalArgumentException);
16888 published interface XFilterManager {
16889 interface ::com::sun::star::uno::XInterface;
16890 void appendFilter([in] string aTitle, [in] string aFilter) raises (::com::sun::star::lang::IllegalArgumentException);
16891 void setCurrentFilter([in] string aTitle) raises (::com::sun::star::lang::IllegalArgumentException);
16892 string getCurrentFilter();
16894 published interface XFilePicker3 {
16895 interface ::com::sun::star::ui::dialogs::XFilePicker2;
16896 interface ::com::sun::star::ui::dialogs::XFilePickerNotifier;
16897 interface ::com::sun::star::ui::dialogs::XFilterManager;
16898 interface ::com::sun::star::ui::dialogs::XFilterGroupManager;
16899 interface ::com::sun::star::util::XCancellable;
16900 interface ::com::sun::star::lang::XComponent;
16901 [optional] interface ::com::sun::star::ui::dialogs::XFilePreview;
16903 published service FilePicker: ::com::sun::star::ui::dialogs::XFilePicker3 {
16904 createWithMode([in] short Mode);
16906 published struct FilePickerEvent: ::com::sun::star::lang::EventObject {
16907 short ElementId;
16909 published constants FilePreviewImageFormats {
16910 const short BITMAP = 1;
16912 published interface XFolderPicker {
16913 interface ::com::sun::star::ui::dialogs::XExecutableDialog;
16914 void setDisplayDirectory([in] string aDirectory) raises (::com::sun::star::lang::IllegalArgumentException);
16915 string getDisplayDirectory();
16916 string getDirectory();
16917 void setDescription([in] string aDescription);
16919 published interface XFolderPicker2 {
16920 interface ::com::sun::star::ui::dialogs::XFolderPicker;
16921 interface ::com::sun::star::util::XCancellable;
16923 published service FolderPicker: ::com::sun::star::ui::dialogs::XFolderPicker2;
16924 /** @deprecated */ published constants ListboxControlActions {
16925 const short ADD_ITEM = 1;
16926 const short ADD_ITEMS = 2;
16927 const short DELETE_ITEM = 3;
16928 const short DELETE_ITEMS = 4;
16929 const short GET_ITEMS = 6;
16930 const short GET_SELECTED_ITEM = 7;
16931 const short SET_SELECT_ITEM = 5;
16933 published constants TemplateDescription {
16934 const short FILEOPEN_LINK_PLAY = 12;
16935 const short FILEOPEN_LINK_PREVIEW = 9;
16936 const short FILEOPEN_LINK_PREVIEW_IMAGE_ANCHOR = 13;
16937 const short FILEOPEN_LINK_PREVIEW_IMAGE_TEMPLATE = 6;
16938 const short FILEOPEN_PLAY = 7;
16939 const short FILEOPEN_PREVIEW = 11;
16940 const short FILEOPEN_READONLY_VERSION = 8;
16941 const short FILEOPEN_SIMPLE = 0;
16942 const short FILESAVE_AUTOEXTENSION = 10;
16943 const short FILESAVE_AUTOEXTENSION_PASSWORD = 2;
16944 const short FILESAVE_AUTOEXTENSION_PASSWORD_FILTEROPTIONS = 3;
16945 const short FILESAVE_AUTOEXTENSION_SELECTION = 4;
16946 const short FILESAVE_AUTOEXTENSION_TEMPLATE = 5;
16947 const short FILESAVE_SIMPLE = 1;
16949 published interface XControlAccess {
16950 interface ::com::sun::star::uno::XInterface;
16951 void setControlProperty([in] string aControlName, [in] string aControlProperty, [in] any aValue) raises (::com::sun::star::lang::IllegalArgumentException);
16952 any getControlProperty([in] string aControlName, [in] string aControlProperty) raises (::com::sun::star::lang::IllegalArgumentException);
16954 published interface XControlInformation {
16955 interface ::com::sun::star::uno::XInterface;
16956 sequence< string > getSupportedControls();
16957 boolean isControlSupported([in] string aControlName);
16958 sequence< string > getSupportedControlProperties([in] string aControlName) raises (::com::sun::star::lang::IllegalArgumentException);
16959 boolean isControlPropertySupported([in] string aControlName, [in] string aControlProperty) raises (::com::sun::star::lang::IllegalArgumentException);
16961 published interface XFilePickerControlAccess {
16962 interface ::com::sun::star::ui::dialogs::XFilePicker;
16963 void setValue([in] short ControlId, [in] short aControlAction, [in] any aValue);
16964 any getValue([in] short aControlId, [in] short aControlAction);
16965 void setLabel([in] short aControlId, [in] string aLabel);
16966 string getLabel([in] short aControlId);
16967 void enableControl([in] short ControlId, [in] boolean bEnable);
16969 published interface XFilePickerListener {
16970 interface ::com::sun::star::lang::XEventListener;
16971 void fileSelectionChanged([in] ::com::sun::star::ui::dialogs::FilePickerEvent aEvent);
16972 void directoryChanged([in] ::com::sun::star::ui::dialogs::FilePickerEvent aEvent);
16973 string helpRequested([in] ::com::sun::star::ui::dialogs::FilePickerEvent aEvent);
16974 void controlStateChanged([in] ::com::sun::star::ui::dialogs::FilePickerEvent aEvent);
16975 void dialogSizeChanged();
16977 published service XSLTFilterDialog: ::com::sun::star::ui::dialogs::XExecutableDialog;
16980 module util {
16981 published struct AtomClassRequest {
16982 long atomClass;
16983 sequence< long > atoms;
16985 published struct AtomDescription {
16986 long atom;
16987 string description;
16989 published struct ChangesEvent: ::com::sun::star::lang::EventObject {
16990 any Base;
16991 ::com::sun::star::util::ChangesSet Changes;
16993 published enum DataEditorEventType {
16994 DONE = 0,
16995 CANCELED = 1
16997 published struct DataEditorEvent: ::com::sun::star::lang::EventObject {
16998 ::com::sun::star::util::DataEditorEventType Type;
17000 published struct DateTimeRange {
17001 unsigned long StartNanoSeconds;
17002 unsigned short StartSeconds;
17003 unsigned short StartMinutes;
17004 unsigned short StartHours;
17005 unsigned short StartDay;
17006 unsigned short StartMonth;
17007 short StartYear;
17008 unsigned long EndNanoSeconds;
17009 unsigned short EndSeconds;
17010 unsigned short EndMinutes;
17011 unsigned short EndHours;
17012 unsigned short EndDay;
17013 unsigned short EndMonth;
17014 short EndYear;
17015 boolean IsUTC;
17017 published interface XJobManager {
17018 interface ::com::sun::star::uno::XInterface;
17019 void registerJob([in] ::com::sun::star::util::XCancellable Job);
17020 void releaseJob([in] ::com::sun::star::util::XCancellable Job);
17021 void cancelAllJobs();
17023 published typedef short Language;
17024 published exception MalformedNumberFormatException: ::com::sun::star::uno::Exception {
17025 long CheckPos;
17027 published constants MeasureUnit {
17028 const short APPFONT = 17;
17029 const short CM = 3;
17030 const short FOOT = 13;
17031 const short INCH = 7;
17032 const short INCH_1000TH = 4;
17033 const short INCH_100TH = 5;
17034 const short INCH_10TH = 6;
17035 const short KM = 11;
17036 const short M = 10;
17037 const short MILE = 14;
17038 const short MM = 2;
17039 const short MM_100TH = 0;
17040 const short MM_10TH = 1;
17041 const short PERCENT = 15;
17042 const short PICA = 12;
17043 const short PIXEL = 16;
17044 const short POINT = 8;
17045 const short SYSFONT = 18;
17046 const short TWIP = 9;
17048 published struct ModeChangeEvent: ::com::sun::star::lang::EventObject {
17049 string NewMode;
17051 published exception NotNumericException: ::com::sun::star::uno::Exception {
17053 published constants NumberFormat {
17054 const short ALL = 0;
17055 const short CURRENCY = 8;
17056 const short DATE = 2;
17057 const short DATETIME = 6;
17058 const short DEFINED = 1;
17059 const short DURATION = 8196;
17060 const short EMPTY = 4096;
17061 const short FRACTION = 64;
17062 const short LOGICAL = 1024;
17063 const short NUMBER = 16;
17064 const short PERCENT = 128;
17065 const short SCIENTIFIC = 32;
17066 const short TEXT = 256;
17067 const short TIME = 4;
17068 const short UNDEFINED = 2048;
17070 published service NumberFormatProperties {
17071 [property, readonly] string FormatString;
17072 [property, readonly] ::com::sun::star::lang::Locale Locale;
17073 [property, readonly] short Type;
17074 [property] string Comment;
17076 published service NumberFormatSettings {
17077 interface ::com::sun::star::beans::XPropertySet;
17078 [property] ::com::sun::star::util::Date NullDate;
17079 [property] short StandardDecimals;
17080 [property] boolean NoZero;
17081 [property] short TwoDigitDateStart;
17083 published interface XNumberFormatTypes {
17084 interface ::com::sun::star::uno::XInterface;
17085 long getStandardIndex([in] ::com::sun::star::lang::Locale nLocale);
17086 long getStandardFormat([in] short nType, [in] ::com::sun::star::lang::Locale nLocale);
17087 long getFormatIndex([in] short nIndex, [in] ::com::sun::star::lang::Locale nLocale);
17088 boolean isTypeCompatible([in] short nOldType, [in] short nNewType);
17089 long getFormatForLocale([in] long nKey, [in] ::com::sun::star::lang::Locale nLocale);
17091 published interface XNumberFormats {
17092 interface ::com::sun::star::uno::XInterface;
17093 ::com::sun::star::beans::XPropertySet getByKey([in] long nKey);
17094 sequence< long > queryKeys([in] short nType, [in] ::com::sun::star::lang::Locale nLocale, [in] boolean bCreate);
17095 long queryKey([in] string aFormat, [in] ::com::sun::star::lang::Locale nLocale, [in] boolean bScan);
17096 long addNew([in] string aFormat, [in] ::com::sun::star::lang::Locale nLocale) raises (::com::sun::star::util::MalformedNumberFormatException);
17097 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);
17098 void removeByKey([in] long nKey);
17099 string generateFormat([in] long nBaseKey, [in] ::com::sun::star::lang::Locale nLocale, [in] boolean bThousands, [in] boolean bRed, [in] short nDecimals, [in] short nLeading);
17101 published service NumberFormats {
17102 interface ::com::sun::star::util::XNumberFormats;
17103 interface ::com::sun::star::util::XNumberFormatTypes;
17105 published service NumberFormatsSupplier: ::com::sun::star::util::XNumberFormatsSupplier {
17106 createWithLocale([in] ::com::sun::star::lang::Locale Locale);
17107 createWithDefaultLocale();
17109 published interface XNumberFormatPreviewer {
17110 interface ::com::sun::star::uno::XInterface;
17111 string convertNumberToPreviewString([in] string aFormat, [in] double fValue, [in] ::com::sun::star::lang::Locale nLocale, [in] boolean bAllowEnglish) raises (::com::sun::star::util::MalformedNumberFormatException);
17112 ::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);
17114 published interface XNumberFormatter {
17115 interface ::com::sun::star::uno::XInterface;
17116 void attachNumberFormatsSupplier([in] ::com::sun::star::util::XNumberFormatsSupplier xSupplier);
17117 ::com::sun::star::util::XNumberFormatsSupplier getNumberFormatsSupplier();
17118 long detectNumberFormat([in] long nKey, [in] string aString) raises (::com::sun::star::util::NotNumericException);
17119 double convertStringToNumber([in] long nKey, [in] string aString) raises (::com::sun::star::util::NotNumericException);
17120 string convertNumberToString([in] long nKey, [in] double fValue);
17121 ::com::sun::star::util::Color queryColorForNumber([in] long nKey, [in] double fValue, [in] ::com::sun::star::util::Color aDefaultColor);
17122 string formatString([in] long nKey, [in] string aString);
17123 ::com::sun::star::util::Color queryColorForString([in] long nKey, [in] string aString, [in] ::com::sun::star::util::Color aDefaultColor);
17124 string getInputString([in] long nKey, [in] double fValue);
17126 published interface XNumberFormatter2 {
17127 interface ::com::sun::star::util::XNumberFormatter;
17128 interface ::com::sun::star::util::XNumberFormatPreviewer;
17130 published service NumberFormatter: ::com::sun::star::util::XNumberFormatter2;
17131 published interface XOfficeInstallationDirectories {
17132 interface ::com::sun::star::uno::XInterface;
17133 string getOfficeInstallationDirectoryURL();
17134 string getOfficeUserDataDirectoryURL();
17135 string makeRelocatableURL([in] string URL);
17136 string makeAbsoluteURL([in] string URL);
17138 /** @deprecated */ published service OfficeInstallationDirectories {
17139 interface ::com::sun::star::util::XOfficeInstallationDirectories;
17141 published interface XPathSettings {
17142 interface ::com::sun::star::beans::XPropertySet;
17143 [attribute] string Addin;
17144 [attribute] string AutoCorrect;
17145 [attribute] string AutoText;
17146 [attribute] string Backup;
17147 [attribute] string Basic;
17148 [attribute] string Bitmap;
17149 [attribute] string Config;
17150 [attribute] string Dictionary;
17151 [attribute] string Favorite;
17152 [attribute] string Filter;
17153 [attribute] string Gallery;
17154 [attribute] string Graphic;
17155 [attribute] string Help;
17156 [attribute] string Linguistic;
17157 [attribute] string Module;
17158 [attribute] string Palette;
17159 [attribute] string Plugin;
17160 [attribute] string Storage;
17161 [attribute] string Temp;
17162 [attribute] string Template;
17163 [attribute] string UIConfig;
17164 [attribute] string UserConfig;
17165 /** @deprecated */ [attribute] string UserDictionary;
17166 [attribute] string Work;
17167 [attribute] string BasePathShareLayer;
17168 [attribute] string BasePathUserLayer;
17170 /** @deprecated */ published service PathSettings: ::com::sun::star::util::XPathSettings;
17171 published interface XStringSubstitution {
17172 interface ::com::sun::star::uno::XInterface;
17173 string substituteVariables([in] string aText, [in] boolean bSubstRequired) raises (::com::sun::star::container::NoSuchElementException);
17174 string reSubstituteVariables([in] string aText);
17175 string getSubstituteVariableValue([in] string variable) raises (::com::sun::star::container::NoSuchElementException);
17177 published service PathSubstitution: ::com::sun::star::util::XStringSubstitution;
17178 published interface XSearchDescriptor {
17179 interface ::com::sun::star::beans::XPropertySet;
17180 string getSearchString();
17181 void setSearchString([in] string aString);
17183 published service SearchDescriptor {
17184 interface ::com::sun::star::util::XSearchDescriptor;
17185 interface ::com::sun::star::beans::XPropertySet;
17186 [property] boolean SearchBackwards;
17187 [property] boolean SearchCaseSensitive;
17188 [property] boolean SearchWords;
17189 [property] boolean SearchRegularExpression;
17190 [property] boolean SearchStyles;
17191 [property] boolean SearchSimilarity;
17192 [property] boolean SearchSimilarityRelax;
17193 [property] short SearchSimilarityRemove;
17194 [property] short SearchSimilarityAdd;
17195 [property] short SearchSimilarityExchange;
17196 [property, optional] boolean SearchWildcard;
17198 published interface XReplaceDescriptor {
17199 interface ::com::sun::star::util::XSearchDescriptor;
17200 string getReplaceString();
17201 void setReplaceString([in] string aReplaceString);
17203 published service ReplaceDescriptor {
17204 service ::com::sun::star::util::SearchDescriptor;
17205 interface ::com::sun::star::util::XReplaceDescriptor;
17207 published enum SearchAlgorithms {
17208 ABSOLUTE = 0,
17209 REGEXP = 1,
17210 APPROXIMATE = 2
17212 published constants SearchFlags {
17213 /** @deprecated */ const long ALL_IGNORE_CASE = 1;
17214 const long LEV_RELAXED = 65536;
17215 const long NORM_WORD_ONLY = 16;
17216 /** @deprecated */ const long REG_EXTENDED = 256;
17217 /** @deprecated */ const long REG_NEWLINE = 1024;
17218 /** @deprecated */ const long REG_NOSUB = 512;
17219 const long REG_NOT_BEGINOFLINE = 2048;
17220 const long REG_NOT_ENDOFLINE = 4096;
17221 const long WILD_MATCH_SELECTION = 1048576;
17223 published struct SearchOptions {
17224 ::com::sun::star::util::SearchAlgorithms algorithmType;
17225 long searchFlag;
17226 string searchString;
17227 string replaceString;
17228 ::com::sun::star::lang::Locale Locale;
17229 long changedChars;
17230 long deletedChars;
17231 long insertedChars;
17232 long transliterateFlags;
17234 published struct SearchResult {
17235 long subRegExpressions;
17236 sequence< long > startOffset;
17237 sequence< long > endOffset;
17239 /** @deprecated */ published service Sortable {
17240 interface ::com::sun::star::util::XSortable;
17242 published interface XTextSearch {
17243 interface ::com::sun::star::uno::XInterface;
17244 void setOptions([in] ::com::sun::star::util::SearchOptions options);
17245 ::com::sun::star::util::SearchResult searchForward([in] string searchStr, [in] long startPos, [in] long endPos);
17246 ::com::sun::star::util::SearchResult searchBackward([in] string searchStr, [in] long startPos, [in] long endPos);
17248 published service TextSearch: ::com::sun::star::util::XTextSearch;
17249 published interface XURLTransformer {
17250 interface ::com::sun::star::uno::XInterface;
17251 boolean parseStrict([inout] ::com::sun::star::util::URL aURL);
17252 boolean parseSmart([inout] ::com::sun::star::util::URL aURL, [in] string sSmartProtocol);
17253 boolean assemble([inout] ::com::sun::star::util::URL aURL);
17254 string getPresentation([in] ::com::sun::star::util::URL aURL, [in] boolean bWithPassword);
17256 published service URLTransformer: ::com::sun::star::util::XURLTransformer;
17257 published interface XStringWidth;
17258 published interface XStringAbbreviation {
17259 interface ::com::sun::star::uno::XInterface;
17260 string abbreviateString([in] ::com::sun::star::util::XStringWidth xStringWidth, [in] long nWidth, [in] string aString);
17262 published interface XAtomServer {
17263 interface ::com::sun::star::uno::XInterface;
17264 sequence< ::com::sun::star::util::AtomDescription > getClass([in] long atomClass);
17265 sequence< sequence< ::com::sun::star::util::AtomDescription > > getClasses([in] sequence< long > atomClasses);
17266 sequence< string > getAtomDescriptions([in] sequence< ::com::sun::star::util::AtomClassRequest > atoms);
17267 sequence< ::com::sun::star::util::AtomDescription > getRecentAtoms([in] long atomClass, [in] long atom);
17268 long getAtom([in] long atomClass, [in] string description, [in] boolean create);
17270 published interface XChainable {
17271 interface ::com::sun::star::uno::XInterface;
17272 ::com::sun::star::util::XChainable getPredecessor();
17273 ::com::sun::star::util::XChainable getSuccessor();
17274 void setSuccessor([in] ::com::sun::star::util::XChainable xChainable) raises (::com::sun::star::lang::IllegalArgumentException);
17275 boolean isChainable([in] ::com::sun::star::util::XChainable xChainable);
17277 published interface XChangesListener {
17278 interface ::com::sun::star::lang::XEventListener;
17279 void changesOccurred([in] ::com::sun::star::util::ChangesEvent Event);
17281 published interface XChangesSet {
17282 interface ::com::sun::star::container::XElementAccess;
17283 sequence< ::com::sun::star::util::ElementChange > getAllChanges();
17285 published interface XCloseListener {
17286 interface ::com::sun::star::lang::XEventListener;
17287 void queryClosing([in] ::com::sun::star::lang::EventObject Source, [in] boolean GetsOwnership) raises (::com::sun::star::util::CloseVetoException);
17288 void notifyClosing([in] ::com::sun::star::lang::EventObject Source);
17290 published interface XDataEditorListener;
17291 published interface XDataEditor {
17292 interface ::com::sun::star::uno::XInterface;
17293 void show();
17294 void setModel([in] ::com::sun::star::uno::XInterface model);
17295 ::com::sun::star::uno::XInterface getModel();
17296 void addDataEditorListener([in] ::com::sun::star::util::XDataEditorListener listener);
17297 void removeDataEditorListener([in] ::com::sun::star::util::XDataEditorListener listener);
17299 published interface XDataEditorListener {
17300 interface ::com::sun::star::uno::XInterface;
17301 void updateDataEditorState([in] ::com::sun::star::util::DataEditorEvent event);
17303 published interface XFlushListener {
17304 interface ::com::sun::star::lang::XEventListener;
17305 void flushed([in] ::com::sun::star::lang::EventObject rEvent);
17307 published interface XLinkUpdate {
17308 interface ::com::sun::star::uno::XInterface;
17309 void updateLinks();
17311 published interface XModeChangeApproveListener {
17312 interface ::com::sun::star::lang::XEventListener;
17313 void approveModeChange([in] ::com::sun::star::util::ModeChangeEvent rSource) raises (::com::sun::star::util::VetoException);
17315 published interface XModeChangeListener;
17316 published interface XModeChangeBroadcaster {
17317 interface ::com::sun::star::uno::XInterface;
17318 void addModeChangeListener([in] ::com::sun::star::util::XModeChangeListener rxListener);
17319 void removeModeChangeListener([in] ::com::sun::star::util::XModeChangeListener rxListener);
17320 void addModeChangeApproveListener([in] ::com::sun::star::util::XModeChangeApproveListener rxListener) raises (::com::sun::star::lang::NoSupportException);
17321 void removeModeChangeApproveListener([in] ::com::sun::star::util::XModeChangeApproveListener rxListener) raises (::com::sun::star::lang::NoSupportException);
17323 published interface XModeChangeListener {
17324 interface ::com::sun::star::lang::XEventListener;
17325 void modeChanged([in] ::com::sun::star::util::ModeChangeEvent rSource);
17327 published interface XModifyListener {
17328 interface ::com::sun::star::lang::XEventListener;
17329 void modified([in] ::com::sun::star::lang::EventObject aEvent);
17331 published interface XPropertyReplace {
17332 interface ::com::sun::star::util::XReplaceDescriptor;
17333 boolean getValueSearch();
17334 void setValueSearch([in] boolean bValueSearch);
17335 sequence< ::com::sun::star::beans::PropertyValue > getSearchAttributes();
17336 void setSearchAttributes([in] sequence< ::com::sun::star::beans::PropertyValue > aSearchAttribs) raises (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::IllegalArgumentException);
17337 sequence< ::com::sun::star::beans::PropertyValue > getReplaceAttributes();
17338 void setReplaceAttributes([in] sequence< ::com::sun::star::beans::PropertyValue > aSearchAttribs) raises (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::IllegalArgumentException);
17340 published interface XRefreshListener {
17341 interface ::com::sun::star::lang::XEventListener;
17342 void refreshed([in] ::com::sun::star::lang::EventObject rEvent);
17344 published interface XStringWidth {
17345 interface ::com::sun::star::uno::XInterface;
17346 long queryStringWidth([in] string aString);
17348 published interface XUniqueIDFactory {
17349 interface ::com::sun::star::uno::XInterface;
17350 string createUniqueID();
17352 published singleton theOfficeInstallationDirectories: ::com::sun::star::util::XOfficeInstallationDirectories;
17353 published singleton thePathSettings: ::com::sun::star::util::XPathSettings;
17355 module view {
17356 published constants DocumentZoomType {
17357 const short BY_VALUE = 3;
17358 const short ENTIRE_PAGE = 2;
17359 const short OPTIMAL = 0;
17360 const short PAGE_WIDTH = 1;
17361 const short PAGE_WIDTH_EXACT = 4;
17363 published enum PaperFormat {
17364 A3 = 0,
17365 A4 = 1,
17366 A5 = 2,
17367 B4 = 3,
17368 B5 = 4,
17369 LETTER = 5,
17370 LEGAL = 6,
17371 TABLOID = 7,
17372 USER = 8
17374 published enum PrintableState {
17375 JOB_STARTED = 0,
17376 JOB_COMPLETED = 1,
17377 JOB_SPOOLED = 2,
17378 JOB_ABORTED = 3,
17379 JOB_FAILED = 4,
17380 JOB_SPOOLING_FAILED = 5
17382 published struct PrintJobEvent: ::com::sun::star::lang::EventObject {
17383 ::com::sun::star::view::PrintableState State;
17385 published service PrintOptions {
17386 [property] short CopyCount;
17387 [property] string FileName;
17388 [property] boolean Collate;
17389 /** @deprecated */ [property] boolean Sort;
17390 [property] string Pages;
17391 [property, optional] boolean Wait;
17392 [property, optional] short DuplexMode;
17393 [property, optional] string PrinterName;
17394 [property, optional] boolean SinglePrintJobs;
17396 published service PrintSettings {
17397 [property] boolean PrintBlackFonts;
17398 [property] boolean PrintControls;
17399 [property] boolean PrintDrawings;
17400 [property] boolean PrintGraphics;
17401 [property] boolean PrintLeftPages;
17402 [property] boolean PrintRightPages;
17403 [property] boolean PrintTables;
17404 [property] boolean PrintReversed;
17405 [property] boolean PrintProspect;
17406 [property] boolean PrintPageBackground;
17407 [property] short PrintAnnotationMode;
17409 published struct PrintableStateEvent: ::com::sun::star::lang::EventObject {
17410 ::com::sun::star::view::PrintableState State;
17412 published service PrinterDescriptor {
17413 [property] string Name;
17414 [property] ::com::sun::star::view::PaperOrientation PaperOrientation;
17415 [property] ::com::sun::star::view::PaperFormat PaperFormat;
17416 [property] ::com::sun::star::awt::Size PaperSize;
17417 [property, readonly] boolean IsBusy;
17418 [property, readonly] boolean CanSetPaperOrientation;
17419 [property, readonly] boolean CanSetPaperFormat;
17420 [property, readonly] boolean CanSetPaperSize;
17422 published service RenderDescriptor {
17423 [property] ::com::sun::star::awt::Size PageSize;
17425 published service RenderOptions {
17426 [property] ::com::sun::star::awt::XDevice RenderDevice;
17427 [property, optional] boolean IsFirstPage;
17428 [property, optional] boolean IsLastPage;
17429 [property, optional] boolean IsSkipEmptyPages;
17430 [property, optional] string PageRange;
17432 published service ViewSettings {
17433 interface ::com::sun::star::beans::XPropertySet;
17434 [property, optional] boolean ShowHoriRuler;
17435 [property, optional] boolean ShowHoriScrollBar;
17436 [property, optional] short ZoomValue;
17437 [property, optional] boolean ShowVertRuler;
17438 [property, optional] boolean ShowVertScrollBar;
17440 published interface XLineCursor {
17441 interface ::com::sun::star::uno::XInterface;
17442 boolean isAtStartOfLine();
17443 boolean isAtEndOfLine();
17444 void gotoEndOfLine([in] boolean bExpand);
17445 void gotoStartOfLine([in] boolean bExpand);
17447 published interface XPrintJob {
17448 interface ::com::sun::star::uno::XInterface;
17449 sequence< ::com::sun::star::beans::PropertyValue > getPrintOptions();
17450 sequence< ::com::sun::star::beans::PropertyValue > getPrinter();
17451 ::com::sun::star::view::XPrintable getPrintable();
17452 void cancelJob();
17454 published interface XPrintJobListener {
17455 interface ::com::sun::star::lang::XEventListener;
17456 void printJobEvent([in] ::com::sun::star::view::PrintJobEvent Event);
17458 published interface XPrintableListener;
17459 published interface XPrintableBroadcaster {
17460 interface ::com::sun::star::uno::XInterface;
17461 void addPrintableListener([in] ::com::sun::star::view::XPrintableListener xListener);
17462 void removePrintableListener([in] ::com::sun::star::view::XPrintableListener xListener);
17464 published interface XPrintableListener {
17465 interface ::com::sun::star::lang::XEventListener;
17466 void stateChanged([in] ::com::sun::star::view::PrintableStateEvent Event);
17468 published interface XRenderable {
17469 interface ::com::sun::star::uno::XInterface;
17470 long getRendererCount([in] any aSelection, [in] sequence< ::com::sun::star::beans::PropertyValue > xOptions) raises (::com::sun::star::lang::IllegalArgumentException);
17471 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);
17472 void render([in] long nRenderer, [in] any aSelection, [in] sequence< ::com::sun::star::beans::PropertyValue > xOptions) raises (::com::sun::star::lang::IllegalArgumentException);
17474 published interface XViewCursor {
17475 interface ::com::sun::star::uno::XInterface;
17476 boolean goDown([in] short nCount, [in] boolean bExpand);
17477 boolean goUp([in] short nCount, [in] boolean bExpand);
17478 boolean goLeft([in] short nCount, [in] boolean bExpand);
17479 boolean goRight([in] short nCount, [in] boolean bExpand);
17482 module xml {
17483 published service AttributeContainer {
17484 interface ::com::sun::star::container::XNameContainer;
17486 published struct AttributeData {
17487 string Namespace;
17488 string Type;
17489 string Value;
17491 published interface XExportFilter {
17492 interface ::com::sun::star::uno::XInterface;
17493 boolean exporter([in] sequence< ::com::sun::star::beans::PropertyValue > aSourceData, [in] sequence< string > msUserData) raises (::com::sun::star::lang::IllegalArgumentException);
17495 module sax {
17496 published interface XAttributeList;
17497 published interface XLocator;
17498 published interface XDocumentHandler {
17499 interface ::com::sun::star::uno::XInterface;
17500 void startDocument() raises (::com::sun::star::xml::sax::SAXException);
17501 void endDocument() raises (::com::sun::star::xml::sax::SAXException);
17502 void startElement([in] string aName, [in] ::com::sun::star::xml::sax::XAttributeList xAttribs) raises (::com::sun::star::xml::sax::SAXException);
17503 void endElement([in] string aName) raises (::com::sun::star::xml::sax::SAXException);
17504 void characters([in] string aChars) raises (::com::sun::star::xml::sax::SAXException);
17505 void ignorableWhitespace([in] string aWhitespaces) raises (::com::sun::star::xml::sax::SAXException);
17506 void processingInstruction([in] string aTarget, [in] string aData) raises (::com::sun::star::xml::sax::SAXException);
17507 void setDocumentLocator([in] ::com::sun::star::xml::sax::XLocator xLocator) raises (::com::sun::star::xml::sax::SAXException);
17510 published service ExportFilter {
17511 interface ::com::sun::star::xml::sax::XDocumentHandler;
17512 interface ::com::sun::star::xml::XExportFilter;
17514 published interface XImportFilter {
17515 interface ::com::sun::star::uno::XInterface;
17516 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);
17518 published service ImportFilter {
17519 interface ::com::sun::star::xml::XImportFilter;
17521 published service NamespaceContainer {
17522 interface ::com::sun::star::container::XNameContainer;
17524 published service TextUserDefinedAttributesSupplier {
17525 [property] ::com::sun::star::container::XNameContainer TextUserDefinedAttributes;
17527 published service XMLExportFilter {
17528 service ::com::sun::star::document::ExportFilter;
17530 published service XMLImportFilter {
17531 service ::com::sun::star::document::ImportFilter;
17532 interface ::com::sun::star::xml::sax::XDocumentHandler;
17534 module sax {
17535 published struct InputSource {
17536 ::com::sun::star::io::XInputStream aInputStream;
17537 string sEncoding;
17538 string sPublicId;
17539 string sSystemId;
17541 published interface XDTDHandler;
17542 published interface XEntityResolver;
17543 published interface XErrorHandler;
17544 published interface XParser {
17545 interface ::com::sun::star::uno::XInterface;
17546 void parseStream([in] ::com::sun::star::xml::sax::InputSource aInputSource) raises (::com::sun::star::xml::sax::SAXException, ::com::sun::star::io::IOException);
17547 void setDocumentHandler([in] ::com::sun::star::xml::sax::XDocumentHandler xHandler);
17548 void setErrorHandler([in] ::com::sun::star::xml::sax::XErrorHandler xHandler);
17549 void setDTDHandler([in] ::com::sun::star::xml::sax::XDTDHandler xHandler);
17550 void setEntityResolver([in] ::com::sun::star::xml::sax::XEntityResolver xResolver);
17551 void setLocale([in] ::com::sun::star::lang::Locale locale);
17553 published service Parser: ::com::sun::star::xml::sax::XParser;
17554 published exception SAXInvalidCharacterException: ::com::sun::star::xml::sax::SAXException {
17556 published exception SAXParseException: ::com::sun::star::xml::sax::SAXException {
17557 string PublicId;
17558 string SystemId;
17559 long LineNumber;
17560 long ColumnNumber;
17562 published interface XExtendedDocumentHandler {
17563 interface ::com::sun::star::xml::sax::XDocumentHandler;
17564 void startCDATA() raises (::com::sun::star::xml::sax::SAXException);
17565 void endCDATA() raises (::com::sun::star::xml::sax::SAXException);
17566 void comment([in] string sComment) raises (::com::sun::star::xml::sax::SAXException);
17567 void allowLineBreak() raises (::com::sun::star::xml::sax::SAXException);
17568 void unknown([in] string sString) raises (::com::sun::star::xml::sax::SAXException);
17570 published interface XAttributeList {
17571 interface ::com::sun::star::uno::XInterface;
17572 short getLength();
17573 string getNameByIndex([in] short i);
17574 string getTypeByIndex([in] short i);
17575 string getTypeByName([in] string aName);
17576 string getValueByIndex([in] short i);
17577 string getValueByName([in] string aName);
17579 published interface XDTDHandler {
17580 interface ::com::sun::star::uno::XInterface;
17581 void notationDecl([in] string sName, [in] string sPublicId, [in] string sSystemId);
17582 void unparsedEntityDecl([in] string sName, [in] string sPublicId, [in] string sSystemId, [in] string sNotationName);
17584 published interface XEntityResolver {
17585 interface ::com::sun::star::uno::XInterface;
17586 ::com::sun::star::xml::sax::InputSource resolveEntity([in] string sPublicId, [in] string sSystemId);
17588 published interface XErrorHandler {
17589 interface ::com::sun::star::uno::XInterface;
17590 void error([in] any aSAXParseException) raises (::com::sun::star::xml::sax::SAXException);
17591 void fatalError([in] any aSAXParseException) raises (::com::sun::star::xml::sax::SAXException);
17592 void warning([in] any aSAXParseException) raises (::com::sun::star::xml::sax::SAXException);
17594 published interface XLocator {
17595 interface ::com::sun::star::uno::XInterface;
17596 long getColumnNumber();
17597 long getLineNumber();
17598 string getPublicId();
17599 string getSystemId();