pidgin/plugins/transparency/im.pidgin.Pidgin.plugin.Transparency.gschema.xml

Tue, 02 Jan 2024 00:36:32 -0600

author
Gary Kramlich <grim@reaperworld.com>
date
Tue, 02 Jan 2024 00:36:32 -0600
changeset 42562
f02878f30f91
parent 42188
04c0398f1046
permissions
-rw-r--r--

Create a full widget for the new instant message window

This now uses AdwMessageDialog and is self contained but PidginApplication
manages a singleton of it.

Previously this used the request api. I'm not sure why, as the request fields
were created by the ui itself.

Testing Done:
Created an im with `Echo` on a `demo` account and was able to send and receive messages.

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

<?xml version="1.0" encoding="utf-8"?>
<schemalist>
  <schema path="/pidgin/plugins/transparency/" id="im.pidgin.Pidgin.plugin.Transparency">
    <key name="alpha" type="i">
      <default>255</default>
      <range min="50" max="255"/>
      <summary>Transparency level</summary>
      <description>
        The opacity applied to a window.
      </description>
    </key>

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

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

mercurial