~valavanisalex/ubuntu/precise/inkscape/fix-943984

« back to all changes in this revision

Viewing changes to inkscape-0.47pre1/src/sp-marker-loc.h

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2009-07-02 17:09:45 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20090702170945-nn6d6zswovbwju1t
Tags: 0.47~pre1-0ubuntu1
* New upstream release.
  - Don't constrain maximization on small resolution devices (pre0)
    (LP: #348842)
  - Fixes segfault on startup (pre0)
    (LP: #391149)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef SEEN_SP_MARKER_LOC_H
 
2
#define SEEN_SP_MARKER_LOC_H
 
3
 
 
4
/**
 
5
 * These enums are to allow us to have 4-element arrays that represent a set of marker locations
 
6
 * (all, start, mid, and end).  This allows us to iterate through the array in places where we need
 
7
 * to do a process across all of the markers, instead of separate code stanzas for each.
 
8
 */
 
9
enum SPMarkerLoc {
 
10
    SP_MARKER_LOC = 0,
 
11
    SP_MARKER_LOC_START = 1,
 
12
    SP_MARKER_LOC_MID = 2,
 
13
    SP_MARKER_LOC_END = 3,
 
14
    SP_MARKER_LOC_QTY = 4
 
15
};
 
16
 
 
17
 
 
18
#endif /* !SEEN_SP_MARKER_LOC_H */
 
19
 
 
20
/*
 
21
  Local Variables:
 
22
  mode:c++
 
23
  c-file-style:"stroustrup"
 
24
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
 
25
  indent-tabs-mode:nil
 
26
  fill-column:99
 
27
  End:
 
28
*/
 
29
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :