aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Labath <pavelo@centrum.sk>2011-06-16 19:31:28 (GMT)
committerPavel Labath <pavelo@centrum.sk>2013-02-16 23:55:46 (GMT)
commit38e455148c19de101abcb7696b28f109f42aec6b (patch)
tree28014ddde72b8fd69ca22428be1923ab17bdacb0
parentf7ab4aaba8832a5e5073fb14f6b4d8abfbb7750f (diff)
downloadfluxbox_pavel-38e455148c19de101abcb7696b28f109f42aec6b.zip
fluxbox_pavel-38e455148c19de101abcb7696b28f109f42aec6b.tar.bz2
Vector resources can now specify which char to use as delimiters
when saving/loading to/from string representation. This is needed for the next commit.
-rw-r--r--src/FbTk/ResTraits.hh4
-rw-r--r--src/Window.cc3
2 files changed, 4 insertions, 3 deletions
diff --git a/src/FbTk/ResTraits.hh b/src/FbTk/ResTraits.hh
index 3ee4464..3284801 100644
--- a/src/FbTk/ResTraits.hh
+++ b/src/FbTk/ResTraits.hh
@@ -160,7 +160,7 @@ struct EnumTraits {
160 } 160 }
161}; 161};
162 162
163template<typename Traits> 163template<typename Traits, const char *delim>
164struct VectorTraits { 164struct VectorTraits {
165 typedef std::vector<typename Traits::Type> Type; 165 typedef std::vector<typename Traits::Type> Type;
166 static std::string toString(const Type &x) { 166 static std::string toString(const Type &x) {
@@ -186,7 +186,7 @@ struct VectorTraits {
186 186
187 static Type fromString(const std::string &x) { 187 static Type fromString(const std::string &x) {
188 std::vector<std::string> val; 188 std::vector<std::string> val;
189 StringUtil::stringtok(val, x); 189 StringUtil::stringtok(val, x, delim);
190 Type retval; 190 Type retval;
191 191
192 for(size_t i = 0; i < val.size(); i++) { 192 for(size_t i = 0; i < val.size(); i++) {
diff --git a/src/Window.cc b/src/Window.cc
index 0296e13..e55a258 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -263,9 +263,10 @@ struct TestCornerHelper {
263 } 263 }
264}; 264};
265 265
266extern const char win_buttons_delim[] = " \t\n";
266typedef FbTk::Resource< 267typedef FbTk::Resource<
267 vector<WinButton::Type>, 268 vector<WinButton::Type>,
268 FbTk::VectorTraits<FbTk::EnumTraits<WinButton::Type> > 269 FbTk::VectorTraits<FbTk::EnumTraits<WinButton::Type>, win_buttons_delim>
269> WinButtonsResource; 270> WinButtonsResource;
270 271
271} 272}