KiCad PCB EDA Suite
Loading...
Searching...
No Matches
languages_menu.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 1992-2020 KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
30#include <id.h>
31#include <menus_helpers.h>
32#include <pgm_base.h> // LanguagesList
34#include <tool/action_menu.h>
36#include <bitmaps.h>
37
45void AddMenuLanguageList( ACTION_MENU* aMasterMenu, TOOL_INTERACTIVE* aControlTool )
46{
47 ACTION_MENU* langsMenu = new ACTION_MENU( false, aControlTool );
48 langsMenu->SetTitle( _( "Set Language" ) );
49 langsMenu->SetIcon( BITMAPS::language );
50
51 wxString tooltip;
52
53 for( unsigned ii = 0; LanguagesList[ii].m_KI_Lang_Identifier != 0; ii++ )
54 {
55 wxString label;
56
57 if( LanguagesList[ii].m_DoNotTranslate )
58 label = LanguagesList[ii].m_Lang_Label;
59 else
60 label = wxGetTranslation( LanguagesList[ii].m_Lang_Label );
61
62 wxMenuItem* item = new wxMenuItem( langsMenu,
63 LanguagesList[ii].m_KI_Lang_Identifier, // wxMenuItem wxID
64 label,
65 tooltip,
66 wxITEM_CHECK );
67
68 langsMenu->Append( item );
69 }
70
71 // This must be done after the items are added
72 aMasterMenu->Add( langsMenu );
73}
Defines the structure of a menu based on ACTIONs.
Definition: action_menu.h:49
void SetTitle(const wxString &aTitle) override
Set title for the menu.
Definition: action_menu.cpp:87
void SetIcon(BITMAPS aIcon)
Assign an icon for the entry.
Definition: action_menu.cpp:73
wxMenuItem * Add(const wxString &aLabel, int aId, BITMAPS aIcon)
Add a wxWidgets-style entry to the menu.
#define _(s)
void AddMenuLanguageList(ACTION_MENU *aMasterMenu, TOOL_INTERACTIVE *aControlTool)
Function AddMenuLanguageList creates a menu list for language choice, and add it as submenu to Master...
Macros and inline functions to create menus items in menubars or popup menus.
LANGUAGE_DESCR LanguagesList[]
An array containing all the languages that KiCad supports.
Definition: pgm_base.cpp:91
see class PGM_BASE
int m_KI_Lang_Identifier
KiCad identifier used in menu selection (See id.h)
Definition: pgm_base.h:70
wxString m_Lang_Label
Labels used in menus.
Definition: pgm_base.h:73