~ubuntu-branches/ubuntu/quantal/gtkmm3.0/quantal

« back to all changes in this revision

Viewing changes to gtk/gtkmm/fontbutton.cc

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2012-03-01 23:42:36 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20120301234236-12w6m0hkomhi7h53
Tags: 3.3.16-0ubuntu1
* New upstream version
* debian/control.in: updated the glib requirement

Show diffs side-by-side

added added

removed removed

Lines of Context:
210
210
 
211
211
void FontButton::set_title(const Glib::ustring& title)
212
212
{
213
 
gtk_font_button_set_title(gobj(), title.c_str()); 
 
213
  gtk_font_button_set_title(gobj(), title.c_str()); 
214
214
}
215
215
 
216
216
bool FontButton::get_use_font() const
220
220
 
221
221
void FontButton::set_use_font(bool use_font)
222
222
{
223
 
gtk_font_button_set_use_font(gobj(), static_cast<int>(use_font)); 
 
223
  gtk_font_button_set_use_font(gobj(), static_cast<int>(use_font)); 
224
224
}
225
225
 
226
226
bool FontButton::get_use_size() const
230
230
 
231
231
void FontButton::set_use_size(bool use_size)
232
232
{
233
 
gtk_font_button_set_use_size(gobj(), static_cast<int>(use_size)); 
 
233
  gtk_font_button_set_use_size(gobj(), static_cast<int>(use_size)); 
234
234
}
235
235
 
236
236
Glib::ustring FontButton::get_font_name() const
250
250
 
251
251
void FontButton::set_show_style(bool show_style)
252
252
{
253
 
gtk_font_button_set_show_style(gobj(), static_cast<int>(show_style)); 
 
253
  gtk_font_button_set_show_style(gobj(), static_cast<int>(show_style)); 
254
254
}
255
255
 
256
256
bool FontButton::get_show_size() const
260
260
 
261
261
void FontButton::set_show_size(bool show_size)
262
262
{
263
 
gtk_font_button_set_show_size(gobj(), static_cast<int>(show_size)); 
 
263
  gtk_font_button_set_show_size(gobj(), static_cast<int>(show_size)); 
264
264
}
265
265
 
266
266
 
270
270
}
271
271
 
272
272
 
 
273
#ifndef GTKMM_DISABLE_DEPRECATED
 
274
 
273
275
#ifdef GLIBMM_PROPERTIES_ENABLED
274
276
Glib::PropertyProxy< Glib::ustring > FontButton::property_title() 
275
277
{
276
278
  return Glib::PropertyProxy< Glib::ustring >(this, "title");
277
279
}
 
280
#endif // GTKMM_DISABLE_DEPRECATED
 
281
 
278
282
#endif //GLIBMM_PROPERTIES_ENABLED
279
283
 
280
284
#ifdef GLIBMM_PROPERTIES_ENABLED
284
288
}
285
289
#endif //GLIBMM_PROPERTIES_ENABLED
286
290
 
 
291
#ifndef GTKMM_DISABLE_DEPRECATED
 
292
 
287
293
#ifdef GLIBMM_PROPERTIES_ENABLED
288
294
Glib::PropertyProxy< Glib::ustring > FontButton::property_font_name() 
289
295
{
290
296
  return Glib::PropertyProxy< Glib::ustring >(this, "font-name");
291
297
}
 
298
#endif // GTKMM_DISABLE_DEPRECATED
 
299
 
292
300
#endif //GLIBMM_PROPERTIES_ENABLED
293
301
 
294
302
#ifdef GLIBMM_PROPERTIES_ENABLED
298
306
}
299
307
#endif //GLIBMM_PROPERTIES_ENABLED
300
308
 
 
309
#ifndef GTKMM_DISABLE_DEPRECATED
 
310
 
301
311
#ifdef GLIBMM_PROPERTIES_ENABLED
302
312
Glib::PropertyProxy< bool > FontButton::property_use_font() 
303
313
{
304
314
  return Glib::PropertyProxy< bool >(this, "use-font");
305
315
}
 
316
#endif // GTKMM_DISABLE_DEPRECATED
 
317
 
306
318
#endif //GLIBMM_PROPERTIES_ENABLED
307
319
 
308
320
#ifdef GLIBMM_PROPERTIES_ENABLED
312
324
}
313
325
#endif //GLIBMM_PROPERTIES_ENABLED
314
326
 
 
327
#ifndef GTKMM_DISABLE_DEPRECATED
 
328
 
315
329
#ifdef GLIBMM_PROPERTIES_ENABLED
316
330
Glib::PropertyProxy< bool > FontButton::property_use_size() 
317
331
{
318
332
  return Glib::PropertyProxy< bool >(this, "use-size");
319
333
}
 
334
#endif // GTKMM_DISABLE_DEPRECATED
 
335
 
320
336
#endif //GLIBMM_PROPERTIES_ENABLED
321
337
 
322
338
#ifdef GLIBMM_PROPERTIES_ENABLED
326
342
}
327
343
#endif //GLIBMM_PROPERTIES_ENABLED
328
344
 
 
345
#ifndef GTKMM_DISABLE_DEPRECATED
 
346
 
329
347
#ifdef GLIBMM_PROPERTIES_ENABLED
330
348
Glib::PropertyProxy< bool > FontButton::property_show_style() 
331
349
{
332
350
  return Glib::PropertyProxy< bool >(this, "show-style");
333
351
}
 
352
#endif // GTKMM_DISABLE_DEPRECATED
 
353
 
334
354
#endif //GLIBMM_PROPERTIES_ENABLED
335
355
 
336
356
#ifdef GLIBMM_PROPERTIES_ENABLED
340
360
}
341
361
#endif //GLIBMM_PROPERTIES_ENABLED
342
362
 
 
363
#ifndef GTKMM_DISABLE_DEPRECATED
 
364
 
343
365
#ifdef GLIBMM_PROPERTIES_ENABLED
344
366
Glib::PropertyProxy< bool > FontButton::property_show_size() 
345
367
{
346
368
  return Glib::PropertyProxy< bool >(this, "show-size");
347
369
}
 
370
#endif // GTKMM_DISABLE_DEPRECATED
 
371
 
348
372
#endif //GLIBMM_PROPERTIES_ENABLED
349
373
 
350
374
#ifdef GLIBMM_PROPERTIES_ENABLED