| 1 |
|
/** |
| 2 |
|
Copyright 2002 Cyril Picard |
| 3 |
|
|
| 4 |
|
This file is part of the GEDCOMViewer tool |
| 5 |
|
(developed within the Genealogy Free Software Tools project). |
| 6 |
|
|
| 7 |
|
The GEDCOMViewer tool is free software; you can redistribute it and/or modify |
| 8 |
|
it under the terms of the GNU General Public License as published by |
| 9 |
|
the Free Software Foundation; either version 2 of the License, or |
| 10 |
|
(at your option) any later version. |
| 11 |
|
|
| 12 |
|
The GEDCOMViewer tool is distributed in the hope that it will be useful, |
| 13 |
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 |
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 |
|
GNU General Public License for more details. |
| 16 |
|
|
| 17 |
|
You should have received a copy of the GNU General Public License |
| 18 |
|
along with the GEDCOMViewer tool ; if not, write to the Free Software |
| 19 |
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 20 |
|
|
| 21 |
|
**/ |
| 22 |
#ifndef _BAKERY_GATEWAY_VIEW_HH_ |
#ifndef _BAKERY_GATEWAY_VIEW_HH_ |
| 23 |
#define _BAKERY_GATEWAY_VIEW_HH_ |
#define _BAKERY_GATEWAY_VIEW_HH_ |
| 24 |
|
|
| 37 |
#include "BakeryGateway/ViewPersonalNameNote.hh" |
#include "BakeryGateway/ViewPersonalNameNote.hh" |
| 38 |
#include "BakeryGateway/ViewIndividualRecordNote.hh" |
#include "BakeryGateway/ViewIndividualRecordNote.hh" |
| 39 |
#include "BakeryGateway/ViewSpouseToFamilyLinkNoteFactory.hh" |
#include "BakeryGateway/ViewSpouseToFamilyLinkNoteFactory.hh" |
| 40 |
|
#include "BakeryGateway/ViewHeader.hh" |
| 41 |
|
|
| 42 |
namespace BakeryGateway { |
namespace BakeryGateway { |
| 43 |
class View : public MMIMain, |
class View : public MMIMain, |
| 48 |
virtual ~View(); |
virtual ~View(); |
| 49 |
void on_menu_TreeBrowser(void); |
void on_menu_TreeBrowser(void); |
| 50 |
void on_menu_ListBrowser(void); |
void on_menu_ListBrowser(void); |
| 51 |
|
void on_menu_DataHeader(void); |
| 52 |
protected: |
protected: |
| 53 |
private: |
private: |
| 54 |
void DeleteViewTreeBrowser(void); |
void DeleteViewTreeBrowser(void); |
| 55 |
int cb_DeleteViewTreeBrowser(GdkEventAny *); |
int cb_DeleteViewTreeBrowser(GdkEventAny *); |
| 56 |
void DeleteViewListBrowser(void); |
void DeleteViewListBrowser(void); |
| 57 |
int cb_DeleteViewListBrowser(GdkEventAny *); |
int cb_DeleteViewListBrowser(GdkEventAny *); |
| 58 |
|
void DeleteViewDataHeader(void); |
| 59 |
|
int cb_DeleteViewDataHeader(GdkEventAny *); |
| 60 |
ViewIndividualRecord * _view_individualrecord; |
ViewIndividualRecord * _view_individualrecord; |
| 61 |
ViewPersonalName * _view_personalname; |
ViewPersonalName * _view_personalname; |
| 62 |
ViewIndividualAttributes * _view_individualattributes; |
ViewIndividualAttributes * _view_individualattributes; |
| 67 |
ViewListBrowser * _view_list_browser; |
ViewListBrowser * _view_list_browser; |
| 68 |
ViewPersonalNameNote * _view_personalname_note; |
ViewPersonalNameNote * _view_personalname_note; |
| 69 |
ViewIndividualRecordNote * _view_individualrecord_note; |
ViewIndividualRecordNote * _view_individualrecord_note; |
| 70 |
|
ViewHeader * _view_header; |
| 71 |
}; |
}; |
| 72 |
}; |
}; |
| 73 |
|
|