generic one-button message dialog. Used for screenshot and browser help
confirmation and other message boxes. Message and button text are filled in by the calling code.
This commit is contained in:
parent
26f56da5c7
commit
8e281e4f33
1 changed files with 24 additions and 0 deletions
24
gui/dialogs/message.xml
Normal file
24
gui/dialogs/message.xml
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
<!--
|
||||||
|
generic one-button-message; MESSAGE and BUTTONTEXT are
|
||||||
|
to be filled in before displaying. Used for the screenshot
|
||||||
|
message and others.
|
||||||
|
-->
|
||||||
|
<PropertyList>
|
||||||
|
<name>message</name>
|
||||||
|
<modal>true</modal>
|
||||||
|
<layout>vbox</layout>
|
||||||
|
<default-padding>15</default-padding>
|
||||||
|
|
||||||
|
<text>
|
||||||
|
<label>MESSAGE</label>
|
||||||
|
</text>
|
||||||
|
|
||||||
|
<button>
|
||||||
|
<legend>BUTTONTEXT</legend>
|
||||||
|
<default>true</default>
|
||||||
|
<binding>
|
||||||
|
<command>dialog-close</command>
|
||||||
|
</binding>
|
||||||
|
</button>
|
||||||
|
</PropertyList>
|
Loading…
Reference in a new issue