1 /* AbiWord
2  * Copyright (C) 2003 Dom Lachowicz
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_MAILMERGE_H
21 #define AP_UNIXDIALOG_MAILMERGE_H
22 
23 #include "ap_Dialog_MailMerge.h"
24 
25 class XAP_UnixFrame;
26 
27 /*****************************************************************/
28 
29 class AP_UnixDialog_MailMerge: public AP_Dialog_MailMerge
30 {
31 public:
32 	AP_UnixDialog_MailMerge(XAP_DialogFactory * pDlgFactory, XAP_Dialog_Id id);
33 	virtual ~AP_UnixDialog_MailMerge(void);
34 
35 	virtual void			runModeless(XAP_Frame * pFrame);
activate(void)36 	virtual void activate(void) {gdk_window_raise (gtk_widget_get_window(m_windowMain));}
destroy(void)37 	virtual void destroy(void) {modeless_cleanup();}
38 
39 	static XAP_Dialog *		static_constructor(XAP_DialogFactory *, XAP_Dialog_Id id);
40 
41 	void fieldClicked(UT_uint32 index);
42 
43 	void event_AddClicked ();
44 	void event_Close();
45 
46 protected:
47 	virtual void setFieldList();
48 
49 private:
50 
51 	// private construction functions
52 	GtkWidget *  _constructWindow(void);
53 
54 	GtkWidget * m_windowMain;
55 	GtkWidget * m_entry;
56 	GtkWidget * m_treeview;
57 };
58 
59 #endif /* AP_UNIXDIALOG_BREAK_H */
60