mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-02-19 17:50:47 +00:00
* DBModeler/GNUmakefile: Add ConsistencyResults.gsmarkup. * DBModeler/ConsistencyResults.m: Use gsmarkup file. * DBModeler/Resources/ConsistencyResults.gorm: Remove file. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@26519 72102866-910b-0410-8b05-ffd578937521
27 lines
840 B
XML
27 lines
840 B
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE gsmarkup>
|
|
<gsmarkup>
|
|
|
|
<objects>
|
|
<panel id="resultsPanel" title="Consistency Results">
|
|
<vbox>
|
|
<scrollView width="500" height="200">
|
|
<textView id="resultsTextView"></textView>
|
|
</scrollView>
|
|
<hbox halign="right">
|
|
<button id="cancelBut" title="Cancel"
|
|
target="#NSOwner" action="cancel:" />
|
|
<button id="okBut" title="Ok" target="#NSOwner" action="ok:" />
|
|
</hbox>
|
|
</vbox>
|
|
</panel>
|
|
</objects>
|
|
|
|
<connectors>
|
|
<outlet source="#NSOwner" target="#resultsPanel" key="panel" />
|
|
<outlet source="#NSOwner" target="#okBut" key="okButton" />
|
|
<outlet source="#NSOwner" target="#cancelBut" key="cancelButton" />
|
|
<outlet source="#NSOwner" target="#resultsTextView" key="results" />
|
|
</connectors>
|
|
|
|
</gsmarkup>
|