1 /*
2     Gpredict: Real-time satellite tracking and orbit prediction program
3 
4     Copyright (C)  2001-2017  Alexandru Csete, OZ9AEC.
5 
6     Comments, questions and bugreports should be submitted via
7     http://sourceforge.net/projects/gpredict/
8     More details can be found at the project home page:
9 
10             http://gpredict.oz9aec.net/
11 
12     This program is free software; you can redistribute it and/or modify
13     it under the terms of the GNU General Public License as published by
14     the Free Software Foundation; either version 2 of the License, or
15     (at your option) any later version.
16 
17     This program is distributed in the hope that it will be useful,
18     but WITHOUT ANY WARRANTY; without even the implied warranty of
19     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20     GNU General Public License for more details.
21 
22     You should have received a copy of the GNU General Public License
23     along with this program; if not, visit http://www.fsf.org/
24 */
25 #ifndef GTK_POLAR_VIEW_POPUP_H
26 #define GTK_POLAR_VIEW_POPUP_H 1
27 
28 #include <gtk/gtk.h>
29 
30 #include "gtk-sat-data.h"
31 #include "gtk-polar-view.h"
32 #include "sgpsdp/sgp4sdp4.h"
33 
34 
35 void            gtk_polar_view_popup_exec(sat_t * sat, qth_t * qth,
36                                           GtkPolarView * polv,
37                                           GdkEventButton * event,
38                                           GtkWidget * toplevel);
39 
40 #endif
41