1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
<?xml version="1.0"?>
<!DOCTYPE gsmarkup>
<gsmarkup>
<objects>
<window id="window" title="Inspector" width="268.0" resizable="no" autosaveName="Inspector" visible="no">
<vbox height="387">
<box topPadding="0" bottomPadding="3" leftPadding="4" rightPadding="4" width="260">
<grid>
<gridRow>
<label halign="right" selectable="no">Batch Faulting Size:</label>
<textField id="batchFaultingSizeText" delegate="#NSOwner"></textField>
</gridRow>
<gridRow>
<label halign="right" selectable="no">External Query:</label>
<textField id="externalQueryText" delegate="#NSOwner"
toolTip="Any valid SQL statement that you want to be executed when unqualified fetches are performed on the entity."></textField>
</gridRow>
<gridRow>
<label halign="right" selectable="no">Qualifier:</label>
<textField id="qualifierText" delegate="#NSOwner"></textField>
</gridRow>
</grid>
</box>
<box title="Parent" topPadding="0" bottomPadding="0" leftPadding="4" rightPadding="4">
<vbox>
<scrollView hasHorizontalScroller="no" valign="expand">
<tableView id="parentTableView" usesAlternatingRowBackgroundColors="yes" drawsGrid="yes"
allowsEmptySelection="no" allowsColumnSelection="no" target="#NSOwner" action="tableViewClicked:">
<tableColumn editable="no" identifier="selected" title="" minWidth="16" maxWidth="16" width="16"/>
<tableColumn editable="no" identifier="name" title="Entity Name" minWidth="85"/>
<tableColumn editable="no" identifier="className" title="Class" minWidth="85"/>
</tableView>
</scrollView>
<button id="parentButton" type="toggle" halign="right" title="Set Parent"
alternateTitle="Unset Parent"
target="#NSOwner" action="parentButtonClicked:" />
</vbox>
</box>
<box title="Options" topPadding="0" leftPadding="4" rightPadding="4" width="260">
<grid>
<gridRow>
<button halign="left" title="Read Only" type="switch"
action="readOnlyClicked:" target="#NSOwner" id="readOnlySwitch" />
</gridRow>
<gridRow>
<button halign="left" title="Cache in Memory" type="switch"
action="cacheClicked:" target="#NSOwner" id="cacheSwitch" />
</gridRow>
<gridRow>
<button halign="left" title="Abstract" type="switch"
action="abstractClicked:" target="#NSOwner" id="abstactSwitch" />
</gridRow>
</grid>
</box>
</vbox>
</window>
</objects>
<connectors>
<outlet source="#NSOwner" target="#window" key="window"/>
<outlet source="#NSOwner" target="#batchFaultingSizeText" key="batchFaultingSizeText"/>
<outlet source="#NSOwner" target="#externalQueryText" key="externalQueryText"/>
<outlet source="#NSOwner" target="#qualifierText" key="qualifierText"/>
<outlet source="#NSOwner" target="#parentTableView" key="parentTableView"/>
<outlet source="#NSOwner" target="#parentButton" key="parentButton"/>
<outlet source="#NSOwner" target="#readOnlySwitch" key="readOnlySwitch"/>
<outlet source="#NSOwner" target="#cacheSwitch" key="cacheSwitch"/>
<outlet source="#NSOwner" target="#abstactSwitch" key="abstactSwitch"/>
</connectors>
</gsmarkup>
|