| 173 * The sub title to display. |
172 * The sub title to display. |
| 174 * |
173 * |
| 175 * Since: 3.0 |
174 * Since: 3.0 |
| 176 */ |
175 */ |
| 177 properties[PROP_SUBTITLE] = g_param_spec_string( |
176 properties[PROP_SUBTITLE] = g_param_spec_string( |
| 178 "subtitle", "subtitle", |
177 "subtitle", NULL, NULL, |
| 179 "The subtitle for the info pane.", |
|
| 180 NULL, |
178 NULL, |
| 181 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); |
179 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); |
| 182 |
180 |
| 183 /** |
181 /** |
| 184 * PidginInfoPane:child: |
182 * PidginInfoPane:child: |
| 186 * The child widget to display at the end of the info pane. |
184 * The child widget to display at the end of the info pane. |
| 187 * |
185 * |
| 188 * Since: 3.0 |
186 * Since: 3.0 |
| 189 */ |
187 */ |
| 190 properties[PROP_CHILD] = g_param_spec_object( |
188 properties[PROP_CHILD] = g_param_spec_object( |
| 191 "child", "child", |
189 "child", NULL, NULL, |
| 192 "A child widget to display at the end of the info pane.", |
|
| 193 GTK_TYPE_WIDGET, |
190 GTK_TYPE_WIDGET, |
| 194 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); |
191 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); |
| 195 |
192 |
| 196 g_object_class_install_properties(obj_class, N_PROPERTIES, properties); |
193 g_object_class_install_properties(obj_class, N_PROPERTIES, properties); |
| 197 |
194 |