mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-11-04 15:50:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			60 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include <scwx/qt/types/text_event_key.hpp>
 | 
						|
#include <scwx/common/geographic.hpp>
 | 
						|
 | 
						|
#include <memory>
 | 
						|
 | 
						|
#include <QAbstractTableModel>
 | 
						|
 | 
						|
namespace scwx
 | 
						|
{
 | 
						|
namespace qt
 | 
						|
{
 | 
						|
namespace model
 | 
						|
{
 | 
						|
 | 
						|
class PlacefileModelImpl;
 | 
						|
 | 
						|
class PlacefileModel : public QAbstractTableModel
 | 
						|
{
 | 
						|
public:
 | 
						|
   enum class Column : int
 | 
						|
   {
 | 
						|
      Enabled    = 0,
 | 
						|
      Thresholds = 1,
 | 
						|
      Placefile  = 2
 | 
						|
   };
 | 
						|
 | 
						|
   explicit PlacefileModel(QObject* parent = nullptr);
 | 
						|
   ~PlacefileModel();
 | 
						|
 | 
						|
   int rowCount(const QModelIndex& parent = QModelIndex()) const override;
 | 
						|
   int columnCount(const QModelIndex& parent = QModelIndex()) const override;
 | 
						|
 | 
						|
   Qt::ItemFlags flags(const QModelIndex& index) const override;
 | 
						|
 | 
						|
   QVariant data(const QModelIndex& index,
 | 
						|
                 int                role = Qt::DisplayRole) const override;
 | 
						|
   QVariant headerData(int             section,
 | 
						|
                       Qt::Orientation orientation,
 | 
						|
                       int             role = Qt::DisplayRole) const override;
 | 
						|
 | 
						|
   bool setData(const QModelIndex& index,
 | 
						|
                const QVariant&    value,
 | 
						|
                int                role = Qt::EditRole) override;
 | 
						|
 | 
						|
public slots:
 | 
						|
   void HandlePlacefileRemoved(const std::string& name);
 | 
						|
   void HandlePlacefileRenamed(const std::string& oldName,
 | 
						|
                               const std::string& newName);
 | 
						|
   void HandlePlacefileUpdate(const std::string& name);
 | 
						|
 | 
						|
private:
 | 
						|
   friend class PlacefileModelImpl;
 | 
						|
   std::unique_ptr<PlacefileModelImpl> p;
 | 
						|
};
 | 
						|
 | 
						|
} // namespace model
 | 
						|
} // namespace qt
 | 
						|
} // namespace scwx
 |