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
|
/*
* COPYRIGHT
*
* pcb-rnd, interactive printed circuit board design
* Copyright (C) 2019 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 "board.h"
#include "conf_core.h"
#include <librnd/core/safe_fs.h>
static rnd_hidval_t infobar_timer;
static int infobar_timer_active = 0;
static double last_interval = -2;
static double last_date = -1;
static int infobar_gui_inited = 0;
static void pcb_infobar_brdchg_ev(rnd_hidlib_t *hidlib, void *user_data, int argc, rnd_event_arg_t argv[])
{
rnd_actionva(hidlib, "InfoBarFileChanged", "close", NULL);
if ((hidlib != NULL) && (hidlib->filename != NULL))
last_date = rnd_file_mtime(NULL, PCB->hidlib.filename);
else
last_date = -1;
}
static void infobar_tick(rnd_hidval_t user_data)
{
if (conf_core.rc.file_changed_interval > 0) {
infobar_timer = rnd_gui->add_timer(rnd_gui, infobar_tick, (conf_core.rc.file_changed_interval * 1000.0), user_data);
last_interval = conf_core.rc.file_changed_interval;
infobar_timer_active = 1;
}
else
infobar_timer_active = 0;
if (infobar_timer_active) { /* check for file change */
if ((PCB != NULL) && (PCB->hidlib.filename != NULL)) {
double last_chg = rnd_file_mtime(NULL, PCB->hidlib.filename);
if (last_chg > last_date) {
last_date = last_chg;
rnd_actionva(&PCB->hidlib, "InfoBarFileChanged", "open", NULL);
}
}
}
}
static void pcb_infobar_update_conf(rnd_conf_native_t *cfg, int arr_idx)
{
if ((!infobar_gui_inited) || (last_interval == conf_core.rc.file_changed_interval))
return;
if ((infobar_timer_active) && (rnd_gui != NULL) && (rnd_gui->stop_timer != NULL)) {
rnd_gui->stop_timer(rnd_gui, infobar_timer);
infobar_timer_active = 0;
}
infobar_tick(infobar_timer);
}
static void pcb_infobar_gui_init_ev(rnd_hidlib_t *hidlib, void *user_data, int argc, rnd_event_arg_t argv[])
{
infobar_gui_inited = 1;
pcb_infobar_brdchg_ev(hidlib, NULL, 0, NULL); /* this may have happened ebfore plugin init if file was specified on the CLI and is already loaded - pick up file data from memory */
if (!infobar_timer_active)
infobar_tick(infobar_timer);
}
static void pcb_infobar_fn_chg_ev(rnd_hidlib_t *hidlib, void *user_data, int argc, rnd_event_arg_t argv[])
{
if ((PCB != NULL) && (PCB->hidlib.filename != NULL)) {
last_date = rnd_file_mtime(NULL, PCB->hidlib.filename);
rnd_actionva(hidlib, "InfoBarFileChanged", "close", NULL);
}
}
|