aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mainwindow.c4
-rw-r--r--src/presentation.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/src/mainwindow.c b/src/mainwindow.c
index 6feaddc..87bb07d 100644
--- a/src/mainwindow.c
+++ b/src/mainwindow.c
@@ -206,6 +206,10 @@ static void add_menu_bar(struct presentation *p, GtkWidget *vbox)
{ "QuitAction", GTK_STOCK_QUIT, "_Quit", NULL, NULL,
G_CALLBACK(quit_sig) },
+ { "ToolsAction", NULL, "_Tools", NULL, NULL, NULL },
+ { "TSlideshowAction", GTK_STOCK_FULLSCREEN, "_Start slideshow",
+ "F5", NULL, G_CALLBACK(start_slideshow_sig) },
+
{ "HelpAction", NULL, "_Help", NULL, NULL, NULL },
{ "AboutAction", GTK_STOCK_ABOUT, "_About...",
NULL, NULL, G_CALLBACK(about_sig) },
diff --git a/src/presentation.h b/src/presentation.h
index d9583fe..ba4dd90 100644
--- a/src/presentation.h
+++ b/src/presentation.h
@@ -57,6 +57,7 @@ struct presentation
GtkIMContext *im_context;
GtkWidget *slideshow;
GtkWidget *ss_drawingarea;
+ GdkCursor *blank_cursor;
double slide_width;
double slide_height;