[gnote] Add common actions to note view
- From: Aurimas Černius <aurimasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnote] Add common actions to note view
- Date: Sun, 11 Nov 2018 15:36:31 +0000 (UTC)
commit 7d86bcfab5da38ba9c5efefe39dca5aa2571807f
Author: Aurimas Černius <aurisc4 gmail com>
Date: Sun Nov 11 17:18:29 2018 +0200
Add common actions to note view
src/notewindow.cpp | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
---
diff --git a/src/notewindow.cpp b/src/notewindow.cpp
index 8ecc937d..a5ae1ed4 100644
--- a/src/notewindow.cpp
+++ b/src/notewindow.cpp
@@ -1,7 +1,7 @@
/*
* gnote
*
- * Copyright (C) 2011-2017 Aurimas Cernius
+ * Copyright (C) 2011-2018 Aurimas Cernius
* Copyright (C) 2009 Hubert Figuiere
*
* This program is free software: you can redistribute it and/or modify
@@ -309,6 +309,11 @@ namespace gnote {
std::vector<Gtk::Widget*> widgets;
std::map<int, Gtk::Widget*> widget_map;
+ Gtk::Widget *new_note = manage(utils::create_popover_button("app.new-note", _("_New Note")));
+ widgets.push_back(new_note);
+ Gtk::Widget *new_window = manage(utils::create_popover_button("app.new-window", _("New _Window")));
+ widgets.push_back(new_window);
+ widgets.push_back(NULL);
Gtk::Widget *undo = manage(utils::create_popover_button("win.undo", _("_Undo")));
widgets.push_back(undo);
Gtk::Widget *redo = manage(utils::create_popover_button("win.redo", _("_Redo")));
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]