| 147 * PidginCredentialProviderRow:provider |
147 * PidginCredentialProviderRow:provider |
| 148 * |
148 * |
| 149 * The #PurpleCredentialProvider whose information will be displayed. |
149 * The #PurpleCredentialProvider whose information will be displayed. |
| 150 */ |
150 */ |
| 151 properties[PROP_PROVIDER] = g_param_spec_object( |
151 properties[PROP_PROVIDER] = g_param_spec_object( |
| 152 "provider", "provider", |
152 "provider", NULL, NULL, |
| 153 "The PurpleCredentialProvider instance", |
|
| 154 PURPLE_TYPE_CREDENTIAL_PROVIDER, |
153 PURPLE_TYPE_CREDENTIAL_PROVIDER, |
| 155 G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS); |
154 G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS); |
| 156 |
155 |
| 157 /** |
156 /** |
| 158 * PidginCredentialProviderRow:active |
157 * PidginCredentialProviderRow:active |
| 159 * |
158 * |
| 160 * Whether the #PurpleCredentialProvider is currently active. |
159 * Whether the #PurpleCredentialProvider is currently active. |
| 161 */ |
160 */ |
| 162 properties[PROP_ACTIVE] = g_param_spec_boolean( |
161 properties[PROP_ACTIVE] = g_param_spec_boolean( |
| 163 "active", "active", |
162 "active", NULL, NULL, |
| 164 "Whether the PurpleCredentialProvider is active", |
|
| 165 FALSE, |
163 FALSE, |
| 166 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); |
164 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); |
| 167 |
165 |
| 168 g_object_class_install_properties(obj_class, N_PROPERTIES, properties); |
166 g_object_class_install_properties(obj_class, N_PROPERTIES, properties); |
| 169 |
167 |