| 1 |
<?xml version="1.0" encoding="utf-8"?> |
|---|
| 2 |
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" applicationComplete="init()"> |
|---|
| 3 |
<mx:Script source="SQLiteTableEditor.as"/> |
|---|
| 4 |
<mx:Label id="_label1" x="18" y="16" width="80" height="22" text="Table name:"/> |
|---|
| 5 |
<mx:TextInput id="tTable" x="100" y="14" width="280" height="22" text=""/> |
|---|
| 6 |
<mx:Button id="bAddColumn" x="280" y="48" width="48" height="22" label="Add" click="bAddColumn_click(event)"/> |
|---|
| 7 |
<mx:Button id="bDelColumn" x="332" y="48" width="48" height="22" label="Del" click="bDelColumn_click(event)"/> |
|---|
| 8 |
<mx:Label id="_label2" x="18" y="286" width="80" height="22" text="Index name:"/> |
|---|
| 9 |
<mx:TextInput id="tIndex" x="100" y="284" width="280" height="22" text=""/> |
|---|
| 10 |
<mx:Label id="_label3" x="18" y="318" width="140" height="22" text="Table Column:"/> |
|---|
| 11 |
<mx:List id="lTableColumn" x = "18" y = "340" width="140" height="100" dataProvider="{columnList}" dragEnabled="true"/> |
|---|
| 12 |
<mx:Label id="_label4" x="178" y="318" width="140" height="22" text="Index Column:"/> |
|---|
| 13 |
<mx:List id="lIndexColumn" x = "178" y = "340" width="140" height="100" dataProvider="{indexList}" dropEnabled="true" dragEnabled="true" dragMoveEnabled="true"/> |
|---|
| 14 |
<mx:Button id="bCancelColumnIndex" x="328" y="394" width="58" height="22" label="Clear" click="bCancelColumnIndex_click(event)"/> |
|---|
| 15 |
<mx:Button id="bAddIndex" x="328" y="418" width="58" height="22" label="Add" click="bAddIndex_click(event)"/> |
|---|
| 16 |
<mx:Label id="_label5" x="18" y="460" width="140" height="22" text="Index List:"/> |
|---|
| 17 |
<mx:Button id="bDelIndex" x="332" y="455" width="48" height="22" label="Del" click="bDelIndex_click(event)"/> |
|---|
| 18 |
<mx:DataGrid id="dgIndexList" x="18" y="482" width="360" height="100" dataProvider="{indexDefs}"> |
|---|
| 19 |
<mx:columns> |
|---|
| 20 |
<mx:DataGridColumn dataField="name" width="140"/> |
|---|
| 21 |
<mx:DataGridColumn dataField="columns"/> |
|---|
| 22 |
</mx:columns> |
|---|
| 23 |
</mx:DataGrid> |
|---|
| 24 |
<mx:Button id="bCreateTable" x="224" y="592" width="70" height="22" label="Create" click="bCreateTable_click(event)"/> |
|---|
| 25 |
<mx:Button id="bCancel" x="310" y="592" width="70" height="22" label="Cancel" click="bCancel_click(event)"/> |
|---|
| 26 |
</mx:WindowedApplication> |
|---|