1 /* AbiWord
2  * Copyright (C) 1998 AbiSource, Inc.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301 USA.
18  */
19 
20 #ifndef AP_UNIXDIALOG_INSERT_DATETIME_H
21 #define AP_UNIXDIALOG_INSERT_DATETIME_H
22 
23 #include "ap_Dialog_Insert_DateTime.h"
24 
25 class XAP_UnixFrame;
26 
27 /*****************************************************************/
28 
29 class AP_UnixDialog_Insert_DateTime: public AP_Dialog_Insert_DateTime
30 {
31 public:
32 	AP_UnixDialog_Insert_DateTime(XAP_DialogFactory * pDlgFactory, XAP_Dialog_Id id);
33 	virtual ~AP_UnixDialog_Insert_DateTime(void);
34 
35 	virtual void			runModal(XAP_Frame * pFrame);
36 
37 	static XAP_Dialog *		static_constructor(XAP_DialogFactory *, XAP_Dialog_Id id);
38 
39 	// callbacks can fire these events
40 
41 	virtual void			event_Insert(void);
42 
43 protected:
44 
45 	static void s_date_dblclicked(GtkTreeView *treeview,
46 								  GtkTreePath *arg1,
47 								  GtkTreeViewColumn *arg2,
48 								  AP_UnixDialog_Insert_DateTime * me);
49 
50 	// private construction functions
51 	virtual GtkWidget * _constructWindow(void);
52 	void				_populateWindowData(void);
53 
54 	// pointers to widgets we need to query/set
55 	GtkWidget * m_windowMain;
56 
57 	// group of radio buttons for easy traversal
58 	GtkWidget * m_tvFormats;
59 };
60 
61 #endif /* AP_UNIXDIALOG_INSERT_DATETIME_H */
62