Use Collator for recipients search (#2426).
[dcpomatic.git] / src / wx / recipients_panel.h
index d224eed1b98251c71c2ae9c8f668ae73118fbcad..6e1f1408ffb6603dd5b821501f5918d1e4bd8dc3 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2015-2020 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2015-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
+#include "lib/collator.h"
 #include "lib/dkdm_recipient.h"
-#include "lib/warnings.h"
-DCPOMATIC_DISABLE_WARNINGS
-#include <wx/wx.h>
+#include <dcp/warnings.h>
+LIBDCP_DISABLE_WARNINGS
 #include <wx/srchctrl.h>
 #include <wx/treectrl.h>
-DCPOMATIC_ENABLE_WARNINGS
+#include <wx/wx.h>
+LIBDCP_ENABLE_WARNINGS
 #include <boost/signals2.hpp>
 #include <list>
 #include <map>
 
+
 class DKDMRecipient;
 
+
 class RecipientsPanel : public wxPanel
 {
 public:
@@ -39,7 +43,7 @@ public:
 
        void setup_sensitivity ();
 
-       std::list<std::shared_ptr<DKDMRecipient> > recipients () const;
+       std::list<std::shared_ptr<DKDMRecipient>> recipients () const;
        boost::signals2::signal<void ()> RecipientsChanged;
 
 private:
@@ -59,9 +63,11 @@ private:
        wxButton* _remove_recipient;
        wxTreeItemId _root;
 
-       typedef std::map<wxTreeItemId, std::shared_ptr<DKDMRecipient> > RecipientMap;
+       typedef std::map<wxTreeItemId, std::shared_ptr<DKDMRecipient>> RecipientMap;
        RecipientMap _recipients;
        RecipientMap _selected;
 
        bool _ignore_selection_change;
+
+       Collator _collator;
 };