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 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
/*
* 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")
*/
/* Common dialogs: simple, modal dialogs and info bars.
Even the core will run some of these, through a dispatcher (e.g.
action). */
#include "config.h"
#include <librnd/core/actions.h>
#include "board.h"
#include <librnd/core/hid_dad.h>
#include <librnd/plugins/lib_hid_common/xpm.h>
#include <librnd/plugins/lib_hid_common/dlg_comm_m.h>
#include "plug_io.h"
static void ifb_file_chg_reload_cb(void *hid_ctx, void *caller_data, rnd_hid_attribute_t *attr)
{
pcb_revert_pcb();
rnd_actionva(&PCB->hidlib, "InfoBarFileChanged", "close", NULL);
}
static void ifb_file_chg_close_cb(void *hid_ctx, void *caller_data, rnd_hid_attribute_t *attr)
{
rnd_actionva(&PCB->hidlib, "InfoBarFileChanged", "close", NULL);
}
const char pcb_acts_InfoBarFileChanged[] = "InfoBarFileChanged(open|close)\n";
const char pcb_acth_InfoBarFileChanged[] = "Present the \"file changed\" warning info bar with buttons to reload or cancel";
fgw_error_t pcb_act_InfoBarFileChanged(fgw_arg_t *res, int argc, fgw_arg_t *argv)
{
static rnd_hid_dad_subdialog_t sub;
static int active = 0, wlab[2];
rnd_hid_attr_val_t hv;
const char *cmd;
if (!RND_HAVE_GUI_ATTR_DLG) {
RND_ACT_IRES(0);
return 0;
}
RND_ACT_CONVARG(1, FGW_STR, InfoBarFileChanged, cmd = argv[1].val.str);
if (strcmp(cmd, "open") == 0) {
if (!active) {
RND_DAD_BEGIN_HBOX(sub.dlg);
RND_DAD_COMPFLAG(sub.dlg, RND_HATF_EXPFILL | RND_HATF_FRAME);
RND_DAD_BEGIN_VBOX(sub.dlg);
RND_DAD_PICTURE(sub.dlg, pcp_dlg_xpm_by_name("warning"));
RND_DAD_END(sub.dlg);
RND_DAD_BEGIN_VBOX(sub.dlg);
RND_DAD_COMPFLAG(sub.dlg, RND_HATF_EXPFILL);
RND_DAD_BEGIN_HBOX(sub.dlg); RND_DAD_COMPFLAG(sub.dlg, RND_HATF_EXPFILL); RND_DAD_END(sub.dlg);
RND_DAD_LABEL(sub.dlg, "line0");
wlab[0] = RND_DAD_CURRENT(sub.dlg);
RND_DAD_LABEL(sub.dlg, "line1");
wlab[1] = RND_DAD_CURRENT(sub.dlg);
RND_DAD_BEGIN_HBOX(sub.dlg); RND_DAD_COMPFLAG(sub.dlg, RND_HATF_EXPFILL); RND_DAD_END(sub.dlg);
RND_DAD_END(sub.dlg);
RND_DAD_BEGIN_VBOX(sub.dlg);
RND_DAD_BUTTON(sub.dlg, "Reload");
RND_DAD_HELP(sub.dlg, "Load the new verison of the file from disk,\ndiscarding any in-memory change on the board");
RND_DAD_CHANGE_CB(sub.dlg, ifb_file_chg_reload_cb);
RND_DAD_BEGIN_HBOX(sub.dlg); RND_DAD_COMPFLAG(sub.dlg, RND_HATF_EXPFILL); RND_DAD_END(sub.dlg);
RND_DAD_BUTTON(sub.dlg, "Cancel");
RND_DAD_HELP(sub.dlg, "Hide this info bar until the file changes again on disk");
RND_DAD_CHANGE_CB(sub.dlg, ifb_file_chg_close_cb);
RND_DAD_END(sub.dlg);
RND_DAD_END(sub.dlg);
if (rnd_hid_dock_enter(&sub, RND_HID_DOCK_TOP_INFOBAR, "file_changed") != 0) {
RND_ACT_IRES(1);
return 0;
}
active = 1;
}
/* update labels */
hv.str = rnd_strdup_printf("The file %s has changed on disk", PCB->hidlib.filename);
rnd_gui->attr_dlg_set_value(sub.dlg_hid_ctx, wlab[0], &hv);
free((char *)hv.str);
hv.str = (PCB->Changed ? "Do you want to drop your changes and reload the file?" : "Do you want to reload the file?");
rnd_gui->attr_dlg_set_value(sub.dlg_hid_ctx, wlab[1], &hv);
}
else if (strcmp(cmd, "close") == 0) {
if (active) {
rnd_hid_dock_leave(&sub);
active = 0;
}
}
else
RND_ACT_FAIL(InfoBarFileChanged);
RND_ACT_IRES(0);
return 0;
}
|