mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 16:56:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			578 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			578 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef COMPONENTLISTWIDGET_HPP
 | |
| #define COMPONENTLISTWIDGET_HPP
 | |
| 
 | |
| #include <QListWidget>
 | |
| 
 | |
| class ComponentListWidget : public QListWidget
 | |
| {
 | |
|     Q_OBJECT
 | |
| 
 | |
|     Q_PROPERTY(QStringList mCheckedItems READ checkedItems)
 | |
| 
 | |
| public:
 | |
|     ComponentListWidget(QWidget *parent = 0);
 | |
| 
 | |
|     QStringList mCheckedItems;
 | |
|     QStringList checkedItems();
 | |
| 
 | |
| signals:
 | |
|     void checkedItemsChanged(const QStringList &items);
 | |
| 
 | |
| private slots:
 | |
|     void updateCheckedItems(QListWidgetItem *item);
 | |
|     void updateCheckedItems(const QModelIndex &index, int start, int end);
 | |
| };
 | |
| 
 | |
| #endif // COMPONENTLISTWIDGET_HPP
 |