Newer
Older
/***********************************************************************
* $Id: markfuncs.cpp 2928 2008-12-29 19:16:57Z lyle $
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
***********************************************************************/
#include "FXRbCommon.h"
#ifdef MARK
#undef MARK
#endif
#define MARK(p) rb_gc_mark(reinterpret_cast<VALUE>((p)))
template<class BASECLASS,class SUBCLASS>
static void delete_if_not_owned(BASECLASS* self,SUBCLASS*){
if(self!=0){
if(!FXRbIsBorrowed(self)){
if(self->isMemberOf(FXMETACLASS(SUBCLASS))){
if(!dynamic_cast<SUBCLASS*>(self)->owned){
delete self; // also unregisters it
}
}
}
FXRbUnregisterRubyObj(self);
}
}
template<class BASECLASS,class SUBCLASS>
static void delete_if_not_owned_by_app(BASECLASS* self,SUBCLASS*){
if(self!=0){
if(!FXRbIsBorrowed(self)){
if(self->isMemberOf(FXMETACLASS(SUBCLASS))){
if(!dynamic_cast<SUBCLASS*>(self)->ownedByApp){
delete self; // also unregisters it
}
}
}
FXRbUnregisterRubyObj(self);
}
}
// FIXME: How to get to the target objects stored in the accelerator
// table? This is currently private (not protected) data for the class.
void FXRbAccelTable::markfunc(FXAccelTable* accelTable){
FXRbObject::markfunc(accelTable);
}
// Mark dependencies for the GC
void FXRbObject::markfunc(FXObject* obj){
FXTRACE((100,"%s::markfunc(%p)\n",obj?obj->getClassName():"FXRbObject",obj));
}
void FXRbObject::freefunc(FXObject* self){
if(self!=0){
// Unregister, but don't destroy, borrowed references
if(FXRbIsBorrowed(self)){
FXRbUnregisterRubyObj(self);
return;
}
const FXchar* classname=self->getClassName();
FXASSERT(classname!=0);
FXASSERT(strlen(classname)>3);
if(classname[0]=='F' && classname[1]=='X' && classname[2]=='R' && classname[3]=='b'){
delete self;
}
else{
FXRbUnregisterRubyObj(self);
}
}
}
void FXRbIconSource::markfunc(FXIconSource* iconSource){
FXRbObject::markfunc(iconSource);
}
void FXRbTranslator::markfunc(FXTranslator* translator){
FXRbObject::markfunc(translator);
if(translator){
FXRbGcMark(translator->FXTranslator::getApp());
FXRbGcMark(translator->FXTranslator::getTextCodec());
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
}
}
void FXRbBMPIcon::markfunc(FXBMPIcon *icon){
FXRbIcon::markfunc(icon);
}
void FXRbIcon::markfunc(FXIcon* icon){
FXRbImage::markfunc(icon);
}
void FXRbImage::markfunc(FXImage* image){
FXRbDrawable::markfunc(image);
}
void FXRbBMPImage::markfunc(FXBMPImage* image){
FXRbImage::markfunc(image);
}
void FXRbBitmap::markfunc(FXBitmap* bitmap){
FXRbDrawable::markfunc(bitmap);
}
void FXRbButton::markfunc(FXButton* btn){
FXRbLabel::markfunc(btn);
}
void FXRbKnob::markfunc(FXKnob* self){
FXRbFrame::markfunc(self);
}
void FXRbLabel::markfunc(FXLabel* self){
FXRbFrame::markfunc(self);
if(self){
FXRbGcMark(self->FXLabel::getFont());
FXRbGcMark(self->FXLabel::getIcon());
}
}
void FXRbFrame::markfunc(FXFrame* frame){
FXRbWindow::markfunc(frame);
}
void FXRb7Segment::markfunc(FX7Segment* seg){
FXRbFrame::markfunc(seg);
}
void FXRbDockHandler::markfunc(FXDockHandler *dockhandler){
FXRbFrame::markfunc(dockhandler);
}
void FXRbDockTitle::markfunc(FXDockTitle *self){
FXRbDockHandler::markfunc(self);
if(self){
FXRbGcMark(self->FXDockTitle::getFont());
}
}
void FXRbDrawable::markfunc(FXDrawable* drawable){
FXRbId::markfunc(drawable);
if(drawable) FXRbGcMark(drawable->FXDrawable::getVisual());
}
void FXRbId::markfunc(FXId* self){
FXRbObject::markfunc(self);
if(self){
FXRbGcMark(self->FXId::getApp());
if(void *d=self->FXId::getUserData())
MARK(d);
}
}
void FXRbCanvas::markfunc(FXCanvas* canvas){
FXRbWindow::markfunc(canvas);
}
void FXRbCheckButton::markfunc(FXCheckButton* cb){
FXRbLabel::markfunc(cb);
}
void FXRbColorDialog::markfunc(FXColorDialog* dlg){
FXRbDialogBox::markfunc(dlg);
}
void FXRbChoiceBox::markfunc(FXChoiceBox* box){
FXRbDialogBox::markfunc(box);
}
void FXRbWindow::markfunc(FXWindow* self){
FXRbDrawable::markfunc(self);
if(self){
FXRbGcMark(self->FXWindow::getParent());
FXRbGcMark(self->FXWindow::getOwner());
FXRbGcMark(self->FXWindow::getShell());
FXRbGcMark(self->FXWindow::getRoot());
// FXRbGcMark(self->FXWindow::getNext());
// FXRbGcMark(self->FXWindow::getPrev());
FXRbGcMark(self->FXWindow::getFocus());
FXRbGcMark(self->FXWindow::getTarget());
FXRbGcMark(self->FXWindow::getAccelTable());
FXRbGcMark(self->FXWindow::getDefaultCursor());
FXRbGcMark(self->FXWindow::getDragCursor());
register FXWindow* child=self->FXWindow::getFirst();
while(child!=NULL){
child=child->FXWindow::getNext();
}
}
}
void FXRbDialogBox::markfunc(FXDialogBox* dlg){
FXRbTopWindow::markfunc(dlg);
}
void FXRbTopWindow::markfunc(FXTopWindow* top){
FXRbShell::markfunc(top);
if(top){
FXRbGcMark(top->FXTopWindow::getIcon());
FXRbGcMark(top->FXTopWindow::getMiniIcon());
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
}
}
void FXRbShell::markfunc(FXShell* shell){
FXRbComposite::markfunc(shell);
}
void FXRbComposite::markfunc(FXComposite* c){
FXRbWindow::markfunc(c);
}
void FXRbColorSelector::markfunc(FXColorSelector* cs){
FXRbPacker::markfunc(cs);
}
void FXRbPacker::markfunc(FXPacker* packer){
FXRbComposite::markfunc(packer);
}
void FXRbDockBar::markfunc(FXDockBar* dockbar){
FXRbPacker::markfunc(dockbar);
}
void FXRbDockSite::markfunc(FXDockSite* dockSite){
FXRbPacker::markfunc(dockSite);
}
void FXRbSpring::markfunc(FXSpring* self){
FXRbPacker::markfunc(self);
}
void FXRbHorizontalFrame::markfunc(FXHorizontalFrame* self){
FXRbPacker::markfunc(self);
}
void FXRbVerticalFrame::markfunc(FXVerticalFrame* self){
FXRbPacker::markfunc(self);
}
void FXRbGroupBox::markfunc(FXGroupBox* self){
FXRbPacker::markfunc(self);
if(self){
FXRbGcMark(self->FXGroupBox::getFont());
}
}
void FXRbColorWell::markfunc(FXColorWell* cw){
FXRbFrame::markfunc(cw);
}
void FXRbComboBox::markfunc(FXComboBox* self){
FXRbPacker::markfunc(self);
if(self){
FXRbGcMark(self->FXComboBox::getFont());
for(FXint i=0; i<self->getNumItems(); i++){
if(void *d=self->FXComboBox::getItemData(i))
MARK(d);
}
}
}
void FXRbCursor::markfunc(FXCursor* cursor){
FXRbId::markfunc(cursor);
}
void FXRbCursor::freefunc(FXCursor* self){
delete_if_not_owned_by_app(self,reinterpret_cast<FXRbCursor*>(0));
}
void FXRbApp::markfunc(FXApp *self){
FXRbObject::markfunc(self);
if(self){
// Visuals
FXRbGcMark(self->FXApp::getMonoVisual());
FXRbGcMark(self->FXApp::getDefaultVisual());
FXRbGcMark(self->FXApp::getNormalFont());
FXRbGcMark(self->FXApp::getWaitCursor());
FXRbGcMark(self->FXApp::getDefaultCursor(DEF_ARROW_CURSOR));
FXRbGcMark(self->FXApp::getDefaultCursor(DEF_RARROW_CURSOR));
FXRbGcMark(self->FXApp::getDefaultCursor(DEF_TEXT_CURSOR));
FXRbGcMark(self->FXApp::getDefaultCursor(DEF_HSPLIT_CURSOR));
FXRbGcMark(self->FXApp::getDefaultCursor(DEF_VSPLIT_CURSOR));
FXRbGcMark(self->FXApp::getDefaultCursor(DEF_XSPLIT_CURSOR));
FXRbGcMark(self->FXApp::getDefaultCursor(DEF_SWATCH_CURSOR));
FXRbGcMark(self->FXApp::getDefaultCursor(DEF_MOVE_CURSOR));
FXRbGcMark(self->FXApp::getDefaultCursor(DEF_DRAGH_CURSOR));
FXRbGcMark(self->FXApp::getDefaultCursor(DEF_DRAGV_CURSOR));
FXRbGcMark(self->FXApp::getDefaultCursor(DEF_DRAGTL_CURSOR));
FXRbGcMark(self->FXApp::getDefaultCursor(DEF_DRAGBR_CURSOR));
FXRbGcMark(self->FXApp::getDefaultCursor(DEF_DRAGTR_CURSOR));
FXRbGcMark(self->FXApp::getDefaultCursor(DEF_DRAGBL_CURSOR));
FXRbGcMark(self->FXApp::getDefaultCursor(DEF_DNDSTOP_CURSOR));
FXRbGcMark(self->FXApp::getDefaultCursor(DEF_DNDCOPY_CURSOR));
FXRbGcMark(self->FXApp::getDefaultCursor(DEF_DNDMOVE_CURSOR));
FXRbGcMark(self->FXApp::getDefaultCursor(DEF_DNDLINK_CURSOR));
FXRbGcMark(self->FXApp::getDefaultCursor(DEF_CROSSHAIR_CURSOR));
FXRbGcMark(self->FXApp::getDefaultCursor(DEF_CORNERNE_CURSOR));
FXRbGcMark(self->FXApp::getDefaultCursor(DEF_CORNERNW_CURSOR));
FXRbGcMark(self->FXApp::getDefaultCursor(DEF_CORNERSE_CURSOR));
FXRbGcMark(self->FXApp::getDefaultCursor(DEF_CORNERSW_CURSOR));
FXRbGcMark(self->FXApp::getDefaultCursor(DEF_ROTATE_CURSOR));
FXRbGcMark(self->FXApp::getFocusWindow());
FXRbGcMark(self->FXApp::getCursorWindow());
/**
* Root window is a special case; popups (like FXTooltip) can be created
* without an "owner" by passing FXApp as the first argument to their
* constructor, but in fact the "owner" of these window is the root window.
* So unless we invoke FXRbRootWindow's mark function here, unowned windows
* like tooltips may get garbage-collected prematurely.
*/
if(self->FXApp::getRootWindow()){
FXRbGcMark(self->FXApp::getRootWindow());
FXRbRootWindow::markfunc(self->FXApp::getRootWindow());
FXRbGcMark(&(self->FXApp::reg()));
// Timers, chores and signals are recycled and should never be destroyed
}
}
void FXRbArrowButton::markfunc(FXArrowButton *btn){
FXRbFrame::markfunc(btn);
}
void FXRbDataTarget::markfunc(FXDataTarget* obj){
FXRbObject::markfunc(obj);
}
void FXRbMainWindow::markfunc(FXMainWindow* obj){
FXRbTopWindow::markfunc(obj);
}
void FXRbTreeItem::markfunc(FXTreeItem* self){
FXRbObject::markfunc(self);
if(self){
FXRbGcMark(self->FXTreeItem::getParent());
FXRbGcMark(self->FXTreeItem::getNext());
FXRbGcMark(self->FXTreeItem::getPrev());
for(FXTreeItem* item=self->FXTreeItem::getFirst(); item; item=item->FXTreeItem::getNext()){
FXRbGcMark(item);
FXRbTreeItem::markfunc(item);
}
FXRbGcMark(self->FXTreeItem::getBelow());
FXRbGcMark(self->FXTreeItem::getAbove());
FXRbGcMark(self->FXTreeItem::getOpenIcon());
FXRbGcMark(self->FXTreeItem::getClosedIcon());
if(void *d=self->FXTreeItem::getData())
MARK(d);
}
}
void FXRbTreeItem::freefunc(FXTreeItem* self){
if(self!=0){
if(!FXRbIsBorrowed(self)){
if(self->isMemberOf(FXMETACLASS(FXRbTreeItem))){
FXRbTreeItem* treeItem=dynamic_cast<FXRbTreeItem*>(self);
FXASSERT(treeItem);
FXTreeList* treeList=dynamic_cast<FXTreeList*>(treeItem->owner);
if(treeList){
FXRbUnregisterRubyObj(self); // MAYBE
treeList->removeItem(self,TRUE);
}
else{
FXTreeListBox* treeListBox=dynamic_cast<FXTreeListBox*>(treeItem->owner);
if(treeListBox){
treeListBox->removeItem(self);
}
}
}
FXRbUnregisterRubyObj(self);
}
}
void FXRbTreeList::markfunc(FXTreeList* self){
FXRbScrollArea::markfunc(self);
if(self){
for(FXTreeItem* item=self->FXTreeList::getFirstItem(); item; item=item->FXTreeItem::getNext()){
FXRbGcMark(item);
FXRbTreeItem::markfunc(item);
}
FXRbGcMark(self->FXTreeList::getFont());
}
}
void FXRbFoldingItem::markfunc(FXFoldingItem* self){
FXRbObject::markfunc(self);
if(self){
FXRbGcMark(self->FXFoldingItem::getParent());
FXRbGcMark(self->FXFoldingItem::getNext());
FXRbGcMark(self->FXFoldingItem::getPrev());
for(FXFoldingItem* item=self->FXFoldingItem::getFirst(); item; item=item->FXFoldingItem::getNext()){
FXRbGcMark(item);
FXRbFoldingItem::markfunc(item);
}
FXRbGcMark(self->FXFoldingItem::getBelow());
FXRbGcMark(self->FXFoldingItem::getAbove());
FXRbGcMark(self->FXFoldingItem::getOpenIcon());
FXRbGcMark(self->FXFoldingItem::getClosedIcon());
if(void *d=self->FXFoldingItem::getData())
MARK(d);
}
}
void FXRbFoldingItem::freefunc(FXFoldingItem* self){
delete_if_not_owned(self,reinterpret_cast<FXRbFoldingItem*>(0));
}
void FXRbFoldingList::markfunc(FXFoldingList* self){
FXRbScrollArea::markfunc(self);
if(self){
for(FXFoldingItem* item=self->FXFoldingList::getFirstItem(); item; item=item->FXFoldingItem::getNext()){
FXRbGcMark(item);
FXRbFoldingItem::markfunc(item);
}
FXRbGcMark(self->FXFoldingList::getFont());
}
}
void FXRbListItem::markfunc(FXListItem* self){
FXRbObject::markfunc(self);
if(self){
FXRbGcMark(self->FXListItem::getIcon());
if(void *d=self->FXListItem::getData())
MARK(d);
}
}
void FXRbListItem::freefunc(FXListItem* self){
delete_if_not_owned(self,reinterpret_cast<FXRbListItem*>(0));
}
void FXRbColorItem::markfunc(FXColorItem* self){
FXRbListItem::markfunc(self);
}
void FXRbColorItem::freefunc(FXColorItem* self){
delete_if_not_owned(self,reinterpret_cast<FXRbColorItem*>(0));
}
void FXRbList::markfunc(FXList* self){
FXRbScrollArea::markfunc(self);
if(self){
for(FXint i=0;i<self->FXList::getNumItems();i++){
FXListItem* item=self->FXList::getItem(i);
FXRbGcMark(item);
FXRbListItem::markfunc(item);
}
FXRbGcMark(self->FXList::getFont());
}
}
void FXRbColorList::markfunc(FXColorList* self){
FXRbList::markfunc(self);
}
void FXRbTableItem::markfunc(FXTableItem* self){
FXRbObject::markfunc(self);
if(self){
FXRbGcMark(self->FXTableItem::getIcon());
if(void* d=self->FXTableItem::getData())
MARK(d);
}
}
void FXRbTableItem::freefunc(FXTableItem* self){
delete_if_not_owned(self,reinterpret_cast<FXRbTableItem*>(0));
}
void FXRbTable::markfunc(FXTable* self){
register FXTableItem* item;
FXRbScrollArea::markfunc(self);
if(self){
FXRbGcMark(self->FXTable::getFont());
FXRbGcMark(self->FXTable::getRowHeaderFont());
FXRbGcMark(self->FXTable::getColumnHeaderFont());
for(FXint row=0;row<self->FXTable::getNumRows();row++){
for(FXint col=0;col<self->FXTable::getNumColumns();col++){
item=self->FXTable::getItem(row,col);
FXRbGcMark(item);
}
}
}
}
void FXRbHeaderItem::markfunc(FXHeaderItem* self){
FXRbObject::markfunc(self);
if(self){
FXRbGcMark(self->FXHeaderItem::getIcon());
if(void* d=self->FXHeaderItem::getData())
MARK(d);
}
}
void FXRbHeaderItem::freefunc(FXHeaderItem* self){
delete_if_not_owned(self,reinterpret_cast<FXRbHeaderItem*>(0));
}
void FXRbHeader::markfunc(FXHeader* self){
FXRbFrame::markfunc(self);
if(self){
for(FXint i=0;i<self->FXHeader::getNumItems();i++){
FXHeaderItem* item=self->FXHeader::getItem(i);
FXRbGcMark(item);
FXRbHeaderItem::markfunc(item);
}
FXRbGcMark(self->FXHeader::getFont());
}
}
void FXRbIconItem::markfunc(FXIconItem* self){
FXRbObject::markfunc(self);
if(self){
FXRbGcMark(self->FXIconItem::getBigIcon());
FXRbGcMark(self->FXIconItem::getMiniIcon());
if(void *d=self->FXIconItem::getData())
MARK(d);
}
}
void FXRbIconItem::freefunc(FXIconItem* self){
delete_if_not_owned(self,reinterpret_cast<FXRbIconItem*>(0));
}
void FXRbIconList::markfunc(FXIconList* self){
FXRbScrollArea::markfunc(self);
if(self){
FXRbGcMark(self->FXIconList::getHeader());
for(FXint i=0;i<self->FXIconList::getNumItems();i++){
FXIconItem* item=self->FXIconList::getItem(i);
FXRbGcMark(item);
FXRbIconItem::markfunc(item);
}
FXRbGcMark(self->FXIconList::getFont());
}
}
void FXRbDelegator::markfunc(FXDelegator* self){
FXRbObject::markfunc(self);
if(self){
FXRbGcMark(self->FXDelegator::getDelegate());
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
}
}
void FXRbDebugTarget::markfunc(FXDebugTarget* self){
FXRbObject::markfunc(self);
}
void FXRbDict::markfunc(FXDict* self){
FXRbObject::markfunc(self);
}
void FXRbSettings::markfunc(FXSettings* self){
FXRbDict::markfunc(self);
}
void FXRbRegistry::markfunc(FXRegistry* self){
FXRbSettings::markfunc(self);
}
void FXRbStringDict::markfunc(FXStringDict* self){
FXRbDict::markfunc(self);
}
void FXRbRecentFiles::markfunc(FXRecentFiles* self){
FXRbObject::markfunc(self);
if(self){
FXRbGcMark(self->FXRecentFiles::getTarget());
}
}
void FXRbScrollArea::markfunc(FXScrollArea* self){
FXRbComposite::markfunc(self);
if(self){
FXRbGcMark(self->FXScrollArea::horizontalScrollBar());
FXRbGcMark(self->FXScrollArea::verticalScrollBar());
}
}
void FXRbDocument::markfunc(FXDocument* self){
FXRbObject::markfunc(self);
}
void FXRbGLContext::markfunc(FXGLContext* self){
FXRbObject::markfunc(self);
if(self){
FXRbGcMark(self->FXGLContext::getVisual());
}
}
void FXRbGLObject::markfunc(FXGLObject* self){
FXRbObject::markfunc(self);
}
void FXRbFont::markfunc(FXFont* self){
FXRbId::markfunc(self);
}
void FXRbFont::freefunc(FXFont *self){
delete_if_not_owned_by_app(self,reinterpret_cast<FXRbFont*>(0));
}
void FXRbIconDict::markfunc(FXIconDict* self){
FXRbDict::markfunc(self);
if(self){
FXRbGcMark(self->FXIconDict::getIconSource());
if(self->FXIconDict::no()>0){
FXint pos=self->FXIconDict::first();
FXint last=self->FXIconDict::last();
const FXchar* name=self->FXIconDict::key(pos);
FXIcon* icon=self->FXIconDict::find(name);
pos=self->FXIconDict::next(pos);
}
}
}
}
void FXRbFileDict::markfunc(FXFileDict* self){
FXRbDict::markfunc(self);
FXRbGcMark(self->FXFileDict::getSettings());
if(self->FXFileDict::no()>0){
FXint pos=self->FXFileDict::first();
FXint last=self->FXFileDict::last();
const FXchar* key=self->FXFileDict::key(pos);
FXFileAssoc* assoc=self->FXFileDict::find(key);
pos=self->FXFileDict::next(pos);
}
}
}
}
void FXRbDial::markfunc(FXDial* self){
FXTRACE((100,"FXRbDial::markfunc() %p\n",self));
FXRbFrame::markfunc(self);
}
void FXRbDragCorner::markfunc(FXDragCorner* self){
FXTRACE((100,"FXRbDragCorner::markfunc() %p\n",self));
FXRbWindow::markfunc(self);
}
void FXRbDirItem::markfunc(FXDirItem* self){
FXTRACE((100,"FXRbDirItem::markfunc() %p\n",self));
FXRbTreeItem::markfunc(self);
if(self){
FXRbGcMark(self->FXDirItem::getAssoc());
}
}
void FXRbDirItem::freefunc(FXDirItem* self){
delete_if_not_owned(self,reinterpret_cast<FXRbDirItem*>(0));
}
void FXRbDirList::markfunc(FXDirList* self){
FXTRACE((100,"FXRbDirList::markfunc() %p\n",self));
FXRbTreeList::markfunc(self);
if(self){
FXRbGcMark(self->FXDirList::getAssociations());
}
}
void FXRb4Splitter::markfunc(FX4Splitter* self){
FXTRACE((100,"FXRb4Splitter::markfunc() %p\n",self));
FXRbComposite::markfunc(self);
if(self){
FXRbGcMark(self->FX4Splitter::getTopLeft());
FXRbGcMark(self->FX4Splitter::getTopRight());
FXRbGcMark(self->FX4Splitter::getBottomLeft());
FXRbGcMark(self->FX4Splitter::getBottomRight());
}
}
void FXRbFileItem::markfunc(FXFileItem* self){
FXTRACE((100,"FXRbFileItem::markfunc() %p\n",self));
FXRbIconItem::markfunc(self);
if(self){
FXRbGcMark(self->FXFileItem::getAssoc());
}
}
void FXRbFileItem::freefunc(FXFileItem* self){
delete_if_not_owned(self,reinterpret_cast<FXRbFileItem*>(0));
}
void FXRbFileList::markfunc(FXFileList* self){
FXTRACE((100,"FXRbFileList::markfunc() %p\n",self));
FXRbIconList::markfunc(self);
if(self){
FXRbGcMark(self->FXFileList::getAssociations());
for(FXint i=0;i<self->FXFileList::getNumItems();i++){
FXFileAssoc* assoc=self->FXFileList::getItemAssoc(i);
FXRbGcMark(assoc);
}
}
}
void FXRbDirBox::markfunc(FXDirBox* self){
FXTRACE((100,"FXRbDirBox::markfunc() %p\n",self));
FXRbTreeListBox::markfunc(self);
}
void FXRbDriveBox::markfunc(FXDriveBox* self){
FXTRACE((100,"FXRbDriveBox::markfunc() %p\n",self));
FXRbListBox::markfunc(self);
}
void FXRbDirSelector::markfunc(FXDirSelector* self){
FXTRACE((100,"FXRbDirSelector::markfunc() %p\n",self));
FXRbPacker::markfunc(self);
if(self){
FXRbGcMark(self->FXDirSelector::acceptButton());
FXRbGcMark(self->FXDirSelector::cancelButton());
}
}
void FXRbFileSelector::markfunc(FXFileSelector* self){
FXTRACE((100,"FXRbFileSelector::markfunc() %p\n",self));
FXRbPacker::markfunc(self);
if(self){
FXRbGcMark(self->FXFileSelector::acceptButton());
FXRbGcMark(self->FXFileSelector::cancelButton());
}
}
void FXRbFontSelector::markfunc(FXFontSelector* self){
FXTRACE((100,"FXRbFontSelector::markfunc() %p\n",self));
FXRbPacker::markfunc(self);
if(self){
FXRbGcMark(self->FXFontSelector::acceptButton());
FXRbGcMark(self->FXFontSelector::cancelButton());
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
}
}
void FXRbDirDialog::markfunc(FXDirDialog* self){
FXTRACE((100,"FXRbDirDialog::markfunc() %p\n",self));
FXRbDialogBox::markfunc(self);
}
void FXRbFileDialog::markfunc(FXFileDialog* self){
FXTRACE((100,"FXRbFileDialog::markfunc() %p\n",self));
FXRbDialogBox::markfunc(self);
}
void FXRbFontDialog::markfunc(FXFontDialog* self){
FXTRACE((100,"FXRbFontDialog::markfunc() %p\n",self));
FXRbDialogBox::markfunc(self);
}
void FXRbListBox::markfunc(FXListBox* self){
FXTRACE((100,"FXRbListBox::markfunc() %p\n",self));
FXRbPacker::markfunc(self);
if(self){
FXRbGcMark(self->FXListBox::getFont());
for(FXint i=0;i<self->FXListBox::getNumItems();i++){
FXRbGcMark(self->FXListBox::getItemIcon(i));
if(self->FXListBox::getItemData(i))
MARK(self->FXListBox::getItemData(i));
}
}
}
void FXRbTreeListBox::markfunc(FXTreeListBox* self){
FXTRACE((100,"FXRbTreeListBox::markfunc() %p\n",self));
FXRbPacker::markfunc(self);
if(self){
FXRbGcMark(self->FXTreeListBox::getFont());
for(FXTreeItem* item=self->FXTreeListBox::getFirstItem();item!=0;item=item->FXTreeItem::getNext()){
FXRbGcMark(item);
FXRbTreeItem::markfunc(item);
}
}
}
void FXRbToolTip::markfunc(FXToolTip* self){
FXTRACE((100,"FXRbToolTip::markfunc() %p\n",self));
FXRbShell::markfunc(self);
if(self){
FXRbGcMark(self->FXToolTip::getFont());
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
}
}
void FXRbRootWindow::markfunc(FXRootWindow* self){
FXTRACE((100,"FXRbRootWindow::markfunc() %p\n",self));
FXRbComposite::markfunc(self);
}
void FXRbPNGIcon::markfunc(FXPNGIcon *self){
FXTRACE((100,"FXRbPNGIcon::markfunc() %p\n",self));
FXRbIcon::markfunc(self);
}
void FXRbMDIMenu::markfunc(FXMDIMenu *self){
FXTRACE((100,"FXRbMDIMenu::markfunc() %p\n",self));
FXRbMenuPane::markfunc(self);
}
void FXRbMDIRestoreButton::markfunc(FXMDIRestoreButton *self){
FXTRACE((100,"FXRbMDIRestoreButton::markfunc() %p\n",self));
FXRbButton::markfunc(self);
}
void FXRbXBMImage::markfunc(FXXBMImage *self){
FXTRACE((100,"FXRbXBMImage::markfunc() %p\n",self));
FXRbImage::markfunc(self);
}
void FXRbXPMImage::markfunc(FXXPMImage *self){
FXTRACE((100,"FXRbXPMImage::markfunc() %p\n",self));
FXRbImage::markfunc(self);
}
void FXRbJPGImage::markfunc(FXJPGImage *self){
FXTRACE((100,"FXRbJPGImage::markfunc() %p\n",self));
FXRbImage::markfunc(self);
}
void FXRbTextField::markfunc(FXTextField *self){
FXTRACE((100,"FXRbTextField::markfunc() %p\n",self));
FXRbFrame::markfunc(self);
if(self){
FXRbGcMark(self->FXTextField::getFont());
}
}
void FXRbMenuCascade::markfunc(FXMenuCascade *self){
FXTRACE((100,"FXRbMenuCascade::markfunc() %p\n",self));
FXRbMenuCaption::markfunc(self);
if(self){
FXRbGcMark(self->FXMenuCascade::getMenu());
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
}
}
void FXRbMenuCommand::markfunc(FXMenuCommand *self){
FXTRACE((100,"FXRbMenuCommand::markfunc() %p\n",self));
FXRbMenuCaption::markfunc(self);
}
void FXRbMenuBar::markfunc(FXMenuBar *self){
FXTRACE((100,"FXRbMenuBar::markfunc() %p\n",self));
FXRbToolBar::markfunc(self);
}
void FXRbScrollCorner::markfunc(FXScrollCorner *self){
FXTRACE((100,"FXRbScrollCorner::markfunc() %p\n",self));
FXRbWindow::markfunc(self);
}
void FXRbShutter::markfunc(FXShutter *self){
FXRbVerticalFrame::markfunc(self);
}
void FXRbProgressBar::markfunc(FXProgressBar *self){
FXTRACE((100,"FXRbProgressBar::markfunc() %p\n",self));
FXRbFrame::markfunc(self);
if(self){
FXRbGcMark(self->FXProgressBar::getFont());
}
}
void FXRbSeparator::markfunc(FXSeparator* self){
FXTRACE((100,"FXRbSeparator::markfunc() %p\n",self));
FXRbFrame::markfunc(self);
}
void FXRbHorizontalSeparator::markfunc(FXHorizontalSeparator *self){
FXTRACE((100,"FXRbHorizontalSeparator::markfunc() %p\n",self));
FXRbSeparator::markfunc(self);
}
void FXRbSpinner::markfunc(FXSpinner *self){
FXTRACE((100,"FXRbSpinner::markfunc() %p\n",self));
FXRbPacker::markfunc(self);
if(self){
FXRbGcMark(self->FXSpinner::getFont());
}
}
void FXRbRealSpinner::markfunc(FXRealSpinner *self){
FXTRACE((100,"FXRbRealSpinner::markfunc() %p\n",self));
FXRbPacker::markfunc(self);
if(self){
FXRbGcMark(self->FXRealSpinner::getFont());
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
}
}
void FXRbGIFIcon::markfunc(FXGIFIcon *self){
FXTRACE((100,"FXRbGIFIcon::markfunc() %p\n",self));
FXRbIcon::markfunc(self);
}
void FXRbTIFIcon::markfunc(FXTIFIcon *self){
FXTRACE((100,"FXRbTIFIcon::markfunc() %p\n",self));
FXRbIcon::markfunc(self);
}
void FXRbPCXIcon::markfunc(FXPCXIcon *self){
FXTRACE((100,"FXRbPCXIcon::markfunc() %p\n",self));
FXRbIcon::markfunc(self);
}
void FXRbRGBIcon::markfunc(FXRGBIcon *self){
FXTRACE((100,"FXRbRGBIcon::markfunc() %p\n",self));
FXRbIcon::markfunc(self);
}
void FXRbMDIMaximizeButton::markfunc(FXMDIMaximizeButton *self){
FXTRACE((100,"FXRbMDIMaximizeButton::markfunc() %p\n",self));
FXRbButton::markfunc(self);
}
void FXRbMDIDeleteButton::markfunc(FXMDIDeleteButton *self){
FXTRACE((100,"FXRbMDIDeleteButton::markfunc() %p\n",self));
FXRbButton::markfunc(self);
}
void FXRbMenuButton::markfunc(FXMenuButton *self){
FXTRACE((100,"FXRbMenuButton::markfunc() %p\n",self));
FXRbLabel::markfunc(self);
if(self){
FXRbGcMark(self->FXMenuButton::getMenu());
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
}
}
void FXRbMatrix::markfunc(FXMatrix *self){
FXTRACE((100,"FXRbMatrix::markfunc() %p\n",self));
FXRbPacker::markfunc(self);
}
void FXRbMenuSeparator::markfunc(FXMenuSeparator *self){
FXTRACE((100,"FXRbMenuSeparator::markfunc() %p\n",self));
FXRbWindow::markfunc(self);
}
void FXRbSwitcher::markfunc(FXSwitcher *self){
FXTRACE((100,"FXRbSwitcher::markfunc() %p\n",self));
FXRbPacker::markfunc(self);
}
void FXRbRealSlider::markfunc(FXRealSlider *self){
FXTRACE((100,"FXRbRealSlider::markfunc() %p\n",self));
FXRbFrame::markfunc(self);
}
void FXRbSlider::markfunc(FXSlider *self){
FXTRACE((100,"FXRbSlider::markfunc() %p\n",self));
FXRbFrame::markfunc(self);
}
void FXRbToolBarGrip::markfunc(FXToolBarGrip *self){
FXTRACE((100,"FXRbToolBarGrip::markfunc() %p\n",self));
FXRbDockHandler::markfunc(self);
}
void FXRbJPGIcon::markfunc(FXJPGIcon *self){
FXTRACE((100,"FXRbJPGIcon::markfunc() %p\n",self));
FXRbIcon::markfunc(self);
}
void FXRbTabBar::markfunc(FXTabBar *self){
FXTRACE((100,"FXRbTabBar::markfunc() %p\n",self));
FXRbPacker::markfunc(self);
}
void FXRbToolBarTab::markfunc(FXToolBarTab *self){
FXTRACE((100,"FXRbToolBarTab::markfunc() %p\n",self));
FXRbFrame::markfunc(self);
}
void FXRbSearchDialog::markfunc(FXSearchDialog *self){
FXTRACE((100,"FXRbSearchDialog::markfunc() %p\n",self));
FXRbDialogBox::markfunc(self);
}
void FXRbPrintDialog::markfunc(FXPrintDialog *self){
FXTRACE((100,"FXRbPrintDialog::markfunc() %p\n",self));
FXRbDialogBox::markfunc(self);
}
void FXRbMDIMinimizeButton::markfunc(FXMDIMinimizeButton *self){
FXTRACE((100,"FXRbMDIMinimizeButton::markfunc() %p\n",self));
FXRbButton::markfunc(self);
}
void FXRbGIFCursor::markfunc(FXGIFCursor *self){
FXTRACE((100,"FXRbGIFCursor::markfunc() %p\n",self));
FXRbCursor::markfunc(self);
}
void FXRbGIFCursor::freefunc(FXGIFCursor* self){
delete_if_not_owned_by_app(self,reinterpret_cast<FXRbGIFCursor*>(0));
}
void FXRbCURCursor::markfunc(FXCURCursor *self){
FXTRACE((100,"FXRbCURCursor::markfunc() %p\n",self));
FXRbCursor::markfunc(self);
}
void FXRbCURCursor::freefunc(FXCURCursor* self){
delete_if_not_owned_by_app(self,reinterpret_cast<FXRbCURCursor*>(0));
}
void FXRbGLViewer::markfunc(FXGLViewer *self){
FXTRACE((100,"FXRbGLViewer::markfunc() %p\n",self));
FXRbGLCanvas::markfunc(self);
if(self){
FXRbGcMark(self->FXGLViewer::getScene());
FXRbGcMark(self->FXGLViewer::getSelection());
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
}
}
void FXRbGIFImage::markfunc(FXGIFImage *self){
FXTRACE((100,"FXRbGIFImage::markfunc() %p\n",self));
FXRbImage::markfunc(self);
}
void FXRbTIFImage::markfunc(FXTIFImage *self){
FXTRACE((100,"FXRbTIFImage::markfunc() %p\n",self));
FXRbImage::markfunc(self);
}
void FXRbPCXImage::markfunc(FXPCXImage *self){
FXTRACE((100,"FXRbPCXImage::markfunc() %p\n",self));
FXRbImage::markfunc(self);
}
void FXRbRGBImage::markfunc(FXRGBImage *self){
FXTRACE((100,"FXRbRGBImage::markfunc() %p\n",self));
FXRbImage::markfunc(self);
}
void FXRbMenuPane::markfunc(FXMenuPane *self){
FXTRACE((100,"FXRbMenuPane::markfunc() %p\n",self));
FXRbPopup::markfunc(self);
}
void FXRbScrollPane::markfunc(FXScrollPane *self){
FXRbMenuPane::markfunc(self);
}
void FXRbSplitter::markfunc(FXSplitter *self){
FXTRACE((100,"FXRbSplitter::markfunc() %p\n",self));
FXRbComposite::markfunc(self);
}
void FXRbStatusBar::markfunc(FXStatusBar *self){
FXTRACE((100,"FXRbStatusBar::markfunc() %p\n",self));
FXRbHorizontalFrame::markfunc(self);
if(self){
FXRbGcMark(self->FXStatusBar::getStatusLine());
FXRbGcMark(self->FXStatusBar::getDragCorner());
}
}
void FXRbMDIChild::markfunc(FXMDIChild *self){
FXTRACE((100,"FXRbMDIChild::markfunc() %p\n",self));
FXRbComposite::markfunc(self);
if(self){
FXRbGcMark(self->FXMDIChild::contentWindow());
FXRbGcMark(self->FXMDIChild::getIcon());
FXRbGcMark(self->FXMDIChild::getMenu());
FXRbGcMark(self->FXMDIChild::getFont());
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
}
}
void FXRbPNGImage::markfunc(FXPNGImage *self){
FXTRACE((100,"FXRbPNGImage::markfunc() %p\n",self));
FXRbImage::markfunc(self);
}
void FXRbVisual::markfunc(FXVisual *self){
FXTRACE((100,"FXRbVisual::markfunc() %p\n",self));
FXRbId::markfunc(self);
}
void FXRbVisual::freefunc(FXVisual *self){
delete_if_not_owned_by_app(self,reinterpret_cast<FXRbVisual*>(0));
}
void FXRbVerticalSeparator::markfunc(FXVerticalSeparator *self){
FXTRACE((100,"FXRbVerticalSeparator::markfunc() %p\n",self));
FXRbSeparator::markfunc(self);
}
void FXRbToggleButton::markfunc(FXToggleButton *self){
FXTRACE((100,"FXRbToggleButton::markfunc() %p\n",self));
FXRbLabel::markfunc(self);
if(self){
FXRbGcMark(self->FXToggleButton::getAltIcon());
}
}
void FXRbTriStateButton::markfunc(FXTriStateButton *self){
FXTRACE((100,"FXRbTriStateButton::markfunc() %p\n",self));
FXRbToggleButton::markfunc(self);
if(self){
FXRbGcMark(self->FXTriStateButton::getMaybeIcon());
}
}
void FXRbPopup::markfunc(FXPopup *self){
FXTRACE((100,"FXRbPopup::markfunc() %p\n",self));
FXRbShell::markfunc(self);
if(self){
FXRbGcMark(self->FXPopup::getGrabOwner());
}
}
void FXRbOptionMenu::markfunc(FXOptionMenu *self){
FXTRACE((100,"FXRbOptionMenu::markfunc() %p\n",self));
FXRbLabel::markfunc(self);
if(self){
FXRbGcMark(self->FXOptionMenu::getCurrent());
FXRbGcMark(self->FXOptionMenu::getMenu());
}
}
void FXRbMessageBox::markfunc(FXMessageBox *self){
FXTRACE((100,"FXRbMessageBox::markfunc() %p\n",self));
FXRbDialogBox::markfunc(self);
}
void FXRbToolBar::markfunc(FXToolBar *self){
FXTRACE((100,"FXRbToolBar::markfunc() %p\n",self));
FXRbPacker::markfunc(self);
if(self){
FXRbGcMark(self->FXToolBar::getDryDock());
FXRbGcMark(self->FXToolBar::getWetDock());
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
}
}
void FXRbGLCanvas::markfunc(FXGLCanvas *self){
FXTRACE((100,"FXRbGLCanvas::markfunc() %p\n",self));
FXRbCanvas::markfunc(self);
}
void FXRbGLVisual::markfunc(FXGLVisual *self){
FXTRACE((100,"FXRbGLVisual::markfunc() %p\n",self));
FXRbVisual::markfunc(self);
}
void FXRbGLVisual::freefunc(FXGLVisual *self){
delete_if_not_owned_by_app(self,reinterpret_cast<FXRbGLVisual*>(0));
}
void FXRbOption::markfunc(FXOption *self){
FXTRACE((100,"FXRbOption::markfunc() %p\n",self));
FXRbLabel::markfunc(self);
}
void FXRbScrollWindow::markfunc(FXScrollWindow *self){
FXTRACE((100,"FXRbScrollWindow::markfunc() %p\n",self));
FXRbScrollArea::markfunc(self);
if(self){
FXRbGcMark(self->FXScrollWindow::contentWindow());
}
}
void FXRbText::markfunc(FXText *self){
FXTRACE((100,"FXRbText::markfunc() %p\n",self));
FXRbScrollArea::markfunc(self);
if(self){
FXRbGcMark(self->FXText::getFont());
}
}
void FXRbToolBarShell::markfunc(FXToolBarShell *self){
FXTRACE((100,"FXRbToolBarShell::markfunc() %p\n",self));
FXRbTopWindow::markfunc(self);
}
void FXRbSplashWindow::markfunc(FXSplashWindow *self){
FXTRACE((100,"FXRbSplashWindow::markfunc() %p\n",self));
FXRbTopWindow::markfunc(self);
if(self){
FXRbGcMark(self->FXSplashWindow::getIcon());
}
}
void FXRbInputDialog::markfunc(FXInputDialog *self){
FXTRACE((100,"FXRbInputDialog::markfunc() %p\n",self));
FXRbDialogBox::markfunc(self);
}
void FXRbMDIClient::markfunc(FXMDIClient *self){
FXTRACE((100,"FXRbMDIClient::markfunc() %p\n",self));
FXRbComposite::markfunc(self);
}
void FXRbMenuTitle::markfunc(FXMenuTitle *self){
FXTRACE((100,"FXRbMenuTitle::markfunc() %p\n",self));
FXRbMenuCaption::markfunc(self);
if(self){
FXRbGcMark(self->FXMenuTitle::getMenu());
}
}
/*
void FXRbBitmapView::markfunc(FXBitmapView *self){
FXRbScrollArea::markfunc(self);
if(self){
FXRbGcMark(self->getBitmap());
}
}
*/
void FXRbImageView::markfunc(FXImageView *self){
FXRbScrollArea::markfunc(self);
if(self){
FXRbGcMark(self->FXImageView::getImage());
}
}
void FXRbShutterItem::markfunc(FXShutterItem *self){
FXRbVerticalFrame::markfunc(self);
if(self){
FXRbGcMark(self->FXShutterItem::getButton());
FXRbGcMark(self->FXShutterItem::getContent());
}
}
void FXRbMDIWindowButton::markfunc(FXMDIWindowButton *self){
FXTRACE((100,"FXRbMDIWindowButton::markfunc() %p\n",self));
FXRbMenuButton::markfunc(self);
}
void FXRbMenuCaption::markfunc(FXMenuCaption *self){
FXTRACE((100,"FXRbMenuCaption::markfunc() %p\n",self));
FXRbWindow::markfunc(self);
if(self){
FXRbGcMark(self->FXMenuCaption::getFont());
FXRbGcMark(self->FXMenuCaption::getIcon());
}
}
void FXRbTabItem::markfunc(FXTabItem *self){
FXTRACE((100,"FXRbTabItem::markfunc() %p\n",self));
FXRbLabel::markfunc(self);
}
void FXRbStatusLine::markfunc(FXStatusLine *self){
FXTRACE((100,"FXRbStatusLine::markfunc() %p\n",self));
FXRbFrame::markfunc(self);
if(self){
FXRbGcMark(self->FXStatusLine::getFont());
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
}
}
void FXRbGLShape::markfunc(FXGLShape *self){
FXTRACE((100,"FXRbGLShape::markfunc() %p\n",self));
FXRbGLObject::markfunc(self);
}
void FXRbTabBook::markfunc(FXTabBook *self){
FXTRACE((100,"FXRbTabBook::markfunc() %p\n",self));
FXRbTabBar::markfunc(self);
}
void FXRbReplaceDialog::markfunc(FXReplaceDialog *self){
FXTRACE((100,"FXRbReplaceDialog::markfunc() %p\n",self));
FXRbDialogBox::markfunc(self);
}
void FXRbXBMIcon::markfunc(FXXBMIcon *self){
FXTRACE((100,"FXRbXBMIcon::markfunc() %p\n",self));
FXRbIcon::markfunc(self);
}
void FXRbXPMIcon::markfunc(FXXPMIcon *self){
FXTRACE((100,"FXRbXPMIcon::markfunc() %p\n",self));
FXRbIcon::markfunc(self);
}
void FXRbRadioButton::markfunc(FXRadioButton *self){
FXTRACE((100,"FXRbRadioButton::markfunc() %p\n",self));
FXRbLabel::markfunc(self);
}
void FXRbScrollBar::markfunc(FXScrollBar *self){
FXTRACE((100,"FXRbScrollBar::markfunc() %p\n",self));
FXRbWindow::markfunc(self);
}
void FXRbStream::markfunc(FXStream *self){
FXTRACE((100,"FXRbStream::markfunc() %p\n",self));
if(self){
FXRbGcMark((void*)self->FXStream::container());
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
}
}
void FXRbFileStream::markfunc(FXFileStream *self){
FXTRACE((100,"FXRbFileStream::markfunc() %p\n",self));
FXRbStream::markfunc(self);
}
void FXRbMemoryStream::markfunc(FXMemoryStream *self){
FXTRACE((100,"FXRbMemoryStream::markfunc() %p\n",self));
FXRbStream::markfunc(self);
}
void FXRbDC::markfunc(FXDC *self){
FXTRACE((100,"FXRbDC::markfunc() %p\n",self));
}
void FXRbDCWindow::markfunc(FXDCWindow *self){
FXTRACE((100,"FXRbDCWindow::markfunc() %p\n",self));
FXRbDC::markfunc(self);
}
void FXRbDCPrint::markfunc(FXDCPrint *self){
FXTRACE((100,"FXRbDCPrint::markfunc() %p\n",self));
FXRbDC::markfunc(self);
}
void FXRbProgressDialog::markfunc(FXProgressDialog* self){
FXTRACE((100,"FXRbProgressDialog::markfunc() %p\n",self));
FXRbDialogBox::markfunc(self);
}
void FXRbPicker::markfunc(FXPicker* self){
FXTRACE((100,"FXRbPicker::markfunc() %p\n",self));
FXRbButton::markfunc(self);
}
void FXRbColorBar::markfunc(FXColorBar* self){
FXTRACE((100,"FXRbColorBar::markfunc() %p\n",self));
FXRbFrame::markfunc(self);
}
void FXRbColorRing::markfunc(FXColorRing* self){
FXTRACE((100,"FXRbColorRing::markfunc() %p\n",self));
FXRbFrame::markfunc(self);
}
void FXRbColorWheel::markfunc(FXColorWheel* self){
FXTRACE((100,"FXRbColorWheel::markfunc() %p\n",self));
FXRbFrame::markfunc(self);
}
void FXRbICOIcon::markfunc(FXICOIcon* self){
FXTRACE((100,"FXRbICOIcon::markfunc() %p\n",self));
FXRbIcon::markfunc(self);
}
void FXRbICOImage::markfunc(FXICOImage* self){
FXTRACE((100,"FXRbICOImage::markfunc() %p\n",self));
FXRbImage::markfunc(self);
}
void FXRbTGAIcon::markfunc(FXTGAIcon* self){
FXTRACE((100,"FXRbTGAIcon::markfunc() %p\n",self));
FXRbIcon::markfunc(self);
}
void FXRbTGAImage::markfunc(FXTGAImage* self){
FXTRACE((100,"FXRbTGAImage::markfunc() %p\n",self));
FXRbImage::markfunc(self);
}
void FXRbBitmapFrame::markfunc(FXBitmapFrame* self){
FXTRACE((100,"start FXRbBitmapFrame::markfunc(%p)\n",self));
FXRbFrame::markfunc(self);
if(self!=0){
FXRbGcMark(self->FXBitmapFrame::getBitmap());
FXTRACE((100,"end FXRbBitmapFrame::markfunc(%p)\n",self));
}
void FXRbImageFrame::markfunc(FXImageFrame* self){
FXTRACE((100,"start FXRbImageFrame::markfunc(%p)\n",self));
FXRbFrame::markfunc(self);
if(self!=0){
FXRbGcMark(self->FXImageFrame::getImage());
FXTRACE((100,"end FXRbImageFrame::markfunc(%p)\n",self));
}
void FXRbGradientBar::markfunc(FXGradientBar* self){
FXTRACE((100,"start FXRbGradientBar::markfunc(%p)\n",self));
FXTRACE((100,"end FXRbGradientBar::markfunc(%p)\n",self));
}
#ifdef WITH_FXSCINTILLA
void FXRbScintilla::markfunc(FXScintilla* self){
FXTRACE((100,"FXRbScintilla::markfunc() %p\n",self));
FXRbScrollArea::markfunc(self);
}
#endif
void FXRbWizard::markfunc(FXWizard* self){
FXTRACE((100,"FXRbWizard::markfunc() %p\n",self));
FXRbDialogBox::markfunc(self);
if(self){
FXRbGcMark(self->FXWizard::advanceButton());
FXRbGcMark(self->FXWizard::retreatButton());
FXRbGcMark(self->FXWizard::finishButton());
FXRbGcMark(self->FXWizard::cancelButton());
FXRbGcMark(self->FXWizard::getContainer());
FXRbGcMark(self->FXWizard::getImage());
}
}
void FXRbRuler::markfunc(FXRuler* self){
FXTRACE((100,"FXRbRuler::markfunc() %p\n",self));
FXRbFrame::markfunc(self);
if(self){
FXRbGcMark(self->FXRuler::getFont());
}
}
void FXRbRulerView::markfunc(FXRulerView* self){
FXTRACE((100,"FXRbRulerView::markfunc() %p\n",self));
FXRbScrollArea::markfunc(self);
if(self){
FXRbGcMark(self->FXRulerView::horizontalRuler());
FXRbGcMark(self->FXRulerView::verticalRuler());
FXRbGcMark(self->FXRulerView::getHRulerFont());
FXRbGcMark(self->FXRulerView::getVRulerFont());
void FXRbPPMIcon::markfunc(FXPPMIcon* self){
FXTRACE((100,"FXRbPPMIcon::markfunc() %p\n",self));
FXRbIcon::markfunc(self);
}
void FXRbPPMImage::markfunc(FXPPMImage* self){
FXTRACE((100,"FXRbPPMImage::markfunc() %p\n",self));
FXRbImage::markfunc(self);
}