Localization in progress ...

This commit is contained in:
2010-07-06 20:59:02 +02:00
parent 4544a5c3ad
commit f6c64d5448
7 changed files with 63 additions and 6 deletions

View File

@@ -8,11 +8,13 @@
#include <wx/gbsizer.h>
#include <wx/stattext.h>
#include <wx/textctrl.h>
#include <wx/bmpcbox.h>
#include <controller/KissCount.h>
#include "wxUI.h"
#include <model/model.h>
#include "PasswordDialog.h"
#include "SupportedLanguages.h"
class wxUI;
class KissCount;
@@ -27,6 +29,7 @@ class PreferencesPanel: public wxPanel
void OnCategoryModified(wxGridEvent& event);
void OnChangeName(wxCommandEvent& event);
void OnChangePassword(wxCommandEvent& event);
void OnLanguageChange(wxCommandEvent& event);
void OnShow(wxShowEvent& event);
void OnKillMe(wxCommandEvent& event);
@@ -36,9 +39,11 @@ class PreferencesPanel: public wxPanel
wxGrid* _accountsGrid;
wxGrid* _categoriesGrid;
wxTextCtrl* _name;
wxBitmapComboBox* _language;
void InitAccounts(User* user);
void InitCategories(User* user);
void InitLanguage(User* user);
DECLARE_EVENT_TABLE();
};