1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
/*
* COPYRIGHT
*
* pcb-rnd, interactive printed circuit board design
* Copyright (C) 2018 Tibor 'Igor2' Palinkas
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Contact:
* Project page: http://repo.hu/projects/pcb-rnd
* lead developer: http://repo.hu/projects/pcb-rnd/contact.html
* mailing list: pcb-rnd (at) list.repo.hu (send "subscribe")
*/
#include "config.h"
#include "conf.h"
#include "conf_core.h"
#include "grid.h"
#include "event.h"
#include "hid_cfg.h"
#include "hid.h"
#include "grid_menu.h"
#define ANCH "@grid"
static void grid_install_menu(void *ctx, pcb_hid_cfg_t *cfg, lht_node_t *node, char *path)
{
conflist_t *lst = (conflist_t *)&conf_core.editor.grids;
conf_listitem_t *li;
char *end = path + strlen(path);
pcb_menu_prop_t props;
char act[256], chk[256];
int idx;
memset(&props, 0,sizeof(props));
props.action = act;
props.checked = chk;
props.update_on = "editor/grids_idx";
props.cookie = ANCH;
pcb_hid_cfg_del_anchor_menus(node, ANCH);
/* prepare for appending the strings at the end of the path, "under" the anchor */
*end = '/';
end++;
/* have to go reverse to keep order because this will insert items */
idx = conflist_length(lst)-1;
for(li = conflist_last(lst); li != NULL; li = conflist_prev(li),idx--) {
sprintf(act, "grid(#%d)", idx);
sprintf(chk, "conf(iseq, editor/grids_idx, %d)", idx);
strcpy(end, li->val.string[0]);
pcb_gui->create_menu(path, &props);
}
}
void pcb_grid_install_menu(void)
{
pcb_hid_cfg_map_anchor_menus(ANCH, grid_install_menu, NULL);
}
static int grid_lock = 0;
void pcb_grid_update_conf(conf_native_t *cfg, int arr_idx)
{
if (grid_lock) return;
grid_lock++;
pcb_grid_install_menu();
grid_lock--;
}
void pcb_grid_update_ev(void *user_data, int argc, pcb_event_arg_t argv[])
{
if (grid_lock) return;
grid_lock++;
pcb_grid_install_menu();
/* to get the right menu checked */
if (conf_core.editor.grids_idx >= 0)
pcb_grid_list_step(0);
grid_lock--;
}
|