KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
panel_git_repos.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 The KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation, either version 3 of the License, or (at your
9 * option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include "panel_git_repos.h"
21
22#include <bitmaps.h>
24#include <kiplatform/secrets.h>
25#include <pgm_base.h>
27#include <trace_helpers.h>
29#include <widgets/wx_grid.h>
30
31#include <git2.h>
33#include <wx/bmpbuttn.h>
34#include <wx/button.h>
35#include <wx/checkbox.h>
36#include <wx/log.h>
37
38
40{
41}
42
44{
45}
46
47
49{
50 m_cbDefault->SetValue( true );
51 m_author->SetValue( wxEmptyString );
52 m_authorEmail->SetValue( wxEmptyString );
53}
54
55static std::pair<wxString, wxString> getDefaultAuthorAndEmail()
56{
57 wxString name;
58 wxString email;
59 git_config_entry* name_c = nullptr;
60 git_config_entry* email_c = nullptr;
61
62 git_config* config = nullptr;
63
64 if( git_config_open_default( &config ) != 0 )
65 {
66 wxLogTrace( traceGit, "Failed to open default Git config: %s", KIGIT_COMMON::GetLastGitError() );
67 return std::make_pair( name, email );
68 }
69
70 KIGIT::GitConfigPtr configPtr( config );
71
72 if( git_config_get_entry( &name_c, config, "user.name" ) != 0 )
73 {
74 wxLogTrace( traceGit, "Failed to get user.name from Git config: %s", KIGIT_COMMON::GetLastGitError() );
75 return std::make_pair( name, email );
76 }
77
78 KIGIT::GitConfigEntryPtr namePtr( name_c );
79
80 if( git_config_get_entry( &email_c, config, "user.email" ) != 0 )
81 {
82 wxLogTrace( traceGit, "Failed to get user.email from Git config: %s", KIGIT_COMMON::GetLastGitError() );
83 return std::make_pair( name, email );
84 }
85
86 KIGIT::GitConfigEntryPtr emailPtr( email_c );
87
88 if( name_c )
89 name = name_c->value;
90
91 if( email_c )
92 email = email_c->value;
93
94 return std::make_pair( name, email );
95}
96
97
99{
100 COMMON_SETTINGS* settings = Pgm().GetCommonSettings();
101
102 settings->m_Git.enableGit = m_enableGit->GetValue();
103 settings->m_Git.updatInterval = m_updateInterval->GetValue();
104 settings->m_Git.useDefaultAuthor = m_cbDefault->GetValue();
105 settings->m_Git.authorName = m_author->GetValue();
106 settings->m_Git.authorEmail = m_authorEmail->GetValue();
107
108 return true;
109}
110
111
113{
114 COMMON_SETTINGS* settings = Pgm().GetCommonSettings();
115 std::pair<wxString, wxString> defaultAuthor = getDefaultAuthorAndEmail();
116
117 m_enableGit->SetValue( settings->m_Git.enableGit );
118 m_updateInterval->SetValue( settings->m_Git.updatInterval );
119
120 m_cbDefault->SetValue( settings->m_Git.useDefaultAuthor );
121
122 if( settings->m_Git.useDefaultAuthor )
123 {
124 m_author->SetValue( defaultAuthor.first );
125 m_authorEmail->SetValue( defaultAuthor.second );
126 }
127 else
128 {
129 if( settings->m_Git.authorName.IsEmpty() )
130 m_author->SetValue( defaultAuthor.first );
131 else
132 m_author->SetValue( settings->m_Git.authorName );
133
134 if( settings->m_Git.authorEmail.IsEmpty() )
135 m_authorEmail->SetValue( defaultAuthor.second );
136 else
137 m_authorEmail->SetValue( settings->m_Git.authorEmail );
138 }
139
140 wxCommandEvent event;
141 onDefaultClick( event );
142 onEnableGitClick( event );
143 return true;
144}
145
146void PANEL_GIT_REPOS::onDefaultClick( wxCommandEvent& event )
147{
148 m_author->Enable( !m_cbDefault->GetValue() );
149 m_authorEmail->Enable( !m_cbDefault->GetValue() );
150 m_authorLabel->Enable( !m_cbDefault->GetValue() );
151 m_authorEmailLabel->Enable( !m_cbDefault->GetValue() );
152}
153
154void PANEL_GIT_REPOS::onEnableGitClick( wxCommandEvent& aEvent )
155{
156 bool enable = m_enableGit->GetValue();
157 m_updateInterval->Enable( enable );
158 m_cbDefault->Enable( enable );
159 m_author->Enable( enable && !m_cbDefault->GetValue() );
160 m_authorEmail->Enable( enable && !m_cbDefault->GetValue() );
161 m_authorLabel->Enable( enable && !m_cbDefault->GetValue() );
162 m_authorEmailLabel->Enable( enable && !m_cbDefault->GetValue() );
163}
const char * name
Definition: DXF_plotter.cpp:59
static wxString GetLastGitError()
Class PANEL_GIT_REPOS_BASE.
wxStaticText * m_authorLabel
wxStaticText * m_authorEmailLabel
void onEnableGitClick(wxCommandEvent &event) override
PANEL_GIT_REPOS(wxWindow *parent)
~PANEL_GIT_REPOS() override
void onDefaultClick(wxCommandEvent &event) override
void ResetPanel() override
Reset the contents of this panel.
bool TransferDataToWindow() override
bool TransferDataFromWindow() override
virtual COMMON_SETTINGS * GetCommonSettings() const
Definition: pgm_base.cpp:687
const wxChar *const traceGit
Flag to enable Git debugging output.
std::unique_ptr< git_config_entry, decltype([](git_config_entry *aEntry) { git_config_entry_free(aEntry) GitConfigEntryPtr
A unique pointer for git_config_entry objects with automatic cleanup.
std::unique_ptr< git_config, decltype([](git_config *aConfig) { git_config_free(aConfig) GitConfigPtr
A unique pointer for git_config objects with automatic cleanup.
static std::pair< wxString, wxString > getDefaultAuthorAndEmail()
PGM_BASE & Pgm()
The global program "get" accessor.
Definition: pgm_base.cpp:1071
see class PGM_BASE
wxLogTrace helper definitions.