/* Load the export combo box choice from a .ui file */
/* file_kind_of_export.open(QFile::ReadOnly);
CKFP(_ui_kind_of_export_choice = loader.load(&file_kind_of_export, this), "Cannot open the .ui file : " << ":/window/kind_of_export.ui");
CKFP(_ui_svg_export_button = this->findChild(QRadioButton*), _ui_kind_of_export_choice, "svg_export"), "Cannot find the svg export button in the .ui file");
CKFP(_ui_png_export_button = this->findChild(QRadioButton*), _ui_kind_of_export_choice, "png_export"), "Cannot find the png export button in the .ui file");
CKFP(_ui_counter_export_button = this->findChild(QRadioButton*), _ui_kind_of_export_choice, "counter_export"), "Cannot find the svg export button in the .ui file");
CKFP(_ui_svg_export_button = qFindChild<QRadioButton*>(_ui_kind_of_export_choice, "svg_export"), "Cannot find the svg export button in the .ui file");
CKFP(_ui_png_export_button = qFindChild<QRadioButton*>(_ui_kind_of_export_choice, "png_export"), "Cannot find the png export button in the .ui file");
CKFP(_ui_counter_export_button = qFindChild<QRadioButton*>(_ui_kind_of_export_choice, "counter_export"), "Cannot find the svg export button in the .ui file");
CKFP(_ui_render_area_layout=this->findChild<QVBoxLayout*>("render_area_layout"),"Cannot find the render_area layout in the .ui file");
CKFP(_ui_render_area_layout=qFindChild<QVBoxLayout*>(this,"render_area_layout"),"Cannot find the render_area layout in the .ui file");
CKFP(_ui_fullscreen_menu=this->findChild<QAction*>("fullscreen"),"Cannot find the fullscreen menu in the .ui file");
CKFP(_ui_info_trace_text=_ui_info_window->findChild<QTextEdit*>("info_trace_text"),"Cannot find the info_trace_text QTextEdit widget in the .ui file");
CKFP(_ui_info_selection_text=_ui_info_window->findChild<QTextEdit*>("info_selection_text"),"Cannot find the info_selection_text QTextEdit widget in the .ui file");
CKFP(_ui_toolbar=this->findChild<QToolBar*>("toolBar"),"Cannot find the tool bar in the .ui file");
CKFP(_ui_fullscreen_menu=qFindChild<QAction*>(this,"fullscreen"),"Cannot find the fullscreen menu in the .ui file");
CKFP(_ui_info_trace_text=qFindChild<QTextEdit*>(_ui_info_window,"info_trace_text"),"Cannot find the info_trace_text QTextEdit widget in the .ui file");
CKFP(_ui_info_selection_text=qFindChild<QTextEdit*>(_ui_info_window,"info_selection_text"),"Cannot find the info_selection_text QTextEdit widget in the .ui file");
CKFP(_ui_toolbar=qFindChild<QToolBar*>(this,"toolBar"),"Cannot find the tool bar in the .ui file");
CKFP(_ui_x_scroll=this->findChild<QScrollBar*>("x_scroll"),"Cannot find the horizontal scroll bar in the .ui file");
CKFP(_ui_y_scroll=this->findChild<QScrollBar*>("y_scroll"),"Cannot find the vertical scroll bar in the .ui file");
CKFP(_ui_x_scroll=qFindChild<QScrollBar*>(this,"x_scroll"),"Cannot find the horizontal scroll bar in the .ui file");
CKFP(_ui_y_scroll=qFindChild<QScrollBar*>(this,"y_scroll"),"Cannot find the vertical scroll bar in the .ui file");
CKFP(_ui_zoom_box=this->findChild<QComboBox*>("zoom_box"),"Cannot find the zoom box in the .ui file");
CKFP(_ui_zoom_box=qFindChild<QComboBox*>(this,"zoom_box"),"Cannot find the zoom box in the .ui file");
CKFP(_ui_recent_files_menu=this->findChild<QMenu*>("menuRecent_Files"),"Cannot find the button \"menuRecent_Files\" in the .ui file");
CKFP(_ui_recent_files_menu=qFindChild<QMenu*>(this,"menuRecent_Files"),"Cannot find the button \"menuRecent_Files\" in the .ui file");
// CKFP(Info::Render::_ui_render_min_value = this->findChild<QLabel*>("render_min_value"), "Cannot find the render_min_value label in the .ui file");
// CKFP(Info::Render::_ui_render_max_value = this->findChild<QLabel*>("render_max_value"), "Cannot find the render_max_value label in the .ui file");
// CKFP(Info::Render::_ui_render_min_value = qFindChild<QLabel*>(this, "render_min_value"), "Cannot find the render_min_value label in the .ui file");
// CKFP(Info::Render::_ui_render_max_value = qFindChild<QLabel*>(this, "render_max_value"), "Cannot find the render_max_value label in the .ui file");
/* Help window */
CKFP(_ui_help_ok_button=_ui_help_window->findChild<QPushButton*>("help_ok"),"Cannot find the ok push button in the help dialog .ui file");
CKFP(_ui_help_ok_button=qFindChild<QPushButton*>(_ui_help_window,"help_ok"),"Cannot find the ok push button in the help dialog .ui file");