/[svn]/gigedit/trunk/src/gigedit/global.h
ViewVC logotype

Diff of /gigedit/trunk/src/gigedit/global.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3157 by schoenebeck, Mon May 8 17:30:10 2017 UTC revision 3364 by schoenebeck, Tue Nov 14 18:07:25 2017 UTC
# Line 25  Line 25 
25  #endif  #endif
26    
27  #include <cstring>  #include <cstring>
28    #include <algorithm>
29    
30  #include <glibmmconfig.h>  #ifdef GLIBMM_HEADER_FILE
31    # include GLIBMM_HEADER_FILE(glibmmconfig.h)
32    #else
33    # include <glibmmconfig.h>
34    #endif
35  // threads.h must be included first to be able to build with  // threads.h must be included first to be able to build with
36  // G_DISABLE_DEPRECATED  // G_DISABLE_DEPRECATED
37  #if (GLIBMM_MAJOR_VERSION == 2 && GLIBMM_MINOR_VERSION == 31 && GLIBMM_MICRO_VERSION >= 2) || \  #if (GLIBMM_MAJOR_VERSION == 2 && GLIBMM_MINOR_VERSION == 31 && GLIBMM_MICRO_VERSION >= 2) || \
# Line 51  Line 56 
56  #endif  #endif
57    
58  //FIXME: for some reason AC GETTEXT check fails on the Mac cross compiler?  //FIXME: for some reason AC GETTEXT check fails on the Mac cross compiler?
59  #if (HAVE_GETTEXT || defined(__APPLE__))  #ifdef GETTEXT_HEADER_FILE
60    # include GETTEXT_HEADER_FILE(libintl.h)
61    #elif (HAVE_GETTEXT || defined(__APPLE__))
62  # include <libintl.h>  # include <libintl.h>
63  # define _(String) gettext(String)  # define _(String) gettext(String)
64  #else  #else
# Line 116  gig::String gig_from_utf8(const Glib::us Line 123  gig::String gig_from_utf8(const Glib::us
123      return Glib::convert_with_fallback(utf8_string, GIG_STR_ENCODING, "UTF-8", "?");      return Glib::convert_with_fallback(utf8_string, GIG_STR_ENCODING, "UTF-8", "?");
124  }  }
125    
126    inline Glib::ustring ltrim(Glib::ustring s) {
127        s.erase(s.begin(), std::find_if(s.begin(), s.end(), std::not1(std::ptr_fun<int, int>(std::isspace))));
128        return s;
129    }
130    
131    inline Glib::ustring rtrim(Glib::ustring s) {
132        s.erase(std::find_if(s.rbegin(), s.rend(), std::not1(std::ptr_fun<int, int>(std::isspace))).base(), s.end());
133        return s;
134    }
135    
136    inline Glib::ustring trim(Glib::ustring s) {
137        return ltrim(rtrim(s));
138    }
139    
140  template<class T> inline std::string ToString(T o) {  template<class T> inline std::string ToString(T o) {
141      std::stringstream ss;      std::stringstream ss;
142      ss << o;      ss << o;
143      return ss.str();      return ss.str();
144  }  }
145    
146    inline static bool endsWith(const std::string& haystack, const std::string& needle, bool caseSensitive) {
147        if (haystack.size() < needle.size()) return false;
148        const std::string sub = haystack.substr(haystack.size() - needle.size(), needle.size());
149        return (caseSensitive) ? (sub == needle) : (!strcasecmp(sub.c_str(), needle.c_str()));
150    }
151    
152  inline int getDimensionIndex(gig::dimension_t type, gig::Region* rgn) {  inline int getDimensionIndex(gig::dimension_t type, gig::Region* rgn) {
153      for (uint i = 0; i < rgn->Dimensions; ++i)      for (uint i = 0; i < rgn->Dimensions; ++i)
154          if (rgn->pDimensionDefinitions[i].dimension == type)          if (rgn->pDimensionDefinitions[i].dimension == type)
# Line 205  inline DimensionCase dimensionCaseOf(gig Line 232  inline DimensionCase dimensionCaseOf(gig
232      return dimCase;      return dimCase;
233  }  }
234    
235  inline std::vector<gig::DimensionRegion*> dimensionRegionsMatching(const DimensionCase& dimCase, gig::Region* rgn) {  /**
236     * Checks whether the passed dimension zones are within the boundaries of the
237     * defined dimensions. This is especially relevant if there are dimensions
238     * defined with an amount not equal to a power of two, in that case there are
239     * unused dimensions regions which should be ignored.
240     */
241    inline bool isUsedCase(const DimensionCase& c, gig::Region* rgn) {
242        for (int d = 0; d < rgn->Dimensions; ++d) {
243            gig::dimension_t type = rgn->pDimensionDefinitions[d].dimension;
244            if (c.find(type) == c.end()) continue;
245            int zone = c.find(type)->second;
246            if (zone < 0 || zone >= rgn->pDimensionDefinitions[d].zones)
247                return false;
248        }
249        return true;
250    }
251    
252    inline std::vector<gig::DimensionRegion*> dimensionRegionsMatching(
253        const DimensionCase& dimCase, gig::Region* rgn, bool skipUnusedZones = false)
254    {
255      std::vector<gig::DimensionRegion*> v;      std::vector<gig::DimensionRegion*> v;
256      for (int idr = 0; idr < 256; ++idr) {      for (int idr = 0; idr < 256; ++idr) {
257          if (!rgn->pDimensionRegions[idr]) continue;          if (!rgn->pDimensionRegions[idr]) continue;
258          DimensionCase c = dimensionCaseOf(rgn->pDimensionRegions[idr]);          DimensionCase c = dimensionCaseOf(rgn->pDimensionRegions[idr]);
259          if (!dimCase.isViolating(c)) v.push_back(rgn->pDimensionRegions[idr]);          if (dimCase.isViolating(c)) continue;
260            if (skipUnusedZones && !isUsedCase(c, rgn)) continue;
261            v.push_back(rgn->pDimensionRegions[idr]);
262      }      }
263      return v;      return v;
264  }  }
# Line 224  inline gig::DimensionRegion* dimensionRe Line 272  inline gig::DimensionRegion* dimensionRe
272      return NULL;      return NULL;
273  }  }
274    
275    template<typename T_Message>
276    class SignalGuard {
277    public:
278        SignalGuard(sigc::signal<void, T_Message>& start, sigc::signal<void, T_Message>& end, T_Message message)
279            : m_end(end), m_message(message)
280        {
281            if (message) start.emit(message);
282        }
283    
284        virtual ~SignalGuard() {
285            if (m_message) m_end.emit(m_message);
286        }
287    protected:
288        sigc::signal<void, T_Message>& m_end;
289        T_Message m_message;
290    };
291    
292  #endif // GIGEDIT_GLOBAL_H  #endif // GIGEDIT_GLOBAL_H

Legend:
Removed from v.3157  
changed lines
  Added in v.3364

  ViewVC Help
Powered by ViewVC