1 // GTK_P1DVIEW_WND.H : write a short description here...
2 
3 // Copyright (C) 2005 Tommi Hassinen.
4 
5 // This package is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 
10 // This package is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
14 
15 // You should have received a copy of the GNU General Public License
16 // along with this package; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 
19 /*################################################################################################*/
20 
21 #include "ghemicalconfig2.h"
22 
23 #ifndef GTK_P1DVIEW_WND_H
24 #define GTK_P1DVIEW_WND_H
25 
26 #include "gtk_wnd.h"
27 
28 /*################################################################################################*/
29 
30 class gtk_p1dview_wnd :
31 	public gtk_wnd
32 {
33 	private:
34 
35 	static GtkActionEntry entries[];
36 	static const char * ui_description;
37 
38 	public:
39 
40 	gtk_p1dview_wnd(bool);
41 	~gtk_p1dview_wnd(void);
42 
43 	static void popup_AttachDetach(GtkWidget *, gpointer);
44 	static void popup_DeleteView(GtkWidget *, gpointer);
45 };
46 
47 /*################################################################################################*/
48 
49 #endif	// GTK_P1DVIEW_WND_H
50 
51 // eof
52