diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-01-10 14:12:42 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-01-10 14:12:42 +0000 |
| commit | 1668af230bde86ebc7ca5e2ff113bd8ad122a9bc (patch) | |
| tree | 686460d0df14bb383c102eaa46f54d15ae01b2d9 /src | |
| parent | 65dd745be52a7f12da387d4d52d3428faee751f6 (diff) | |
Case-insensitive sort for image filenames.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/case_insensitive_sorter.cc | 35 | ||||
| -rw-r--r-- | src/lib/case_insensitive_sorter.h | 26 | ||||
| -rw-r--r-- | src/lib/wscript | 1 | ||||
| -rw-r--r-- | src/wx/content_panel.cc | 3 |
4 files changed, 64 insertions, 1 deletions
diff --git a/src/lib/case_insensitive_sorter.cc b/src/lib/case_insensitive_sorter.cc new file mode 100644 index 000000000..02543f03a --- /dev/null +++ b/src/lib/case_insensitive_sorter.cc @@ -0,0 +1,35 @@ +/* + Copyright (C) 2016 Carl Hetherington <cth@carlh.net> + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + +#include "case_insensitive_sorter.h" +#include <boost/filesystem.hpp> +#include <boost/foreach.hpp> +#include <iostream> + +using std::string; + +bool +CaseInsensitiveSorter::operator() (boost::filesystem::path a, boost::filesystem::path b) +{ + string x = a.string (); + string y = b.string (); + transform (x.begin(), x.end(), x.begin(), ::tolower); + transform (y.begin(), y.end(), y.begin(), ::tolower); + return x < y; +} diff --git a/src/lib/case_insensitive_sorter.h b/src/lib/case_insensitive_sorter.h new file mode 100644 index 000000000..0b77f3916 --- /dev/null +++ b/src/lib/case_insensitive_sorter.h @@ -0,0 +1,26 @@ +/* + Copyright (C) 2016 Carl Hetherington <cth@carlh.net> + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + +#include <boost/filesystem.hpp> + +class CaseInsensitiveSorter +{ +public: + bool operator() (boost::filesystem::path a, boost::filesystem::path b); +}; diff --git a/src/lib/wscript b/src/lib/wscript index 5a1ab8b10..c538851d5 100644 --- a/src/lib/wscript +++ b/src/lib/wscript @@ -33,6 +33,7 @@ sources = """ audio_point.cc audio_processor.cc audio_stream.cc + case_insensitive_sorter.cc cinema.cc cinema_kdms.cc cinema_sound_processor.cc diff --git a/src/wx/content_panel.cc b/src/wx/content_panel.cc index 6d4a11868..ee9ed2bf8 100644 --- a/src/wx/content_panel.cc +++ b/src/wx/content_panel.cc @@ -32,6 +32,7 @@ #include "lib/content_factory.h" #include "lib/image_content.h" #include "lib/dcp_content.h" +#include "lib/case_insensitive_sorter.h" #include "lib/playlist.h" #include <wx/wx.h> #include <wx/notebook.h> @@ -520,7 +521,7 @@ ContentPanel::add_files (list<boost::filesystem::path> paths) alphabetical sort is expected here. */ - paths.sort (); + paths.sort (CaseInsensitiveSorter ()); /* XXX: check for lots of files here and do something */ |
