/[svn]/qsampler/trunk/src/qsampler.cpp
ViewVC logotype

Diff of /qsampler/trunk/src/qsampler.cpp

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

revision 2181 by capela, Sun Jun 5 10:21:53 2011 UTC revision 2341 by capela, Sun Apr 8 19:40:42 2012 UTC
# Line 37  Line 37 
37  #define darker(x)       dark(x)  #define darker(x)       dark(x)
38  #endif  #endif
39    
40    #define CONFIG_QUOTE1(x) #x
41    #define CONFIG_QUOTED(x) CONFIG_QUOTE1(x)
42    
43    #if defined(DATADIR)
44    #define CONFIG_DATADIR CONFIG_QUOTED(DATADIR)
45    #else
46    #define CONFIG_DATADIR CONFIG_PREFIX "/share"
47    #endif
48    
49    #if defined(LOCALEDIR)
50    #define CONFIG_LOCALEDIR CONFIG_QUOTED(LOCALEDIR)
51    #else
52    #define CONFIG_LOCALEDIR CONFIG_DATADIR "/locale"
53    #endif
54    
55    #if WIN32
56    #define RELATIVE_LOCALE_DIR "/share/locale"
57    #elif defined(__APPLE__)
58    #define RELATIVE_LOCALE_DIR "/../Resources"
59    #endif
60    
61    
62  //-------------------------------------------------------------------------  //-------------------------------------------------------------------------
63  // Singleton application instance stuff (Qt/X11 only atm.)  // Singleton application instance stuff (Qt/X11 only atm.)
# Line 71  public: Line 92  public:
92                          if (m_pQtTranslator->load(sLocName, sLocPath)) {                          if (m_pQtTranslator->load(sLocName, sLocPath)) {
93                                  QApplication::installTranslator(m_pQtTranslator);                                  QApplication::installTranslator(m_pQtTranslator);
94                          } else {                          } else {
95                  #if WIN32                  #ifdef RELATIVE_LOCALE_DIR
96                                  sLocPath = QApplication::applicationDirPath() + "/share/locale";                                  sLocPath = QApplication::applicationDirPath() + RELATIVE_LOCALE_DIR;
97                                  if (m_pQtTranslator->load(sLocName, sLocPath)) {                                  if (m_pQtTranslator->load(sLocName, sLocPath)) {
98                                          QApplication::installTranslator(m_pQtTranslator);                                          QApplication::installTranslator(m_pQtTranslator);
99                                  } else {                                  } else {
# Line 85  public: Line 106  public:
106                                          sLocPath.toUtf8().constData(),                                          sLocPath.toUtf8().constData(),
107                                          sLocName.toUtf8().constData());                                          sLocName.toUtf8().constData());
108                  #endif                  #endif
109                  #if WIN32                  #ifdef RELATIVE_LOCALE_DIR
110                                  }                                  }
111                  #endif                  #endif
112                          }                          }
# Line 95  public: Line 116  public:
116                          if (m_pMyTranslator->load(sLocName, sLocPath)) {                          if (m_pMyTranslator->load(sLocName, sLocPath)) {
117                                  QApplication::installTranslator(m_pMyTranslator);                                  QApplication::installTranslator(m_pMyTranslator);
118                          } else {                          } else {
119                  #if WIN32                  #ifdef RELATIVE_LOCALE_DIR
120                                  sLocPath = QApplication::applicationDirPath() + "/share/locale";                                  sLocPath = QApplication::applicationDirPath() + RELATIVE_LOCALE_DIR;
121                  #else                  #else
122                                  sLocPath = CONFIG_PREFIX "/share/locale";                                  sLocPath = CONFIG_LOCALEDIR;
123                  #endif                  #endif
124                                  if (m_pMyTranslator->load(sLocName, sLocPath)) {                                  if (m_pMyTranslator->load(sLocName, sLocPath)) {
125                                          QApplication::installTranslator(m_pMyTranslator);                                          QApplication::installTranslator(m_pMyTranslator);
# Line 257  private: Line 278  private:
278  #include <stdio.h>  #include <stdio.h>
279  #include <errno.h>  #include <errno.h>
280  #include <signal.h>  #include <signal.h>
281    #include <unistd.h>
282  #include <sys/wait.h>  #include <sys/wait.h>
283    
284  void stacktrace ( int signo )  void stacktrace ( int signo )

Legend:
Removed from v.2181  
changed lines
  Added in v.2341

  ViewVC Help
Powered by ViewVC