Lines Matching refs:size
76 CRect size; in AddCStaticControl() local
94 size.top = client.top + m_title_bar_height + 8; in AddCStaticControl()
95 size.left = client.left + 16; in AddCStaticControl()
96 size.bottom = size.top + tsize.cy; in AddCStaticControl()
97 size.right = client.right - 16; in AddCStaticControl()
122 if (temp_size.cx > size.right) in AddCStaticControl()
124 size.right = temp_size.cx + 16; in AddCStaticControl()
126 size.bottom += temp_size.cy; in AddCStaticControl()
130 if (temp_width < size.right) in AddCStaticControl()
136 size.right = temp_width + 1; in AddCStaticControl()
138 size.bottom += temp_size.cy; in AddCStaticControl()
142 if (temp_size.cx > size.right) in AddCStaticControl()
144 size.right = temp_size.cx + 16; in AddCStaticControl()
146 size.bottom += tsize.cy; in AddCStaticControl()
150 size.bottom += tsize.cy + 1; in AddCStaticControl()
151 client.right = size.right + 16; in AddCStaticControl()
152 client.bottom = size.bottom + m_status_bar_height + 16; in AddCStaticControl()
159 msg_text.Create(mMessage, WS_CHILD | WS_VISIBLE | SS_LEFT, size, this); in AddCStaticControl()