Lines Matching refs:pCurParent

766 static void addSubgroup( NSView* pCurParent, long& rCurY, const rtl::OUString& rText )
769 [pCurParent addSubview: [pTextView autorelease]];
778 [pCurParent addSubview: [pBox autorelease]];
784 static void addBool( NSView* pCurParent, long& rCurX, long& rCurY, long nAttachOffset,
821 [pCurParent addSubview: [pBtn autorelease]];
827 static void addRadio( NSView* pCurParent, long& rCurX, long& rCurY, long nAttachOffset,
843 [pCurParent addSubview: [pTextView autorelease]];
892 [pCurParent addSubview: [pMatrix autorelease]];
902 static void addList( NSView* pCurParent, long& rCurX, long& rCurY, long /*nAttachOffset*/,
913 [pCurParent addSubview: [pTextView autorelease]];
941 [pCurParent addSubview: [pBtn autorelease]];
962 static void addEdit( NSView* pCurParent, long& rCurX, long& rCurY, long nAttachOffset,
978 [pCurParent addSubview: [pTextView autorelease]];
1001 [pCurParent addSubview: [pFieldView autorelease]];
1026 [pCurParent addSubview: [pStep autorelease]];
1093 NSView* pCurParent = 0;
1235 || ! pCurParent
1243 if( pCurParent )
1244 adjustViewAndChildren( pCurParent, aMaxTabSize, aLeftColumn, aRightColumn );
1253 pCurParent = [[NSView alloc] initWithFrame: aTabViewFrame];
1254 [pItem setView: pCurParent];
1267 addBool( pCurParent, nCurX, nCurY, 0,
1275 if( aCtrlType.equalsAscii( "Subgroup" ) && pCurParent )
1281 addSubgroup( pCurParent, nCurY, aText );
1287 else if( aCtrlType.equalsAscii( "Bool" ) && pCurParent )
1293 addBool( pCurParent, nCurX, nCurY, nAttachOffset,
1297 else if( aCtrlType.equalsAscii( "Radio" ) && pCurParent )
1305 addRadio( pCurParent, nCurX, nCurY, nAttachOffset,
1310 else if( aCtrlType.equalsAscii( "List" ) && pCurParent )
1317 addList( pCurParent, nCurX, nCurY, nAttachOffset,
1322 … else if( (aCtrlType.equalsAscii( "Edit" ) || aCtrlType.equalsAscii( "Range" )) && pCurParent )
1326 addEdit( pCurParent, nCurX, nCurY, nAttachOffset,
1340 adjustViewAndChildren( pCurParent, aMaxTabSize, aLeftColumn, aRightColumn );