diff options
Diffstat (limited to 'src/presentation.h')
-rw-r--r-- | src/presentation.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/presentation.h b/src/presentation.h index fe0abd2..4acc005 100644 --- a/src/presentation.h +++ b/src/presentation.h @@ -45,6 +45,13 @@ struct slide }; +enum tool +{ + TOOL_SELECT, + TOOL_TEXT, +}; + + struct presentation { char *titlebar; @@ -73,6 +80,9 @@ struct presentation struct slide *view_slide; struct object *editing_object; + /* Tool status */ + enum tool tool; + unsigned int num_slides; struct slide **slides; }; |