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 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435
|
/* selectops.c
* operations for selecting, cutting, copying, and pasting music
*
* for Denemo, a gtk+ frontend to GNU Lilypond
* (c) 1999, 2000, 2001 Matthew Hiller */
#include "calculatepositions.h"
#include "commandfuncs.h"
#include "datastructures.h"
#include "draw.h"
#include "objops.h"
#include "measureops.h"
#include "selectops.h"
#include "staffops.h"
/*For save selection function*/
#include "frogio.h"
/* The copy buffer is a GList of objnode *s -- at first, I was going
* to use staffnode *s, measurenode *s, and then objnode *s, but I
* realized that'd be overkill and just complicate the implementation
* unnecessarily.
*
* Each item in the copybuffer list corresponds to the stuff in
* the buffer on each staff. */
static GList *copybuffer = NULL;
static gint staffsinbuffer = 0;
static gint measurebreaksinbuffer = 0;
void
clearbuffer ()
{
g_list_foreach (copybuffer, freeobjlist, NULL);
g_list_free (copybuffer);
copybuffer = NULL;
staffsinbuffer = 0;
measurebreaksinbuffer = 0;
}
void
saveselection (struct scoreinfo *si)
{
/* staffnode *curstaff;
measurenode *curmeasure;
objnode *curobj;
objnode *theobjs;
mudelaobject *clonedobject;
gint i, j, k;*/
if (si->markstaffnum == 0) /* Indicator that there's no selection. */
return;
clearbuffer ();
staffsinbuffer = si->laststaffmarked - si->firststaffmarked + 1;
copytobuffer (si);
si->savebuffer = copybuffer;
clearbuffer ();
}
void
copytobuffer (struct scoreinfo *si)
{
staffnode *curstaff;
measurenode *curmeasure;
objnode *curobj;
objnode *theobjs;
mudelaobject *clonedobject;
gint i, j, k;
if (si->markstaffnum == 0) /* Indicator that there's no selection. */
return;
clearbuffer ();
staffsinbuffer = si->laststaffmarked - si->firststaffmarked + 1;
/* Staff loop. */
for (i = si->firststaffmarked, curstaff = g_list_nth (si->thescore, i - 1);
curstaff && i <= si->laststaffmarked; curstaff = curstaff->next, i++)
{
/* Initialize first ->data for copybuffer to NULL. */
theobjs = NULL;
/* Measure loop. */
for (j = si->firstmeasuremarked, k = si->firstobjmarked,
curmeasure = g_list_nth (firstmeasurenode (curstaff), j - 1);
curmeasure && j <= si->lastmeasuremarked;
curmeasure = curmeasure->next, j++)
{
for (curobj = g_list_nth (curmeasure->data, k);
/* cursor_x is 0-indexed */
curobj && (j < si->lastmeasuremarked
|| k <= si->lastobjmarked);
curobj = curobj->next, k++)
{
clonedobject = clone_object (curobj->data);
theobjs = g_list_append (theobjs, clonedobject);
} /* End object loop */
if (j < si->lastmeasuremarked || k < si->lastobjmarked
|| staffsinbuffer > 1)
{
/* That is, there's another measure, the cursor is in appending
position, or the selection spans multiple staffs, in which case
another measure boundary should be added. */
theobjs = g_list_append (theobjs, newmeasurebreakobject ());
if (i == si->firststaffmarked)
measurebreaksinbuffer++;
}
k = 0; /* Set it for next run through object loop */
} /* End measure loop */
copybuffer = g_list_append (copybuffer, theobjs);
} /* End staff loop */
}
void
cuttobuffer (struct scoreinfo *si)
{
staffnode *curstaff;
measurenode *curmeasure;
objnode *tempobj;
gint i, j, max;
copytobuffer (si);
if (staffsinbuffer == 1)
{
/* Just a single staff is a special case, again. */
j = si->firstmeasuremarked;
curmeasure = g_list_nth (firstmeasurenode (si->currentstaff), j - 1);
/* Clear the relevant part of the first measure selected */
if (measurebreaksinbuffer)
max = G_MAXINT;
else
max = si->lastobjmarked;
for (i = si->firstobjmarked;
((tempobj = g_list_nth (curmeasure->data, si->firstobjmarked))
&& i <= max); i++)
{
curmeasure->data = g_list_remove_link (curmeasure->data, tempobj);
freeobject (tempobj->data);
g_list_free_1 (tempobj);
}
j++;
curmeasure = curmeasure->next;
if (!si->thescore->next)
{
/* That is, the score has only this one staff */
curmeasure = removemeasures (si, j - 1, measurebreaksinbuffer - 1);
j += measurebreaksinbuffer - 1;
}
else
for (; curmeasure && j < si->lastmeasuremarked;
curmeasure = curmeasure->next, j++)
{
freeobjlist (curmeasure->data, NULL);
curmeasure->data = NULL;
}
/* Now clear the relevant part of the last measure selected */
if (j <= si->lastmeasuremarked)
{
for (i = 0; curmeasure->data && i <= si->lastobjmarked; i++)
{
tempobj = curmeasure->data;
curmeasure->data =
g_list_remove_link (curmeasure->data, tempobj);
freeobject (tempobj->data);
g_list_free_1 (tempobj);
}
/* And delete it, if the measure's been cleared and there's only
one staff. */
if (!curmeasure->data && !si->thescore->next)
removemeasures (si, j - 1, 1);
}
showwhichaccidentalswholestaff (si->currentstaff->data);
beamsandstemdirswholestaff (si->currentstaff->data);
}
else
{ /* Multiple staff selection */
if (staffsinbuffer == g_list_length (si->thescore))
{
/* Every staff was part of the selection */
removemeasures (si, si->firstmeasuremarked - 1,
measurebreaksinbuffer);
for (curstaff = si->thescore; curstaff; curstaff = curstaff->next)
{
showwhichaccidentalswholestaff (curstaff->data);
beamsandstemdirswholestaff (curstaff->data);
}
}
else
{
/* Staff loop */
for (i = si->firststaffmarked,
curstaff = g_list_nth (si->thescore, i - 1);
curstaff && i <= si->laststaffmarked;
curstaff = curstaff->next, i++)
{
/* Measure loop */
for (j = si->firstmeasuremarked,
curmeasure = g_list_nth (firstmeasurenode (curstaff),
j - 1);
curmeasure && j <= si->lastmeasuremarked;
curmeasure = curmeasure->next, j++)
{
freeobjlist (curmeasure->data, NULL);
curmeasure->data = NULL;
}
showwhichaccidentalswholestaff (curstaff->data);
beamsandstemdirswholestaff (curstaff->data);
}
}
}
si->markstaffnum = 0;
/* And set some currents. This would probably be better to split off
* into a more-generalized version of setcurrents or something;
* what's here is more-or-less copied from deleteobject in
* commandfuncs */
si->currentmeasurenum = si->firstmeasuremarked;
si->currentmeasure = g_list_nth (firstmeasurenode (si->currentstaff),
si->currentmeasurenum - 1);
si->cursor_x = si->firstobjmarked;
if (si->cursor_x < g_list_length (si->currentmeasure->data))
{
si->currentobject = g_list_nth (si->currentmeasure->data, si->cursor_x);
si->cursor_appending = FALSE;
}
else
{
si->currentobject = g_list_last (si->currentmeasure->data);
si->cursor_appending = TRUE;
}
/* isoffleftside; */
find_xes_in_all_measures (si);
nudgerightward (si);
gtk_widget_draw (si->scorearea, NULL);
}
/* The updates that are done towards the bottom of this function -
* beamsandstemdirswholestaff, find_xes_in_all_measures, etc. - are
* too much gruntwork and are inefficient in terms of everything
* but additional lines-of-code required for implementation. */
void
pastefrombuffer (struct scoreinfo *si)
{
staffnode *curstaff;
measurenode *curmeasure;
GList *curbuffernode = copybuffer;
objnode *curbufferobj;
gint insertat, initialinsertat;
mudelaobject *clonedobject;
/* gboolean clefflag = FALSE;
gboolean timesigflag = FALSE;
gboolean keysigflag = FALSE; */
gint i, initialj, j;
gint measurestoadd = 0;
/* First, check to see if the insertion is taking place only in
* blank measures. If not, insert as many measures as is appropriate. */
initialj = (staffsinbuffer == 1 && si->cursor_x);
for (i = 0, curstaff = si->currentstaff;
curstaff && i < staffsinbuffer; curstaff = curstaff->next, i++)
for (j = initialj,
curmeasure = g_list_nth (firstmeasurenode (curstaff),
si->currentmeasurenum - 1 + j);
curmeasure && j < measurebreaksinbuffer;
curmeasure = curmeasure->next, j++)
if (curmeasure->data)
{ /* A-ha! This measure has something in it! */
measurestoadd = measurebreaksinbuffer - initialj;
goto out; /* Multilevel break, essentially */
}
out:
if (measurestoadd > 0)
addmeasures (si, si->currentmeasurenum - 1 + initialj, measurestoadd);
/* All right. Any necessary measures have been inserted - now paste away */
if (staffsinbuffer == 1)
initialinsertat = si->cursor_x;
else
initialinsertat = 0;
for (curstaff = si->currentstaff; curstaff && curbuffernode;
curstaff = curstaff->next, curbuffernode = curbuffernode->next)
{
curmeasure = g_list_nth (firstmeasurenode (curstaff),
si->currentmeasurenum - 1);
insertat = initialinsertat;
for (curbufferobj = curbuffernode->data; curbufferobj && curmeasure;
curbufferobj = curbufferobj->next)
{
if (((mudelaobject *) curbufferobj->data)->type == MEASUREBREAK)
{
curmeasure = curmeasure->next;
insertat = 0;
}
else
{
clonedobject = clone_object (curbufferobj->data);
curmeasure->data = g_list_insert (curmeasure->data,
clonedobject, insertat);
insertat++;
}
} /* End bufferobj loop */
showwhichaccidentalswholestaff (curstaff->data);
beamsandstemdirswholestaff (curstaff->data);
} /* End staff loop */
find_xes_in_all_measures (si);
nudgerightward (si);
si->haschanged = TRUE;
si->currentmeasure = g_list_nth (firstmeasurenode (si->currentstaff),
si->currentmeasurenum - 1);
si->currentobject = g_list_nth (si->currentmeasure->data, initialinsertat);
if (!si->currentobject)
/* Yah. There wasn't anything in the buffer after all. */
si->cursor_appending = TRUE;
else
si->cursor_appending = FALSE;
gtk_widget_draw (si->scorearea, NULL);
}
void
set_mark (struct scoreinfo *si)
{
si->markstaffnum = si->currentstaffnum;
si->markmeasurenum = si->currentmeasurenum;
si->markcursor_x = si->cursor_x;
calcmarkboundaries (si);
}
void
unset_mark (struct scoreinfo *si)
{
si->markstaffnum = 0;
calcmarkboundaries (si);
}
void
copywrapper (gpointer data, guint callback_action, GtkWidget * widget)
{
copytobuffer (data);
}
void
cutwrapper (gpointer data, guint callback_action, GtkWidget * widget)
{
cuttobuffer (data);
}
void
pastewrapper (gpointer data, guint callback_action, GtkWidget * widget)
{
pastefrombuffer (data);
}
void
saveselwrapper (gpointer data, guint callback_action, GtkWidget * widget)
{
saveselection (data);
}
void
mark_boundaries_helper (struct scoreinfo *si, gint mark_staff,
gint mark_measure, gint mark_object, gint point_staff,
gint point_measure, gint point_object,
enum drag_selection_type type)
{
if (mark_staff)
{
si->firststaffmarked = MIN (mark_staff, point_staff);
si->laststaffmarked = MAX (mark_staff, point_staff);
switch (type)
{
case NO_DRAG:
/* error, really. */
break;
case NORMAL_SELECT:
case WHOLE_MEASURES:
/* I was thinking of handling these with a fallthrough, but
the commonality in setting si->firstmeasuremarked and
si->lastmeasuremarked caused it not to work out cleanly. */
si->firstmeasuremarked = MIN (mark_measure, point_measure);
si->lastmeasuremarked = MAX (mark_measure, point_measure);
if (type == NORMAL_SELECT
&& si->firststaffmarked == si->laststaffmarked)
{
if (mark_measure < point_measure)
{
si->firstobjmarked = mark_object;
si->lastobjmarked = point_object;
}
else if (mark_measure > point_measure)
{
si->firstobjmarked = point_object;
si->lastobjmarked = mark_object;
}
else
{ /* Same measure */
si->firstobjmarked = MIN (mark_object, point_object);
si->lastobjmarked = MAX (mark_object, point_object);
}
}
else
{
si->firstobjmarked = 0;
si->lastobjmarked = G_MAXINT;
}
break;
case WHOLE_STAFFS:
si->firstmeasuremarked = 1;
si->lastmeasuremarked = g_list_length (si->measurewidths);
si->firstobjmarked = 0;
si->lastobjmarked = G_MAXINT;
}
}
}
void
calcmarkboundaries (struct scoreinfo *si)
{
mark_boundaries_helper (si, si->markstaffnum, si->markmeasurenum,
si->markcursor_x, si->currentstaffnum,
si->currentmeasurenum, si->cursor_x, NORMAL_SELECT);
}
|