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 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
|
/*
Quickplot - an interactive 2D plotter
Copyright (C) 1998-2011 Lance Arsenault
This file is part of Quickplot.
Quickplot 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 3 of the License,
or (at your option) any later version.
Quickplot 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 Quickplot. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "quickplot.h"
#include "config.h"
#include "debug.h"
#include "spew.h"
#include "list.h"
#include "qp.h"
#include "get_opt.h"
#ifdef DMALLOC
# include "dmalloc.h"
#endif
struct qp_gtk_options
{
int argc;
char **argv;
};
static
inline
void strip_opt(struct qp_gtk_options *gop,
int from_i, int to_i, int *argc, char ***argv, char *op)
{
int num, i;
num = to_i - from_i + 1;
gop->argc += num;
gop->argv = qp_realloc(gop->argv, sizeof(char *)*(gop->argc+1));
for(i=0;i<num;++i)
gop->argv[gop->argc-num + i] = (*argv)[from_i + i];
gop->argv[gop->argc] = NULL;
for(i=from_i;i<=((*argc)-num);++i)
(*argv)[i] = (*argv)[i + num];
*argc -= num;
}
struct qp_gtk_options *strip_gtk_options(int *argc, char ***argv)
{
struct qp_gtk_options *opt = NULL;
int i = 1;
char *with_arg[] =
{
"--class",
"--display",
"--gdk-debug",
"--gdk-no-debug",
"--gtk-debug",
"--gtk-module",
"--gtk-no-debug",
"--gxid-host",
"--gxid-port",
"--name",
"--screen",
0
};
char *no_arg[] =
{
"--g-fatal-warnings",
"--sync",
0
};
opt = qp_malloc(sizeof(*opt));
opt->argc = 1;
opt->argv = qp_malloc(sizeof(char *)*2);
opt->argv[0] = (*argv)[0];
opt->argv[1] = NULL;
while(i < *argc)
{
char *s;
char **op;
int j;
j = i;
op = with_arg;
while(*op)
{
if((s = get_opt(0, *op, *argc, *argv, &i)))
{
strip_opt(opt, j, i-1, argc, argv, *op);
i = j;
break;
}
++op;
}
if(*op) continue;
op = no_arg;
while(*op)
{
if(!strcmp(*op, (*argv)[i]))
{
strip_opt(opt, j, i, argc, argv, *op);
/* no need to increment i given we removed
* that index from the argv array */
break;
}
++op;
}
if(!(*op))
++i;
}
#if 1
#ifdef QP_DEBUG
{
char **a;
DEBUG("%d ARGS left now are:\n", *argc);
for(a=(*argv);*a;++a)
APPEND("%s ", *a);
APPEND("%s\n", *a);
}
#endif
#endif
return opt;
}
int qp_gtk_init_check(struct qp_gtk_options *opt)
{
int ret;
ASSERT(opt);
#if 1
#ifdef QP_DEBUG
{
char **argv;
DEBUG("%d GTK ARGS are:\n", opt->argc);
for(argv = opt->argv;*argv;++argv)
APPEND("%s ", *argv);
APPEND("%s\n", *argv);
}
#endif
#endif
ret = qp_app_init(&opt->argc, &opt->argv);
if(opt->argv);
free(opt->argv);
free(opt);
return ret; /* success */
}
|