ZFFramework
 
Loading...
Searching...
No Matches
ZFUIViewTreePrint.h
Go to the documentation of this file.
1
5
6#ifndef _ZFI_ZFUIViewTreePrint_h_
7#define _ZFI_ZFUIViewTreePrint_h_
8
9#include "ZFUIView.h"
11
12// ============================================================
17 , ZFMP_IN(ZFUIView *, view)
18 , ZFMP_IN_OPT(const ZFOutput &, outputCallback, ZFOutputDefault())
19 )
20
21
25 , ZFMP_IN(zftimet, delay)
26 , ZFMP_IN(ZFUIView *, view)
27 , ZFMP_IN_OPT(const ZFOutput &, outputCallback, ZFOutputDefault())
28 )
29
45 ZF_IN const ZFClass *viewClass
46 , ZF_IN const ZFListener &viewInfoGetter
47 );
52
53// ============================================================
59 , ZFMP_IN(ZFUIView *, view)
60 , ZFMP_IN_OPT(const ZFOutput &, outputCallback, ZFOutputDefault())
61 )
62
67 , ZFMP_IN(zftimet, delay)
68 , ZFMP_IN(ZFUIView *, view)
69 , ZFMP_IN_OPT(const ZFOutput &, outputCallback, ZFOutputDefault())
70 )
71
73#endif // #ifndef _ZFI_ZFUIViewTreePrint_h_
74
#define ZF_IN
dummy macro that shows the param used as required input
Definition ZFCoreTypeDef_ClassType.h:180
_zft_zftimet zftimet
time unit, ensured at least 64 bit, ensured signed
Definition ZFCoreTypeDef_CoreType.h:203
#define ZFMP_IN_OPT(ParamType, paramName, DefaultValue)
see ZFMP_IN
Definition ZFMethod.h:108
#define ZFMP_IN(ParamType, paramName)
macro to wrap param types for ZFMETHOD_INLINE_0 series
Definition ZFMethod.h:105
#define ZFMETHOD_FUNC_DECLARE_2(ZFLIB_, ReturnType, MethodName, ZFMP_0, ZFMP_1)
see ZFMETHOD_FUNC_DECLARE_0
Definition ZFMethodFuncDeclare.h:763
#define ZFMETHOD_FUNC_DECLARE_3(ZFLIB_, ReturnType, MethodName, ZFMP_0, ZFMP_1, ZFMP_2)
see ZFMETHOD_FUNC_DECLARE_0
Definition ZFMethodFuncDeclare.h:910
#define ZF_NAMESPACE_GLOBAL_BEGIN
begin namespace ZFFramework
Definition ZFNamespace.h:97
#define ZF_NAMESPACE_GLOBAL_END
end namespace ZFFramework
Definition ZFNamespace.h:98
const ZFOutput & ZFOutputDefault(void)
default output callback, output source must be zfchar *string
#define ZFLIB_ZFUIKit
used to export symbols
Definition ZFUIKitDef.h:16
base class of all UI views
void ZFUIViewTreePrint(ZFUIView *view, const ZFOutput &outputCallback=(ZFOutputDefault()))
debug use only, to output human readable view tree info
void ZFUIViewTreeNativePrint(ZFUIView *view, const ZFOutput &outputCallback=(ZFOutputDefault()))
similar to ZFUIViewTreePrint, but print native view's view tree
void ZFUIViewTreePrintInfoGetterForClass(const ZFClass *viewClass, const ZFListener &viewInfoGetter)
register a custom info getter for output info of a view type using ZFUIViewTreePrint
void ZFUIViewTreePrintAfterDelay(zftimet delay, ZFUIView *view, const ZFOutput &outputCallback=(ZFOutputDefault()))
delay to ZFUIViewTreePrint using ZFTimerOnce
void ZFUIViewTreeNativePrintAfterDelay(zftimet delay, ZFUIView *view, const ZFOutput &outputCallback=(ZFOutputDefault()))
delay to ZFUIViewTreeNativePrint using ZFTimerOnce
ZFObject's class info.
Definition ZFClass.h:67
listener as ZFCallback, mostly used by ZFObject::observerNotify
Definition ZFObjectObserver.h:30
general output callback
Definition ZFIOCallback_output.h:37
base class of all UI views
Definition ZFUIView.h:93