Files
otclient/modules/game_market/ui/marketoffers/itemdetails.otui
BeniS bacb324f9e Work on the Market Interface (feel free to test it out so far, can't purchase items through the UI yet), More on UITable (needs work on headers still).
* Tables can now have headers (the layouts will require some more work before read to be used formally).
* Finished Market offers display, Item details display, and Item statistics display.
* Added getSelectedWidget to UIRadioGroup class.

Market TODO:
* Create buy/sell offer.
* Purchase sale offer or accept purchase offer.
* More item filtering features (weapons, types, depot only, vocation, etc).
* Item searching feature.
* View your offers (history/current).
* UI touch ups and optimizations.
2012-07-23 02:02:01 +12:00

55 lines
1.2 KiB
Plaintext

DetailsTableRow < TableRow
font: verdana-11px-monochrome
background-color: alpha
focusable: true
color: #cccccc
height: 45
focusable: false
padding: 2
DetailsTableColumn < TableColumn
font: verdana-11px-monochrome
background-color: alpha
text-offset: 5 2
color: #cccccc
width: 80
focusable: false
Panel
background-color: #22283399
margin: 1
Table
id: detailsTable
anchors.top: parent.top
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.right: parent.right
margin-top: 55
margin-left: 6
margin-bottom: 45
margin-right: 6
padding: 1
focusable: false
background-color: #222833
border-width: 1
border-color: #191f27
table-data: detailsTableData
row-style: DetailsTableRow
column-style: DetailsTableColumn
TableData
id: detailsTableData
anchors.top: detailsTable.top
anchors.bottom: detailsTable.bottom
anchors.left: detailsTable.left
anchors.right: detailsTable.right
vertical-scrollbar: detailsTableScrollBar
VerticalScrollBar
id: detailsTableScrollBar
anchors.top: detailsTable.top
anchors.bottom: detailsTable.bottom
anchors.right: detailsTable.right
step: 28
pixels-scroll: true