aboutsummaryrefslogtreecommitdiff
path: root/src/frame.h
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2013-03-02 23:56:05 +0100
committerThomas White <taw@bitwiz.org.uk>2013-03-02 23:56:05 +0100
commit5f85864f4d82a42f30160299d7897720e865c454 (patch)
tree7d7298d480f16706a547520bac908a638c098313 /src/frame.h
parent59c7b765c44ee2ae3e81366bea2fc149e2466d13 (diff)
New wrapping stuff
Diffstat (limited to 'src/frame.h')
-rw-r--r--src/frame.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/frame.h b/src/frame.h
index 832473c..6c643ae 100644
--- a/src/frame.h
+++ b/src/frame.h
@@ -74,35 +74,6 @@ struct layout_parameters
};
-enum wrap_box_type
-{
- WRAP_BOX_PANGO,
-};
-
-
-struct wrap_box
-{
- enum wrap_box_type type;
- int width; /* Pango units */
-
- /* For type == WRAP_BOX_PANGO */
- PangoGlyphItem *glyph_item;
- char *text;
-};
-
-
-struct wrap_line
-{
- int width;
- int height; /* Pango units */
- int ascent; /* Pango units */
-
- int n_boxes;
- int max_boxes;
- struct wrap_box *boxes;
-};
-
-
struct frame
{
struct frame **children;