diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2022-07-04 20:16:18 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2022-07-04 20:44:47 +0200 |
commit | a1b2225750f5f8e326d5335e0c0d11fffc291a02 (patch) | |
tree | 302a506a68606ea484a2a2d3da90d17a54fa6d56 /fiv-context-menu.h | |
parent | b87a109d612c7e19fcc8f88af6ff7a859ae4091c (diff) | |
download | fiv-a1b2225750f5f8e326d5335e0c0d11fffc291a02.tar.gz fiv-a1b2225750f5f8e326d5335e0c0d11fffc291a02.tar.xz fiv-a1b2225750f5f8e326d5335e0c0d11fffc291a02.zip |
Move the browser's popup menu to its own file
Diffstat (limited to 'fiv-context-menu.h')
-rw-r--r-- | fiv-context-menu.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/fiv-context-menu.h b/fiv-context-menu.h new file mode 100644 index 0000000..a226d0a --- /dev/null +++ b/fiv-context-menu.h @@ -0,0 +1,20 @@ +// +// fiv-context-menu.h: popup menu +// +// Copyright (c) 2022, Přemysl Eric Janouch <p@janouch.name> +// +// Permission to use, copy, modify, and/or distribute this software for any +// purpose with or without fee is hereby granted. +// +// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +// SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION +// OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +// CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +// + +#include <gtk/gtk.h> + +GtkMenu *fiv_context_menu_new(GtkWidget *widget, GFile *file); |