Lines Matching refs:nColor
68 int nColor; in createChild() local
72 nColor = xEComponent.getForeground(); in createChild()
74 + (nColor>>16&0xff) in createChild()
75 + "G" + (nColor>>8&0xff) in createChild()
76 + "B" + (nColor>>0&0xff) in createChild()
77 + "A" + (nColor>>24&0xff), in createChild()
81 nColor = xEComponent.getBackground(); in createChild()
83 + (nColor>>16&0xff) in createChild()
84 + "G" + (nColor>>8&0xff) in createChild()
85 + "B" + (nColor>>0&0xff) in createChild()
86 + "A" + (nColor>>24&0xff), in createChild()