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
|
/*
* 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")
*/
/* Preferences dialog, general tab */
#include "dlg_pref.h"
static pref_confitem_t perf_topwin[] = {
{"Alternate window layout to\nallow smaller size", "appearance/compact", 0, NULL},
{NULL, NULL, 0}
};
static pref_confitem_t perf_backup[] = {
{"Save unsaved layout to\nPCB.%i.save at exit", "editor/save_in_tmp", 0, NULL},
{"Seconds between auto backups\n(set to zero to disable auto backups)", "rc/backup_interval", 0, NULL},
{NULL, NULL, 0}
};
static pref_confitem_t perf_cli[] = {
{"Number of commands to\nremember in the\nhistory list", "plugins/hid_gtk/history_size", 0, NULL},
{NULL, NULL, 0}
};
static void pref_general_dlg2conf(void *hid_ctx, void *caller_data, rnd_hid_attribute_t *attr)
{
pref_ctx_t *ctx = caller_data;
if (pref_dlg2conf_pre(ctx) == NULL)
return;
pcb_pref_dlg2conf_table(ctx, perf_topwin, attr);
pcb_pref_dlg2conf_table(ctx, perf_backup, attr);
pcb_pref_dlg2conf_table(ctx, perf_cli, attr);
pref_dlg2conf_post(ctx);
}
void pcb_dlg_pref_general_close(pref_ctx_t *ctx)
{
pcb_pref_conflist_remove(ctx, perf_topwin);
pcb_pref_conflist_remove(ctx, perf_backup);
pcb_pref_conflist_remove(ctx, perf_cli);
}
void pcb_dlg_pref_general_create(pref_ctx_t *ctx)
{
RND_DAD_BEGIN_VBOX(ctx->dlg);
RND_DAD_COMPFLAG(ctx->dlg, RND_HATF_FRAME);
RND_DAD_LABEL(ctx->dlg, "Top window layout");
RND_DAD_BEGIN_TABLE(ctx->dlg, 2);
pcb_pref_create_conftable(ctx, perf_topwin, pref_general_dlg2conf);
RND_DAD_END(ctx->dlg);
RND_DAD_END(ctx->dlg);
RND_DAD_BEGIN_VBOX(ctx->dlg);
RND_DAD_COMPFLAG(ctx->dlg, RND_HATF_FRAME);
RND_DAD_LABEL(ctx->dlg, "Backup");
RND_DAD_BEGIN_TABLE(ctx->dlg, 2);
pcb_pref_create_conftable(ctx, perf_backup, pref_general_dlg2conf);
RND_DAD_END(ctx->dlg);
RND_DAD_END(ctx->dlg);
RND_DAD_BEGIN_VBOX(ctx->dlg);
RND_DAD_COMPFLAG(ctx->dlg, RND_HATF_FRAME);
RND_DAD_LABEL(ctx->dlg, "Command line entry");
RND_DAD_BEGIN_TABLE(ctx->dlg, 2);
pcb_pref_create_conftable(ctx, perf_cli, pref_general_dlg2conf);
RND_DAD_END(ctx->dlg);
RND_DAD_END(ctx->dlg);
}
|