pidgin/plugins/notify/im.pidgin.Pidgin.plugin.Notify.gschema.xml

Wed, 26 Oct 2022 02:58:05 -0500

author
Elliott Sales de Andrade <quantum.analyst@gmail.com>
date
Wed, 26 Oct 2022 02:58:05 -0500
changeset 41840
fe350460fb1c
parent 41718
785c4056ce54
permissions
-rw-r--r--

Remove C99-obsoleted constructs

See [this development thread for a future Fedora change](https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/thread/CJXKTLXJUPZ4F2C2VQOTNMEA5JAUPMBD/) or [the proposed change page](https://fedoraproject.org/wiki/Changes/PortingToModernC). These may be made stronger errors in GCC 14.

Testing Done:
Configured with `-Dc_args='-Werror=implicit-int -Werror=implicit-function-declaration -Werror=int-conversion -Werror=strict-prototypes -Werror=old-style-definition'` and compiled.

Reviewed at https://reviews.imfreedom.org/r/1974/

<?xml version="1.0" encoding="utf-8"?>
<schemalist>
  <schema path="/pidgin/plugins/notify/" id="im.pidgin.Pidgin.plugin.Notify">
    <key name="type-im" type="b">
      <default>true</default>
      <summary>Notify IMs</summary>
      <description>
        Notify for IM windows.
      </description>
    </key>

    <key name="type-im-sys" type="b">
      <default>false</default>
      <summary>Notify IM system messages</summary>
      <description>
        Notify for system messages in IM windows.
      </description>
    </key>

    <key name="type-chat" type="b">
      <default>false</default>
      <summary>Notify chats</summary>
      <description>
        Notify for chat windows.
      </description>
    </key>

    <key name="type-chat-nick" type="b">
      <default>false</default>
      <summary>Notify for username only</summary>
      <description>
        Notify for chat windows only when someone says your username.
      </description>
    </key>

    <key name="type-chat-sys" type="b">
      <default>false</default>
      <summary>Notify chat system messages</summary>
      <description>
        Notify for system messages in chat windows.
      </description>
    </key>

    <key name="type-focused" type="b">
      <default>false</default>
      <summary>Notify focused windows</summary>
      <description>
        Notify even for focused windows.
      </description>
    </key>

    <key name="method-string" type="b">
      <default>false</default>
      <summary>Notify in window title</summary>
      <description>
        Prepend a string into window title for notification.
      </description>
    </key>

    <key name="title-string" type="s">
      <default>"(*)"</default>
      <summary>Window title prefix</summary>
      <description>
        String to prepend into window title.
      </description>
    </key>

    <key name="method-urgent" type="b">
      <default>false</default>
      <summary>Notify via urgency</summary>
      <description>
        Set window manager "URGENT" hint when on X11. If not on X11, flashes the
        window instead.
      </description>
    </key>

    <key name="method-count" type="b">
      <default>false</default>
      <summary>Notify message count via title</summary>
      <description>
        Insert count of new messages into window title.
      </description>
    </key>

    <key name="method-count-xprop" type="b">
      <default>false</default>
      <summary>Notify message count via X property</summary>
      <description>
        Insert count of new messages into X property (only available on X11).
      </description>
    </key>

    <key name="method-raise" type="b">
      <default>false</default>
      <summary>Raise conversation window</summary>
      <description>
        Notify by requesting that the conversation window is raised.
      </description>
    </key>

    <key name="method-present" type="b">
      <default>false</default>
      <summary>Present conversation window</summary>
      <description>
        Notify by presenting the conversation window.
      </description>
    </key>

    <key name="notify-focus" type="b">
      <default>true</default>
      <summary>Clear on focus</summary>
      <description>
        Remove notification when conversation window gains focus.
      </description>
    </key>

    <key name="notify-click" type="b">
      <default>false</default>
      <summary>Clear on click</summary>
      <description>
        Remove notification when conversation window receives a click.
      </description>
    </key>

    <key name="notify-type" type="b">
      <default>true</default>
      <summary>Clear on type</summary>
      <description>
        Remove notification when typing in conversation window.
      </description>
    </key>

    <key name="notify-send" type="b">
      <default>true</default>
      <summary>Clear on send</summary>
      <description>
        Remove notification when a message gets sent.
      </description>
    </key>

    <key name="notify-switch" type="b">
      <default>true</default>
      <summary>Clear on conversation switch</summary>
      <description>
        Remove notification when window switch to this conversation.
      </description>
    </key>
  </schema>
</schemalist>

mercurial