spek

Acoustic spectrum analyser https://github.com/alexkay/spek spek.cc
git clone http://git.hanabi.in/repos/spek.git
Log | Files | Refs | README

spek-preferences.h (529B)


      1 #pragma once
      2 
      3 #include <wx/fileconf.h>
      4 #include <wx/intl.h>
      5 
      6 class SpekPreferences
      7 {
      8 public:
      9     static SpekPreferences& get();
     10 
     11     void init();
     12     bool get_check_update();
     13     void set_check_update(bool value);
     14     long get_last_update();
     15     void set_last_update(long value);
     16     wxString get_language();
     17     void set_language(const wxString& value);
     18 
     19 private:
     20     SpekPreferences();
     21     SpekPreferences(const SpekPreferences&);
     22     void operator=(const SpekPreferences&);
     23 
     24     wxLocale *locale;
     25     wxFileConfig *config;
     26 };