Lines Matching refs:nColor
64 int nColor; in createChild() local
93 nColor = xComponent.getForeground(); in createChild()
95 + (nColor>>16&0xff) in createChild()
96 + "G" + (nColor>>8&0xff) in createChild()
97 + "B" + (nColor>>0&0xff) in createChild()
98 + "A" + (nColor>>24&0xff), in createChild()
102 nColor = xComponent.getBackground(); in createChild()
104 + (nColor>>16&0xff) in createChild()
105 + "G" + (nColor>>8&0xff) in createChild()
106 + "B" + (nColor>>0&0xff) in createChild()
107 + "A" + (nColor>>24&0xff), in createChild()