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

« back to all changes in this revision

Viewing changes to inkscape-0.47pre1/src/graphlayout/graphlayout.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
/**
 
2
 * \brief graph layout functions
 
3
 *
 
4
 * Authors:
 
5
 *   Tim Dwyer <tgdwyer@gmail.com>
 
6
 *
 
7
 * Copyright (C) 2005 Authors
 
8
 *
 
9
 * Released under GNU GPL.  Read the file 'COPYING' for more information.
 
10
 */
 
11
 
 
12
#ifndef SEEN_GRAPHLAYOUT_H
 
13
#define SEEN_GRAPHLAYOUT_H
 
14
 
 
15
struct _GSList;
 
16
void graphlayout(_GSList const *const items);
 
17
class SPItem;
 
18
bool isConnector(SPItem const *const item);
 
19
#include <list>
 
20
void filterConnectors(_GSList const *const items, std::list<SPItem *> &filtered);
 
21
#endif // SEEN_GRAPHLAYOUT_H