 f05c7194cd
			
		
	
	
		f05c7194cd
		
	
	
	
	
		
			
			This provides some initial functionality for showing peer information, i.e., showing information about other devices that has been discovered. Currently, information is only available in the AP mode (list of associated stations), but this is expected to increase in the future (e.g., show the current AP in station mode, other stations in IBSS, etc.). Furthermore, there will be actions available for doing things like providing a WPS PIN for a station.
		
			
				
	
	
		
			40 lines
		
	
	
	
		
			989 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
	
		
			989 B
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8"?>
 | |
| <ui version="4.0">
 | |
|  <class>Peers</class>
 | |
|  <widget class="QDialog" name="Peers">
 | |
|   <property name="geometry">
 | |
|    <rect>
 | |
|     <x>0</x>
 | |
|     <y>0</y>
 | |
|     <width>400</width>
 | |
|     <height>300</height>
 | |
|    </rect>
 | |
|   </property>
 | |
|   <property name="windowTitle">
 | |
|    <string>Peers</string>
 | |
|   </property>
 | |
|   <layout class="QGridLayout">
 | |
|    <item row="0" column="0">
 | |
|     <widget class="QListView" name="peers">
 | |
|      <property name="sizePolicy">
 | |
|       <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
 | |
|        <horstretch>0</horstretch>
 | |
|        <verstretch>0</verstretch>
 | |
|       </sizepolicy>
 | |
|      </property>
 | |
|      <property name="mouseTracking">
 | |
|       <bool>true</bool>
 | |
|      </property>
 | |
|      <property name="editTriggers">
 | |
|       <set>QAbstractItemView::NoEditTriggers</set>
 | |
|      </property>
 | |
|      <property name="viewMode">
 | |
|       <enum>QListView::IconMode</enum>
 | |
|      </property>
 | |
|     </widget>
 | |
|    </item>
 | |
|   </layout>
 | |
|  </widget>
 | |
|  <resources/>
 | |
|  <connections/>
 | |
| </ui>
 |