pidgin/plugins/transparency/im.pidgin.Pidgin.plugin.Transparency.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 41742
40130f43df93
child 42188
04c0398f1046
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/transparency/" id="im.pidgin.Pidgin.plugin.Transparency">
    <key name="im-enabled" type="b">
      <default>false</default>
      <summary>IM window transparency</summary>
      <description>
        Whether to enable transparency of IM windows.
      </description>
    </key>

    <key name="im-alpha" type="i">
      <default>255</default>
      <range min="0" max="255"/>
      <summary>IM transparency level</summary>
      <description>
        The opacity applied to an IM window.
      </description>
    </key>

    <key name="im-slider" type="b">
      <default>false</default>
      <summary>Show slider bar in IM windows</summary>
      <description>
        Shows a slider bar in IM windows with which the transparency level may
        be modified.
      </description>
    </key>

    <key name="im-solid-onfocus" type="b">
      <default>false</default>
      <summary>Remove IM window transparency on focus</summary>
      <description>
        Whether to make an IM window opaque whenever it has focus.
      </description>
    </key>

    <key name="bl-enabled" type="b">
      <default>false</default>
      <summary>Buddy List window transparency</summary>
      <description>
        Whether to enable transparency of the Buddy List window.
      </description>
    </key>

    <key name="bl-alpha" type="i">
      <default>255</default>
      <range min="0" max="255"/>
      <summary>Buddy List transparency level</summary>
      <description>
        The opacity applied to the Buddy List window.
      </description>
    </key>

    <key name="bl-solid-onfocus" type="b">
      <default>false</default>
      <summary>Remove Buddy List window transparency on focus</summary>
      <description>
        Whether to make the Buddy List window opaque whenever it has focus.
      </description>
    </key>
  </schema>
</schemalist>

mercurial