mirror of
				https://github.com/edubart/otclient.git
				synced 2025-11-04 12:46:22 +01:00 
			
		
		
		
	* Can now create market offers with fully working UI. * All filtering is now completed (just need to finish word searching). * Added some user friendly features to offer selections and item displays (show amount in depot). * Some more UI ascetics. * Some other minor market fixes. TODO: * Finishing applying changes for latest module updates by edubart. * Finish buying/selling existing offers. * Word searching items. * Offer management. * Full cipsoft tibia testing.
		
			
				
	
	
		
			104 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
StatsTableRow < TableRow
 | 
						|
  font: verdana-11px-monochrome
 | 
						|
  background-color: alpha
 | 
						|
  focusable: true
 | 
						|
  color: #cccccc
 | 
						|
  height: 20
 | 
						|
  focusable: false
 | 
						|
 | 
						|
StatsTableColumn < TableColumn
 | 
						|
  font: verdana-11px-monochrome
 | 
						|
  background-color: alpha
 | 
						|
  text-offset: 5 0
 | 
						|
  color: #cccccc
 | 
						|
  width: 110
 | 
						|
  focusable: false
 | 
						|
 | 
						|
Panel
 | 
						|
  background-color: #22283399
 | 
						|
  margin: 1
 | 
						|
 | 
						|
  Label
 | 
						|
    !text: tr('Buy Offers')
 | 
						|
    font: verdana-11px-rounded
 | 
						|
    text-offset: 0 2
 | 
						|
    anchors.top: parent.top
 | 
						|
    anchors.left: parent.left
 | 
						|
    anchors.right: parent.right
 | 
						|
    margin-top: 44
 | 
						|
    margin-left: 6
 | 
						|
 | 
						|
  Table
 | 
						|
    id: buyStatsTable
 | 
						|
    anchors.top: prev.bottom
 | 
						|
    anchors.left: prev.left
 | 
						|
    anchors.right: prev.right
 | 
						|
    margin-top: 6
 | 
						|
    margin-bottom: 5
 | 
						|
    margin-right: 6
 | 
						|
    height: 121
 | 
						|
    padding: 1
 | 
						|
    focusable: false
 | 
						|
    background-color: #222833
 | 
						|
    border-width: 1
 | 
						|
    border-color: #191f27
 | 
						|
    table-data: buyStatsTableData
 | 
						|
    row-style: StatsTableRow
 | 
						|
    column-style: StatsTableColumn
 | 
						|
 | 
						|
  TableData
 | 
						|
    id: buyStatsTableData
 | 
						|
    anchors.top: buyStatsTable.top
 | 
						|
    anchors.bottom: buyStatsTable.bottom
 | 
						|
    anchors.left: buyStatsTable.left
 | 
						|
    anchors.right: buyStatsTable.right
 | 
						|
    vertical-scrollbar: buyStatsTableScrollBar
 | 
						|
 | 
						|
  VerticalScrollBar
 | 
						|
    id: buyStatsTableScrollBar
 | 
						|
    anchors.top: buyStatsTable.top
 | 
						|
    anchors.bottom: buyStatsTable.bottom
 | 
						|
    anchors.right: buyStatsTable.right
 | 
						|
    step: 28
 | 
						|
    pixels-scroll: true
 | 
						|
 | 
						|
  Label
 | 
						|
    !text: tr('Sell Offers')
 | 
						|
    font: verdana-11px-rounded
 | 
						|
    text-offset: 0 2
 | 
						|
    anchors.top: buyStatsTable.bottom
 | 
						|
    anchors.left: parent.left
 | 
						|
    margin-top: 9
 | 
						|
    margin-left: 6
 | 
						|
 | 
						|
  Table
 | 
						|
    id: sellStatsTable
 | 
						|
    anchors.top: prev.bottom
 | 
						|
    anchors.left: buyStatsTable.left
 | 
						|
    anchors.right: buyStatsTable.right
 | 
						|
    margin-top: 6
 | 
						|
    height: 112
 | 
						|
    padding: 1
 | 
						|
    focusable: false
 | 
						|
    background-color: #222833
 | 
						|
    border-width: 1
 | 
						|
    border-color: #191f27
 | 
						|
    table-data: sellStatsTableData
 | 
						|
    row-style: StatsTableRow
 | 
						|
    column-style: StatsTableColumn
 | 
						|
 | 
						|
  TableData
 | 
						|
    id: sellStatsTableData
 | 
						|
    anchors.top: sellStatsTable.top
 | 
						|
    anchors.bottom: sellStatsTable.bottom
 | 
						|
    anchors.left: sellStatsTable.left
 | 
						|
    anchors.right: sellStatsTable.right
 | 
						|
    vertical-scrollbar: sellStatsTableScrollBar
 | 
						|
 | 
						|
  VerticalScrollBar
 | 
						|
    id: sellStatsTableScrollBar
 | 
						|
    anchors.top: sellStatsTable.top
 | 
						|
    anchors.bottom: sellStatsTable.bottom
 | 
						|
    anchors.right: sellStatsTable.right
 | 
						|
    step: 28
 | 
						|
    pixels-scroll: true |