1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733
|
<?xml version="1.0"?>
<!DOCTYPE psi>
<!--
CONVENTIONS / RULES
===================
Three top-level entries should be observed:
options : This is the catch-all for client options.
accounts : This is used for account data in Psi.
plugins : This is reserved for plugin options and so there's not a terribly good reason to be defining anything in the default option file; it may be interesting for the system defaults file, however.
Naming: All tags should use lower case throughout, please use dashes ("-") to separate words.
Comments: please add a "comment" attribute to every option you add, describing its use and, if appropriate, possible values.
-->
<psi version="defaults">
<options comment="Client options">
<account comment="Default account options">
<domain comment="Always use the same domain to register with. Leave this empty to allow the user to choose his server." type="QString"/>
</account>
<auto-update comment="Auto updater">
<check-on-startup comment="Check for available updates on startup" type="bool">true</check-on-startup>
</auto-update>
<enable-multicast comment="Enable multicasting messages to multiple recipients" type="bool">false</enable-multicast>
<html comment="Hypertext markup options">
<chat comment="HTML in chats">
<render comment="Display received HTML" type="bool">true</render>
</chat>
<muc comment="HTML in group chats">
<render comment="Display received HTML" type="bool">false</render>
</muc>
</html>
<extended-presence comment="Extended presence options">
<notify comment="Get notified of extended presence changes" type="bool">true</notify>
<tune comment="Tune options">
<publish comment="Publish user tune information" type="bool">true</publish>
<url-filter comment="Ignore tune by media file extension" type="QString">avi asf asx mpg mpg2 mpeg mpe mst mp4 flv 3gp mkv wmv swf rv rm rst dat vob ifo ogv</url-filter>
<title-filter comment="Ignore tune by name via RegExp" type="QString"></title-filter>
<controller-filter comment="List of disabled controllers" type="QString"></controller-filter>
</tune>
</extended-presence>
<muc comment="Multi-User Chat options">
<bookmarks comment="Options for bookmarked conference rooms">
<auto-join comment="Automatically join bookmarked conference rooms that are configured for auto-joining." type="bool">true</auto-join>
</bookmarks>
<show-joins comment="Display notices of users joining and leaving conferences" type="bool">true</show-joins>
<show-role-affiliation comment="Include role and affiliation changes in join messages, and display notices of changes" type="bool">true</show-role-affiliation>
<show-status-changes comment="Show status changes in groupchat window" type="bool">true</show-status-changes>
<accept-defaults comment="Automatically accept the default room configuration when a new room is created." type="bool">true</accept-defaults>
<auto-configure comment="Automatically open the configuration dialog when a new room is created. This option only has effect if accept-defaults is false." type="bool">true</auto-configure>
<context comment="Options regarding the context being sent when joining a room">
<maxchars comment="The maximum number of characters of context that should be sent when entering a room. Use a negative number for an unlimited amount." type="int">-1</maxchars>
<maxstanzas comment="The maximum number of context items that should be sent when entering a room. Use a negative number for an unlimited amount." type="int">-1</maxstanzas>
<seconds comment="The maximum number of context seconds that should be sent when entering a room. Use a negative number for an unlimited amount." type="int">-1</seconds>
</context>
<recent-joins>
<jids type="QStringList" />
<maximum comment="The maximum number of recently joined rooms that should be remembered" type="int">10</maximum>
</recent-joins>
<reasons type="QStringList" />
<leave-status-message comment="Leave status message" type="QString"></leave-status-message>
</muc>
<pgp comment="PGP encryption options">
<enable comment="Enable PGP globally" type="bool">true</enable>
</pgp>
<ui comment="User interface options">
<account comment="Account options">
<data-proxy comment="Allow changing the data transfer proxy" type="bool">true</data-proxy>
<keepalive comment="Show the keepalive option" type="bool">true</keepalive>
<legacy-ssl-probe comment="Show legacy SSL probe option" type="bool">true</legacy-ssl-probe>
<manual-host comment="Enable manual host configuration" type="bool">true</manual-host>
<priority comment="Allow changing the priority" type="bool">true</priority>
<privacy comment="Options related to the privacy UI">
<show comment="Show the privacy UI" type="bool">true</show>
</privacy>
<proxy comment="Options related to the proxy UI">
<show comment="Show the proxy UI" type="bool">true</show>
</proxy>
<resource comment="Allow changing the resource" type="bool">true</resource>
<custom-authid comment="Allow changing the authentication identity" type="bool">true</custom-authid>
<security comment="Options related to the seciruty UI">
<show comment="Show the security UI" type="bool">true</show>
</security>
<single comment="Limit the client to a single account" type="bool">false</single>
</account>
<message comment="Message options">
<enabled comment="Enable message (i.e. non-chat) functionality" type="bool">true</enabled>
<auto-grab-urls-from-clipboard type="bool">false</auto-grab-urls-from-clipboard>
<auto-popup type="bool">false</auto-popup>
<auto-popup-headlines type="bool">false</auto-popup-headlines>
<show-character-count type="bool">true</show-character-count>
<show-subjects type="bool">true</show-subjects>
<use-jid-auto-completion type="bool">true</use-jid-auto-completion>
<size type="QString"></size> <!-- will be invalid when converted to QSize so we can detect first load -->
</message>
<chat comment="Chat dialog options">
<theme comment="The theme used for messages rendering" type="QString">psi/classic</theme>
<central-toolbar comment="Have a central toolbar" type="bool">true</central-toolbar>
<size comment="Remembered window size" type="QSize">
</size><!-- will be invalid when converted to QSize so we can detect first load -->
<opacity comment="Opacity percentage of chat dialogs" type="int">100</opacity>
<legacy-formatting comment="This enables legacy usenet-style formatting (// ** __)" type="bool">true</legacy-formatting>
<avatars comment="Avatar options">
<size comment="Maximum size of the avatar" type="int">32</size>
<show comment="Show avatars in the chat dialog" type="bool">true</show>
</avatars>
<alert-for-already-open-chats type="bool">true</alert-for-already-open-chats>
<auto-popup type="bool">false</auto-popup>
<auto-capitalize type="bool">false</auto-capitalize>
<auto-scroll-to-bottom type="bool">true</auto-scroll-to-bottom>
<caption type="QString"></caption>
<delete-contents-after type="QString">never</delete-contents-after>
<raise-chat-windows-on-new-messages type="bool">false</raise-chat-windows-on-new-messages>
<use-chat-says-style type="bool">false</use-chat-says-style>
<use-expanding-line-edit type="bool">false</use-expanding-line-edit>
<use-small-chats type="bool">false</use-small-chats>
<use-message-icons type="bool">true</use-message-icons>
<scaled-message-icons type="bool">false</scaled-message-icons>
<show-status-changes type="bool">true</show-status-changes>
<warn-before-clear type="bool">true</warn-before-clear>
<css type="QString" />
<only-paste-template type="bool">false</only-paste-template>
<disable-paste-send type="bool">false</disable-paste-send>
<hide-when-closing type="bool">false</hide-when-closing>
<status-with-priority comment="Show priority with status change" type="bool">false</status-with-priority>
<log-height type="int">325</log-height>
<chatedit-height type="int">10</chatedit-height>
<default-jid-mode comment="Default jid mode: barejid | auto" type="QString">barejid</default-jid-mode>
<default-jid-mode-ignorelist comment="Default autojid mode ignore list: jid1,jid2,..." type="QString"></default-jid-mode-ignorelist>
</chat>
<save>
<toolbars-state type="QByteArray"/>
<log-width type="int">500</log-width>
<roster-width type="int">180</roster-width>
</save>
<history comment="History dialog options">
<size comment="Remembered window size" type="QSize">
<width>640</width>
<height>480</height>
</size>
</history>
<contactlist comment="Contact list options">
<auto-delete-unlisted comment="Automatically remove an unlisted contact from the contact list if it does not have any pending messages anymore" type="bool">false</auto-delete-unlisted>
<opacity comment="Opacity percentage of the contact list" type="int">100</opacity>
<status-messages comment="Status messages for contacts">
<single-line comment="Show status messages on the same line as the nickname" type="bool">true</single-line>
<show comment="Show status messages" type="bool">false</show>
</status-messages>
<tooltip comment="Display options for the contact list tooltips">
<css type="QString"></css>
<avatar comment="Display avatar" type="bool">true</avatar>
<client-version comment="Display client version information" type="bool">true</client-version>
<geolocation comment="Display geolocation information" type="bool">true</geolocation>
<last-status comment="Display the last status" type="bool">true</last-status>
<pgp comment="Display PGP information in tooltip" type="bool">true</pgp>
</tooltip>
<temp-no-roster-animation comment="Disable animated icons. This option will be removed as soon as the contactlist code is optimized enough" type="bool">false</temp-no-roster-animation>
<account-sort-style type="QString">alpha</account-sort-style>
<css type="QString">/* frame of avatar - general settings */
/* фрейм с аватаром - общие настройки */
RosterAvatarFrame * {
margin: 1px;
}
/* frame of avatar - avatar */
/* фрейм с аватаром - аватар */
QLabel#lb_avatar {
margin-left: 0px;
margin-top: 2px;
margin-bottom: 2px;
border: 1px solid #949494;
border-radius: 3px;
}
/* frame of avatar - nick */
/* фрейм с аватаром - ник */
QLabel#lb_nick {
margin: 2px;
margin-right: 1px;
margin-bottom: 3px;
border: 1px solid #949494;
border-radius: 3px;
}
/* frame of avatar - buttons of PEP and status */
/* фрейм с аватаром - кнопки PEP и статуса */
QToolButton#tb_status, #tb_mood, #tb_activity {
margin-left: 1px;
margin-right: 1px;
margin-bottom: 2px;
width: 100%;
}
QToolButton#tb_status {
margin-top: 0px;
margin-bottom: 1px;
}
/* frame of avatar - button of status, arrow */
/* фрейм с аватаром - кнопка статуса, стрелка */
QToolButton#tb_status::menu-indicator {
image: url();
}
/* frame of avatar - field of status message */
/* фрейм с аватаром - строка статусного сообщения */
QLineEdit#le_status_text {
margin-right: 0px;
margin-bottom: 2px;
}</css>
<always-on-top type="bool">false</always-on-top>
<automatically-resize-roster type="bool">false</automatically-resize-roster>
<grow-roster-upwards type="bool">true</grow-roster-upwards>
<disable-scrollbar type="bool">true</disable-scrollbar>
<contact-sort-style type="QString">status</contact-sort-style>
<disable-service-discovery type="bool">false</disable-service-discovery>
<enable-groups type="bool">true</enable-groups>
<ensure-contact-visible-on-event type="bool">true</ensure-contact-visible-on-event>
<group-sort-style type="QString">alpha</group-sort-style>
<lockdown-roster type="bool">false</lockdown-roster>
<raise-on-new-event type="bool">false</raise-on-new-event>
<quit-on-close type="bool">false</quit-on-close>
<raise-inactive type="bool">true</raise-inactive>
<show-roster-avatar-frame type="bool">false</show-roster-avatar-frame>
<show>
<agent-contacts type="bool">true</agent-contacts>
<away-contacts type="bool">true</away-contacts>
<hidden-contacts-group type="bool">true</hidden-contacts-group>
<offline-contacts type="bool">true</offline-contacts>
<self-contact type="bool">true</self-contact>
</show>
<show-group-counts type="bool">true</show-group-counts>
<show-menubar type="bool">false</show-menubar>
<disable-scrollbar type="bool">true</disable-scrollbar>
<avatars>
<show type="bool">true</show>
<avatars-at-left type="bool">false</avatars-at-left>
<use-default-avatar type="bool">true</use-default-avatar>
<size type="int">24</size>
<radius type="int">5</radius>
</avatars>
<show-mood-icons type="bool">true</show-mood-icons>
<show-activity-icons type="bool">true</show-activity-icons>
<show-geolocation-icons type="bool">true</show-geolocation-icons>
<show-status-icons type="bool">true</show-status-icons>
<status-icon-over-avatar type="bool">false</status-icon-over-avatar>
<show-tune-icons type="bool">true</show-tune-icons>
<show-client-icons type="bool">true</show-client-icons>
<show-all-client-icons type="bool">false</show-all-client-icons>
<toolbars/>
<use-left-click type="bool">false</use-left-click>
<use-single-click type="bool">false</use-single-click>
<use-status-change-animation type="bool">true</use-status-change-animation>
<aio-left-roster type="bool">false</roster-at-left-when-all-in-one-window>
<use-transport-icons type="bool">true</use-transport-icons>
<saved-window-geometry type="QRect" >
<x>64</x>
<y>64</y>
<width>150</width>
<height>360</height>
</saved-window-geometry>
<saved-window-geometry-frame type="QRect" >
<x>0</x>
<y>0</y>
<width>0</width>
<height>0</height>
</saved-window-geometry-frame>
<saved-window-geometry-screen type="int">0</saved-window-geometry-screen>
<saved-window-geometry-maximized type="bool">false</saved-window-geometry-maximized>
<saved-window-geometry-fullscreen type="bool">false</saved-window-geometry-fullscreen>
<roster-avatar-frame comment="Options for roster avatar frame">
<avatar>
<size type="int">52</size>
<margin type="int">0</margin>
</avatar>
</roster-avatar-frame>
</contactlist>
<menu comment="Options for the menu">
<account comment="Options for the account-specific menu">
<admin comment="Show the 'admin' menu" type="bool">true</admin>
</account>
<contact comment="Options for the contact-specific menu">
<active-chats comment="Show the 'active chats' menu" type="bool">true</active-chats>
<custom-picture comment="Show the 'picture' menu" type="bool">true</custom-picture>
<custom-pgp-key comment="Show the 'assign pgp key' menu" type="bool">true</custom-pgp-key>
</contact>
<main comment="Options for the main menu">
<change-profile comment="Show the 'change profile' menu" type="bool">true</change-profile>
</main>
<status comment="Options for the status menu">
<chat comment="Enable free for chat" type="bool">true</chat>
<xa comment="Enable extended away/not available" type="bool">true</xa>
<invisible comment="Enable invisibility" type="bool">false</invisible>
</status>
<view comment="Options for the view menu">
<show-away comment="Show the 'show away/xa' toggle" type="bool">true</show-away>
</view>
</menu>
<muc comment="Multi-User Chat options">
<hide-on-autojoin type="bool">false</hide-on-autojoin>
<userlist comment="Userlist options">
<show-groups type="bool">true</show-groups>
<use-slim-group-headings type="bool">false</use-slim-group-headings>
<nick-coloring type = "bool">true</nick-coloring>
<show-client-icons type = "bool">true</show-client-icons>
<show-affiliation-icons type = "bool">true</show-affiliation-icons>
<contact-sort-style type = "QString">alpha</contact-sort-style>
<show-status-icons type = "bool">true</show-status-icons>
<avatars>
<show type="bool">false</show>
<size type="int">24</size>
<avatars-at-left type="bool">true</avatars-at-left>
<radius type="int">3</radius>
</avatars>
</userlist>
<status-with-priority comment="Show priority with status change" type="bool">false</status-with-priority>
<show-initial-joins comment="Show joins on your MUC join (with status and priority, depends on options)" type="bool">false</show-initial-joins>
<log-width type="int">500</log-width>
<roster-width type="int">80</roster-width>
<roster-at-left type="bool">false</roster-at-left>
<highlight-words type="QStringList" />
<size comment="Remembered window size" type="QSize">
<width>580</width>
<height>420</height>
</size>
<use-highlighting type="bool">true</use-highlighting><use-nick-coloring type="bool">true</use-nick-coloring><use-hash-nick-coloring type="bool">true</use-hash-nick-coloring><colored-history type="bool">true</colored-history>
</muc>
<show-deprecated comment="Deprecated functionality or protocols">
<service-discovery comment="Service discovery dialog">
<protocol-selector comment="Show the iq:browse and iq:agents service discovery protocol selector." type="bool">false</protocol-selector>
</service-discovery>
</show-deprecated>
<spell-check comment="Options related to the spell checker">
<enabled comment="Whether the spell checker is enabled" type="bool">true</enabled>
</spell-check>
<disable-send-button type="bool">false</disable-send-button>
<systemtray comment="Options related to the system tray">
<use-old comment="Use the old system tray code (deprecated)" type="bool">false</use-old>
<enable type="bool">true</enable>
<use-double-click type="bool">false</use-double-click>
</systemtray>
<tip comment="Tip of the day options">
<show comment="Show the tip of the day upon startup" type="bool">true</show>
<number comment="The next tip to show" type="int">0</number>
</tip>
<flash-windows comment="Allow windows to flash upon activity" type="bool">true</flash-windows>
<automatically-copy-selected-text type="bool">false</automatically-copy-selected-text>
<emoticons>
<use-emoticons type="bool">true</use-emoticons>
</emoticons>
<file-transfer>
<auto-popup type="bool">false</auto-popup>
</file-transfer>
<last-used-open-path type="QString"></last-used-open-path>
<last-used-save-path type="QString"></last-used-save-path>
<look>
<colors>
<contactlist>
<background type="QColor"/>
<grouping>
<header-background type="QColor">#f0f0f0</header-background>
<header-foreground type="QColor">#5a5a5a</header-foreground>
</grouping>
<profile>
<header-background type="QColor">#969696</header-background>
<header-foreground type="QColor">#ffffff</header-foreground>
</profile>
<status>
<away type="QColor">#004bb4</away>
<do-not-disturb type="QColor">#7e0000</do-not-disturb>
<offline type="QColor">#646464</offline>
<online type="QColor"/>
</status>
<status-change-animation1 type="QColor">#000000</status-change-animation1>
<status-change-animation2 type="QColor">#969696</status-change-animation2>
<status-messages type="QColor">#808080</status-messages>
</contactlist>
<tooltip>
<enable comment="Enable tooltip coloring feature" type="bool">true</enable>
<background comment="Tooltip background color" type="QColor">#e9ecc7</background>
<text comment="Tooltip text color" type="QColor">#000000</text>
</tooltip>
<muc>
<nick-colors type="QStringList" >
<item>Blue</item>
<item>Green</item>
<item>Orange</item>
<item>Purple</item>
<item>Red</item>
</nick-colors>
<role-moderator type="QColor">#910000</role-moderator>
<role-participant type="QColor">#00008a</role-participant>
<role-visitor type="QColor">#336600</role-visitor>
<role-norole type="QColor">black</role-norole>
</muc>
<messages comment="Message coloring.">
<received type="QColor" comment="Color used to indicate received messages.">#0000ff</received>
<sent type="QColor" comment="Color used to indicate sent messages.">#ff0000</sent>
<informational type="QColor" comment="Color used to indicate informational (status change, spooled) messages.">#008000</informational>
<usertext type="QColor" comment="Color used to indicate additional text for informational messages.">#606060</usertext>
<highlighting type="QColor">#FF0000</highlighting>
</messages>
<chat>
<link-color type="QColor">#0000ff</link-color>
<mailto-color type="QColor">#0000ff</mailto-color>
<composing-color type="QColor">darkGreen</composing-color>
<unread-message-color type="QColor">red</unread-message-color>
</chat>
<passive-popup>
<border type="QColor">#5297f9</border>
</passive-popup>
</colors>
<contactlist>
<use-outlined-group-headings type="bool">false</use-outlined-group-headings>
<use-slim-group-headings type="bool">false</use-slim-group-headings>
</contactlist>
<font>
<chat type="QString">Sans Serif,9,-1,5,50,0,0,0,0,0</chat>
<contactlist type="QString">Sans Serif,9,-1,5,50,0,0,0,0,0</contactlist>
<message type="QString">Sans Serif,9,-1,5,50,0,0,0,0,0</message>
<passive-popup type="QString">Sans Serif,7,-1,5,50,0,0,0,0,0</passive-popup>
</font>
<css type="QString" />
</look>
<notifications>
<alert-style type="QString">animate</alert-style>
<bounce-dock type="QString">forever</bounce-dock>
<send-receipts type="bool" >true</send-receipts>
<request-receipts type="bool" >true</request-receipts>
<passive-popups>
<delays>
<chat type="int">5000</chat>
<file type="int">5000</file>
<message type="int">5000</message>
<status type="int">2000</status>
</delays>
<enabled type="bool">false</enabled>
<top-to-bottom type="bool">false</top-to-bottom>
<at-left-corner type="bool">false</at-left-corner>
<css type="QString"></css>
<incoming-chat type="bool">true</incoming-chat>
<composing type="bool">true</composing>
<incoming-file-transfer type="bool">true</incoming-file-transfer>
<incoming-headline type="bool">true</incoming-headline>
<incoming-message type="bool">true</incoming-message>
<notify-every-muc-message type="bool">false</notify-every-muc-message>
<maximum-jid-length type="int">25</maximum-jid-length>
<maximum-text-length type="int">300</maximum-text-length>
<maximum-status-length type="int">-1</maximum-status-length>
<avatar-size type="int">48</avatar-size>
<status>
<offline type="bool">true</offline>
<online type="bool">true</online>
<other-changes type="bool">false</other-changes>
</status>
</passive-popups>
<popup-dialogs>
<suppress-when-not-on-roster type="bool">true</suppress-when-not-on-roster>
<suppress-while-away type="bool">true</suppress-while-away>
</popup-dialogs>
<sounds>
<chat-message type="QString">sound/chat2.wav</chat-message>
<completed-file-transfer type="QString">sound/ft_complete.wav</completed-file-transfer>
<contact-offline type="QString">sound/offline.wav</contact-offline>
<contact-online type="QString">sound/online.wav</contact-online>
<enable type="bool">true</enable>
<incoming-file-transfer type="QString">sound/ft_incoming.wav</incoming-file-transfer>
<incoming-headline type="QString">sound/chat2.wav</incoming-headline>
<incoming-message type="QString">sound/chat2.wav</incoming-message>
<new-chat type="QString">sound/chat1.wav</new-chat>
<notify-every-muc-message type="bool">false</notify-every-muc-message>
<outgoing-chat type="QString">sound/send.wav</outgoing-chat>
<silent-while-away type="bool">false</silent-while-away>
<system-message type="QString">sound/chat2.wav</system-message>
<unix-sound-player type="QString"/>
</sounds>
<successful-subscription type="bool">true</successful-subscription>
</notifications>
<decorate-windows type="bool">true</decorate-windows>
<service-discovery>
<automatically-get-info type="bool">false</automatically-get-info>
<automatically-get-items type="bool">false</automatically-get-items>
<recent-jids type="QStringList" />
</service-discovery>
<tabs>
<show-tab-icons type="bool">true</show-tab-icons>
<disable-wheel-scroll type="bool">false</disable-wheel-scroll>
<can-close-inactive-tab type="bool">true</can-close-inactive-tab>
<show-tab-close-buttons type="bool">true</show-tab-close-buttons>
<put-tabs-at-bottom type="bool">false</put-tabs-at-bottom>
<use-tabs type="bool">true</use-tabs>
<mouse-middle-button type="QString">close</mouse-middle-button>
<mouse-doubleclick-action type="QString">detach</mouse-doubleclick-action>
<size type="QString"></size> <!-- will be invalid when converted to QSize so we can detect first load -->
<grouping type="QString" comment="A ':' separated list of groups of kinds of tabs to keep in the same tabset. 'C' for chat and 'M' for mucs. 'A' means using all in one window patch.">CM</grouping>
<group-state comment="Saved state data of the tabsets defined by options.ui.tabs.grouping"/>
<tab-singles type="QString" comment="Tab types that would have been untabbed are given their own tabset. 'C' for chat and 'M' for mucs"/>
<show-tab-buttons type="bool">true</show-tab-buttons>
</tabs>
</ui>
<shortcuts comment="Shortcuts">
<alist comment="Action List" >
<menu_disco type="QKeySequence" comment="Service Discovery"></menu_disco>
<menu_add_contact type="QKeySequence" comment="Add Contact"></menu_add_contact>
<menu_new_message type="QKeySequence" comment="New Message"></menu_new_message>
<menu_join_groupchat type="QKeySequence" comment="Join Group Chat"></menu_join_groupchat>
<menu_account_setup type="QKeySequence" comment="Account Setup"></menu_account_setup>
<menu_options type="QKeySequence" comment="Options"></menu_options>
<menu_file_transfer type="QKeySequence" comment="File Transfer"></menu_file_transfer>
<menu_toolbars type="QKeySequence" comment="Toolbars"></menu_toolbars>
<menu_xml_console type="QKeySequence" comment="XML Console"></menu_xml_console>
<menu_change_profile type="QKeySequence" comment="Change Profile"></menu_change_profile>
<menu_play_sounds type="QKeySequence" comment="Play Sounds"></menu_play_sounds>
<menu_quit type="QKeySequence" comment="Quit"></menu_quit>
<button_options type="QKeySequence" comment="Options"></button_options>
<button_status type="QKeySequence" comment="Status"></button_status>
<enable_groups type="QKeySequence" comment="Enable Groups"></enable_groups>
<event_notifier type="QKeySequence" comment="Event Notifier"></event_notifier>
<view_groups type="QKeySequence" comment="View Groups"></view_groups>
<show_offline type="QKeySequence" comment="Show Offline Contacts"></show_offline>
<show_away type="QKeySequence" comment="Show Away Contacts"></show_away>
<show_hidden type="QKeySequence" comment="Show Hidden Contacts"></show_hidden>
<show_agents type="QKeySequence" comment="Show Agents"></show_agents>
<show_self type="QKeySequence" comment="Show Self"></show_self>
<show_statusmsg type="QKeySequence" comment="Show Status Message"></show_statusmsg>
<publish_tune type="QKeySequence" comment="Publish Tune"></publish_tune>
<active_contacts type="QKeySequence" comment="Active contacts"/>
<status_all type="QKeySequence" comment="Status All"></status_all>
<status_group type="QKeySequence" comment="Status Group"></status_group>
<status_chat type="QKeySequence" comment="Status Chat"></status_chat>
<status_online type="QKeySequence" comment="Status Online"></status_online>
<status_away type="QKeySequence" comment="Status Away"></status_away>
<status_xa type="QKeySequence" comment="Status XA"></status_xa>
<status_dnd type="QKeySequence" comment="Status DND"></status_dnd>
<status_invisible type="QKeySequence" comment="Status Invisible"></status_invisible>
<status_offline type="QKeySequence" comment="Status Offline"></status_offline>
<choose_status type="QKeySequence" comment="Choose status"></choose_status>
<reconnect_all type="QKeySequence" comment="Reconnect all accounts"></reconnect_all>
<set_mood type="QKeySequence" comment="Set Mood"/>
<set_activity type="QKeySequence" comment="Set Activity"/>
<set_geoloc type="QKeySequence" comment="Set Geolocation"/>
<help_readme type="QKeySequence" comment="README"></help_readme>
<help_tip type="QKeySequence" comment="Tips"></help_tip>
<help_online_forum type="QKeySequence" comment="Psi Forum (Online)"></help_online_forum>
<help_online_help type="QKeySequence" comment="Open Help"></help_online_help>
<help_online_wiki type="QKeySequence" comment="Open Wiki"></help_online_wiki>
<help_online_home type="QKeySequence" comment="Open Home Page"></help_online_home>
<help_psi_muc type="QKeySequence" comment="Help Psi MUC"></help_psi_muc>
<help_report_bug type="QKeySequence" comment="Report Bug"></help_report_bug>
<help_about type="QKeySequence" comment="About Psi"></help_about>
<help_about_psimedia type="QKeySequence"comment="About PsiMedia" />
<help_about_qt type="QKeySequence" comment="About Qt"></help_about_qt>
<help_diag_qcaplugin type="QKeySequence" comment="QCA plugin diag"></help_diag_qcaplugin>
<help_diag_qcakeystore type="QKeySequence" comment="QCA key store diag"></help_diag_qcakeystore>
</alist>
<chat comment="Shortcuts in the chat dialog">
<next-tab type="QVariantList" comment="Switch to the next tab">
<item type="QKeySequence">Ctrl+PgDown</item>
<item type="QKeySequence">Ctrl+Tab</item>
</next-tab>
<previous-tab type="QVariantList" comment="Switch to the previous tab">
<item type="QKeySequence">Ctrl+PgUp</item>
<item type="QKeySequence">Ctrl+Shift+Tab</item>
</previous-tab>
<find-next type="QKeySequence" comment="Find text next"></find-next>
<find-prev type="QKeySequence" comment="Find text previous"></find-prev>
<find type="QKeySequence" comment="Find text">Ctrl+F</find>
<send type="QVariantList" comment="Sends the message">
<item type="QKeySequence">Return</item>
<item type="QKeySequence">Enter</item>
</send>
<clear type="QKeySequence" comment="Clear the text"/>
<quick-command type="QKeySequence" comment="Change to quick command mode">Ctrl+Space</quick-command>
<show-messageLast type="QKeySequence" comment="Show last message" >Alt+Home</show-messageLast>
<show-messageFirst type="QKeySequence" comment="Show first message" >Alt+End</show-messageFirst>
<show-messageNext type="QKeySequence" comment="Show next message" >Ctrl+Down</show-messageNext>
<show-messagePrev type="QKeySequence" comment="Show prev message" >Ctrl+Up</show-messagePrev>
<change-case type="QKeySequence" comment="Change case of letters in the chat edit" >Ctrl+Alt+x</change-case>
<minimize type="QKeySequence" comment="Minimize active chat window"/>
</chat>
<contactlist comment="Shortcuts in the contactlist">
<assign-custom-avatar type="QKeySequence" comment="Assign a custom avatar to the selected contact"/>
<clear-custom-avatar type="QKeySequence" comment="Remove custom avatar from the selected contact"/>
<delete type="QKeySequence" comment="Delete the selected contact">Shift+Del</delete>
<chat type="QKeySequence" comment="Open a chat to the selected contact">Ctrl+C</chat>
<message type="QKeySequence" comment="Send a message to the selected contact">Ctrl+M</message>
<event type="QKeySequence" comment="Receive incoming event">Ctrl+R</event>
<rename type="QKeySequence" comment="Rename the selected contact">F2</rename>
<login-transport type="QKeySequence" comment="Log on to the selected transport">Ctrl+L</login-transport>
</contactlist>
<common comment="Common actions">
<scroll-up type="QKeySequence" comment="Scroll up">Shift+PgUp</scroll-up>
<scroll-down type="QKeySequence" comment="Scroll down">Shift+PgDown</scroll-down>
<close type="QVariantList" comment="Close the current window/tab">
<item type="QKeySequence">Ctrl+Q</item>
<item type="QKeySequence">Ctrl+W</item>
</close>
<hide type="QVariantList" comment="Hide the current window/tab">
<item type="QKeySequence">ESC</item>
<item type="QKeySequence">Alt+H</item>
</hide>
<history type="QKeySequence" comment="Open the message history">Ctrl+H</history>
<user-info type="QKeySequence" comment="Show the user info of the contact">Ctrl+I</user-info>
</common>
<global comment="Shortcuts available from outside of the application">
<event type="QKeySequence" comment="Receive incoming event"/>
<toggle-visibility type="QKeySequence" comment="Show/hide the application"/>
<bring-to-front type="QKeySequence" comment="Bring the application to front"/>
<new-blank-message type="QKeySequence" comment="Send new message"/>
<boss-key type="QKeySequence" comment="Hide all active windows">Ctrl+Alt+B</boss-key>
</global>
<message comment="Shortcuts in the message dialog">
<send type="QVariantList" comment="Send the message">
<item type="QKeySequence">Ctrl+Return</item>
<item type="QKeySequence">Ctrl+Enter</item>
<item type="QKeySequence">Alt+Return</item>
<item type="QKeySequence">Alt+Enter</item>
</send>
</message>
<status comment="Shortcuts in the status dialog">
<set type="QVariantList" comment="Set the status message">
<item type="QKeySequence">Ctrl+Return</item>
<item type="QKeySequence">Ctrl+Enter</item>
<item type="QKeySequence">Alt+Return</item>
<item type="QKeySequence">Alt+Enter</item>
</set>
</status>
<service-discovery comment="Shortcuts in the service discovery dialog"/>
</shortcuts>
<contactlist>
<hide-on-start type="bool">false</hide-on-start>
<resolve-nicks-on-contact-add type="bool">true</resolve-nicks-on-contact-add>
<use-toolwindow type="bool">false</use-toolwindow>
<use-autohide type="bool">false</use-autohide>
<autohide-interval type="int">600</autohide-interval>
</contactlist>
<external-control>
<adhoc-remote-control>
<enable type="bool">false</enable>
</adhoc-remote-control>
</external-control>
<iconsets>
<custom-status/>
<service-status/>
<emoticons type="QStringList" >
<item>default</item>
</emoticons>
<status type="QString">default</status>
<system type="QString">default</system>
<moods type="QString">default</moods>
<clients type="QString">default</clients>
<activities type="QString">default</activities>
<affiliations type="QString">default</affiliations>
</iconsets>
<messages>
<default-outgoing-message-type type="QString">chat</default-outgoing-message-type>
<exclude-muc-from-ignore type="bool">true</exclude-muc-from-ignore>
<force-incoming-message-type type="QString">no</force-incoming-message-type>
<ignore-headlines type="bool">false</ignore-headlines>
<ignore-non-roster-contacts type="bool">false</ignore-non-roster-contacts>
<send-composing-events type="bool">true</send-composing-events>
<send-inactivity-events type="bool">false</send-inactivity-events>
<dont-send-composing-events type="bool">false</dont-send-composing-events>
</messages>
<p2p>
<bytestreams>
<external-address type="QString"/>
<listen-port type="int">8010</listen-port>
</bytestreams>
</p2p>
<service-discovery>
<enable-entity-capabilities type="bool">true</enable-entity-capabilities>
<last-activity type="bool">true</last-activity>
</service-discovery>
<status>
<ask-for-message-on-offline type="bool">false</ask-for-message-on-offline>
<ask-for-message-on-online type="bool">false</ask-for-message-on-online>
<ask-for-message-on-chat type="bool">true</ask-for-message-on-chat>
<ask-for-message-on-away type="bool">true</ask-for-message-on-away>
<ask-for-message-on-xa type="bool">true</ask-for-message-on-xa>
<ask-for-message-on-dnd type="bool">true</ask-for-message-on-dnd>
<auto-away>
<away-after type="int">10</away-after>
<force-priority type="bool">false</force-priority>
<force-xa-priority type="bool">false</force-xa-priority>
<not-availible-after type="int">30</not-availible-after>
<offline-after type="int">0</offline-after>
<use-away type="bool">true</use-away>
<use-not-availible type="bool">true</use-not-availible>
<use-offline type="bool">false</use-offline>
</auto-away>
<last-message comment="Last status message" type="QString"/>
<last-priority comment="Last priority" type="QString"/>
<last-status comment="Last status" type="QString">away</last-status>
<last-overwrite>
<by-template type="bool">true</by-template>
<by-status type="bool">false</by-status>
</last-overwrite>
<presets/>
<presets-in-status-menus type="QString" comment="'yes', 'no' or 'submenu'">submenu</presets-in-status-menus>
<show-only-online-offline type="bool">false</show-only-online-offline>
<show-choose type="bool">true</show-choose>
<show-edit-presets type="bool">true</show-edit-presets>
<show-reconnect comment="Show Reconnect in status menus" type="bool">false</show-reconnect>
<default-priority>
<online type="int">50</online>
<chat type="int">50</chat>
<away type="int">40</away>
<xa type="int">30</xa>
<dnd type="int">20</dnd>
<invisible type="int">10</invisible>
</default-priority>
</status>
<subscriptions>
<automatically-allow-authorization type="bool">false</automatically-allow-authorization>
</subscriptions>
<vcard>
<query-own-vcard-on-login type="bool">true</query-own-vcard-on-login>
</vcard>
<xml-console>
<enable-at-login type="bool">false</enable-at-login>
</xml-console>
<media>
<devices>
<audio-output type="QString"/>
<audio-input type="QString"/>
<video-input type="QString"/>
</devices>
</media>
</options>
<accounts comment="Account definitions and options"/>
<plugins comment="Plugin options"/>
</psi>
|