KiCad PCB EDA Suite
Loading...
Searching...
No Matches
panel_git_repos.h
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) 2018-2023 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#ifndef PANEL_GIT_REPOS_H
21#define PANEL_GIT_REPOS_H
22
24#include <widgets/wx_grid.h>
25
27{
28public:
29 PANEL_GIT_REPOS( wxWindow* parent );
30 ~PANEL_GIT_REPOS() override;
31
32 void ResetPanel() override;
33
34 bool TransferDataFromWindow() override;
35 bool TransferDataToWindow() override;
36
37 enum COLS
38 {
48 };
49
50private:
51 void onDefaultClick( wxCommandEvent& event ) override;
52 void onGridDClick( wxGridEvent& event ) override;
53 void onAddClick( wxCommandEvent& event ) override;
54 void onEditClick( wxCommandEvent& event ) override;
55 void onDeleteClick( wxCommandEvent& event ) override;
56
57};
58
59#endif // PANEL_GIT_REPOS_H
Class PANEL_GIT_REPOS_BASE.
~PANEL_GIT_REPOS() override
void onGridDClick(wxGridEvent &event) override
void onEditClick(wxCommandEvent &event) override
void onDefaultClick(wxCommandEvent &event) override
void onAddClick(wxCommandEvent &event) override
void ResetPanel() override
Reset the contents of this panel.
bool TransferDataToWindow() override
bool TransferDataFromWindow() override
void onDeleteClick(wxCommandEvent &event) override