14 lines
436 B
C++
14 lines
436 B
C++
#ifndef SETTINGSCONSTS_HPP
|
|
#define SETTINGSCONSTS_HPP
|
|
|
|
#include <wx/wx.h>
|
|
|
|
const wxString SETTINGS_KEY_DICT_PATH = wxT("/Dict/Path");
|
|
const wxString SETTINGS_DEFAULT_DICTPATH = wxT("big_cross_ru.txt");
|
|
const wxString SETTINGS_KEY_FMAIN_HEIGHT = wxT("fMain/Height");
|
|
const wxString SETTINGS_KEY_FMAIN_WIDTH = wxT("fMain/Width");
|
|
const int SETTINGS_DEFAULT_FMAIN_HEIGHT = 350;
|
|
const int SETTINGS_DEFAULT_FMAIN_WIDTH = 600;
|
|
|
|
#endif
|