void PageCommon::set_property_values(Gtk::Widget& widget, std::string type) { current_widget = &widget; can_update_height_and_width=false; sbwidth_request.set_value(widget.size_request().width); sbheight_request.set_value(widget.size_request().height); can_update_height_and_width=true; tooltip_text.get_buffer()->set_text(widget.get_tooltip_text()); if(widget.get_has_tooltip()) cbvisible.set_active(0); else cbvisible.set_active(1); if(widget.get_sensitive()) cbsensitive.set_active(0); else cbsensitive.set_active(1); if(widget.get_can_focus()) cbcanfocus.set_active(0); else cbcanfocus.set_active(1); if(widget.has_focus()) cbhasfocus.set_active(0); else cbhasfocus.set_active(1); if(widget.get_has_tooltip()) cbhastooltip.set_active(0); else cbhastooltip.set_active(1); if(widget.is_focus()) cbisfocus.set_active(0); else cbisfocus.set_active(1); if(widget.get_can_default()) cbcandefault.set_active(0); else cbcandefault.set_active(1); if(widget.has_default()) cbhasdefault.set_active(0); else cbhasdefault.set_active(1); }
/** Render the cell. * This is called to render the cell. * @param window window * @param widget widget * @param background_area dimensions of the background area * @param cell_area dimensions of the cell area * @param expose_area dimensions of the exposed area * @param flags render flags */ void TwoLinesCellRenderer::render_vfunc(const Glib::RefPtr<Gdk::Drawable> &window, Gtk::Widget &widget, const Gdk::Rectangle &background_area, const Gdk::Rectangle &cell_area, const Gdk::Rectangle &expose_area, Gtk::CellRendererState flags) #endif { #ifdef GLIBMM_PROPERTIES_ENABLED // Get cell size int x_offset = 0, y_offset = 0; #if GTK_VERSION_LT(3,0) int width = 0, height = 0; get_size(widget, cell_area, x_offset, y_offset, width, height); // Get cell state //Gtk::StateType state; Gtk::StateType text_state; if ((flags & Gtk::CELL_RENDERER_SELECTED) != 0) { //state = Gtk::STATE_SELECTED; text_state = (widget.has_focus()) ? Gtk::STATE_SELECTED : Gtk::STATE_ACTIVE; } else { //state = Gtk::STATE_NORMAL; text_state = (widget.is_sensitive()) ? Gtk::STATE_NORMAL : Gtk::STATE_INSENSITIVE; } // Draw color text Glib::RefPtr<Gdk::Window> win = Glib::RefPtr<Gdk::Window>::cast_dynamic(window); #endif Glib::RefPtr<Pango::Layout> layout_ptr = widget.create_pango_layout(__property_line1); Pango::Rectangle rect1 = layout_ptr->get_pixel_logical_extents(); #if GTK_VERSION_GE(3,0) cr->move_to(cell_area.get_x() + x_offset + 2 * property_xpad(), cell_area.get_y() + y_offset + 2 * property_ypad()); layout_ptr->show_in_cairo_context(cr); #else widget.get_style()->paint_layout(win, text_state, true, cell_area, widget, "cellrenderertext", cell_area.get_x() + x_offset + 2 * property_xpad(), cell_area.get_y() + y_offset + 2 * property_ypad(), layout_ptr); #endif if (__property_line2_enabled.get_value()) { Glib::RefPtr<Pango::Layout> layout2 = widget.create_pango_layout(__property_line2); #if GTK_VERSION_GE(3,0) Pango::FontDescription font2("sans 10"); #else Glib::RefPtr<Gtk::Style> style = widget.get_style(); Pango::FontDescription font2 = style->get_font(); #endif font2.set_size((int)roundf(Pango::SCALE_SMALL * font2.get_size())); layout2->set_font_description(font2); //Pango::Rectangle rect2 = layout2->get_pixel_logical_extents(); layout2->set_ellipsize(Pango::ELLIPSIZE_END); layout2->set_width((cell_area.get_width() - property_xpad()) * Pango::SCALE); #if GTK_VERSION_GE(3,0) cr->move_to(cell_area.get_x() + x_offset + property_xpad(), cell_area.get_y() + y_offset + property_ypad() + rect1.get_height() + 4); layout2->show_in_cairo_context(cr); #else widget.get_style()->paint_layout (win, text_state, true, cell_area, widget, "cellrenderertext", cell_area.get_x() + x_offset + property_xpad(), cell_area.get_y() + y_offset + property_ypad() + rect1.get_height() + 4, layout2); #endif } #endif }
void CellRenderer_ValueBase::render_vfunc( const Glib::RefPtr<Gdk::Drawable>& window, Gtk::Widget& widget, const Gdk::Rectangle& background_area, const Gdk::Rectangle& ca, const Gdk::Rectangle& expose_area, Gtk::CellRendererState flags) { if(!window) return; // const unsigned int cell_xpad = property_xpad(); // const unsigned int cell_ypad = property_ypad(); //int x_offset = 0, y_offset = 0; // int width = ca.get_width(); int height = ca.get_height(); // get_size(widget, ca, x_offset, y_offset, width, height); // width -= cell_xpad * 2; // height -= cell_ypad * 2; // if(width <= 0 || height <= 0) // return; Gtk::StateType state = Gtk::STATE_INSENSITIVE; if(property_editable()) state = Gtk::STATE_NORMAL; if((flags & Gtk::CELL_RENDERER_SELECTED) != 0) state = (widget.has_focus()) ? Gtk::STATE_SELECTED : Gtk::STATE_ACTIVE; ValueBase data=property_value_.get_value(); Type &type(data.get_type()); if (type == type_real) { if(((synfig::ParamDesc)property_param_desc_).get_is_distance()) { Distance x(data.get(Real()),Distance::SYSTEM_UNITS); x.convert(App::distance_system,get_canvas()->rend_desc()); property_text()=(Glib::ustring)x.get_string(6).c_str(); } else property_text()=(Glib::ustring)strprintf("%.6f",data.get(Real())); } else if (type == type_time) { property_text()=(Glib::ustring)data.get(Time()).get_string(get_canvas()->rend_desc().get_frame_rate(),App::get_time_format()); } else if (type == type_angle) { property_text()=(Glib::ustring)strprintf("%.2fᵒ",(Real)Angle::deg(data.get(Angle())).get()); } else if (type == type_integer) { String param_hint, child_param_hint; param_hint=get_param_desc().get_hint(); child_param_hint=get_child_param_desc().get_hint(); if(param_hint!="enum" && child_param_hint!="enum") { property_text()=(Glib::ustring)strprintf("%i",data.get(int())); } else { property_text()=(Glib::ustring)strprintf("(%i)",data.get(int())); std::list<synfig::ParamDesc::EnumData> enum_list; if(param_hint=="enum") enum_list=((synfig::ParamDesc)property_param_desc_).get_enum_list(); else if(child_param_hint=="enum") enum_list=((synfig::ParamDesc)property_child_param_desc_).get_enum_list(); std::list<synfig::ParamDesc::EnumData>::iterator iter; for(iter=enum_list.begin();iter!=enum_list.end();iter++) if(iter->value==data.get(int())) { // don't show the key_board s_hortcut under_scores String local_name = iter->local_name; String::size_type pos = local_name.find_first_of('_'); if (pos != String::npos) property_text() = local_name.substr(0,pos) + local_name.substr(pos+1); else property_text() = local_name; break; } } } else if (type == type_vector) { Vector vector=data.get(Vector()); Distance x(vector[0],Distance::SYSTEM_UNITS),y(vector[1],Distance::SYSTEM_UNITS); x.convert(App::distance_system,get_canvas()->rend_desc()); y.convert(App::distance_system,get_canvas()->rend_desc()); property_text()=static_cast<Glib::ustring>(strprintf("%s,%s",x.get_string(6).c_str(),y.get_string(6).c_str())); } else if (type == type_transformation) { const Transformation &transformation=data.get(Transformation()); const Vector &offset = transformation.offset; const Angle::deg angle(transformation.angle); const Vector &scale = transformation.scale; Distance x(offset[0],Distance::SYSTEM_UNITS),y(offset[1],Distance::SYSTEM_UNITS); x.convert(App::distance_system,get_canvas()->rend_desc()); y.convert(App::distance_system,get_canvas()->rend_desc()); Distance sx(scale[0],Distance::SYSTEM_UNITS),sy(scale[1],Distance::SYSTEM_UNITS); sx.convert(App::distance_system,get_canvas()->rend_desc()); sy.convert(App::distance_system,get_canvas()->rend_desc()); property_text()=static_cast<Glib::ustring>(strprintf( "%s,%s,%.2fᵒ,%s,%s", x.get_string(6).c_str(), y.get_string(6).c_str(), (Real)angle.get(), sx.get_string(6).c_str(), sy.get_string(6).c_str() )); } else if (type == type_string) { if(data.get_type()==type_string) { if(!data.get(synfig::String()).empty()) property_text()=static_cast<Glib::ustring>(data.get(synfig::String())); else property_text()=Glib::ustring("<empty>"); } } else if (type == type_canvas) { if(data.get(etl::handle<synfig::Canvas>())) { if(data.get(etl::handle<synfig::Canvas>())->is_inline()) property_text()=_("<Group>"); else property_text()=(Glib::ustring)data.get(etl::handle<synfig::Canvas>())->get_id(); } else property_text()=_("<No Image Selected>"); } else if (type == type_color) { render_color_to_window(window,ca,data.get(Color())); return; } else if (type == type_bool) { widget.get_style()->paint_check( Glib::RefPtr<Gdk::Window>::cast_static(window), state, data.get(bool())?Gtk::SHADOW_IN:Gtk::SHADOW_OUT, ca, widget, "cellcheck", ca.get_x()/* + x_offset + cell_xpad*/, ca.get_y()/* + y_offset + cell_ypad*/, height-1,height-1); return; } else if (type == type_nil) { //property_text()=(Glib::ustring)" "; return; } else if (type == type_gradient) { render_gradient_to_window(window,ca,data.get(Gradient())); return; } else if (type == type_bone_object || type == type_segment || type == type_list || type == type_bline_point || type == type_width_point || type == type_dash_item) { property_text()=(Glib::ustring)(data.get_type().description.local_name); } else if (type == type_bone_valuenode) { ValueNode_Bone::Handle bone_node(data.get(ValueNode_Bone::Handle())); String name(_("No Parent")); if (!bone_node->is_root()) { name = (*(bone_node->get_link("name")))(get_canvas()->get_time()).get(String()); if (name.empty()) name = bone_node->get_guid().get_string(); } property_text()=(Glib::ustring)(name); } else { property_text()=static_cast<Glib::ustring>(type.description.local_name); } CellRendererText::render_vfunc(window,widget,background_area,ca,expose_area,flags); }
void CellRenderer_ValueBase::render_vfunc( const Glib::RefPtr<Gdk::Drawable>& window, Gtk::Widget& widget, const Gdk::Rectangle& background_area, const Gdk::Rectangle& ca, const Gdk::Rectangle& expose_area, Gtk::CellRendererState flags) { if(!window) return; // const unsigned int cell_xpad = property_xpad(); // const unsigned int cell_ypad = property_ypad(); //int x_offset = 0, y_offset = 0; // int width = ca.get_width(); int height = ca.get_height(); // get_size(widget, ca, x_offset, y_offset, width, height); // width -= cell_xpad * 2; // height -= cell_ypad * 2; // if(width <= 0 || height <= 0) // return; Gtk::StateType state = Gtk::STATE_INSENSITIVE; if(property_editable()) state = Gtk::STATE_NORMAL; if((flags & Gtk::CELL_RENDERER_SELECTED) != 0) state = (widget.has_focus()) ? Gtk::STATE_SELECTED : Gtk::STATE_ACTIVE; ValueBase data=property_value_.get_value(); switch(data.get_type()) { case ValueBase::TYPE_REAL: if(((synfig::ParamDesc)property_param_desc_).get_is_distance()) { Distance x(data.get(Real()),Distance::SYSTEM_UNITS); x.convert(App::distance_system,get_canvas()->rend_desc()); property_text()=(Glib::ustring)x.get_string(6).c_str(); } else property_text()=(Glib::ustring)strprintf("%.6f",data.get(Real())); break; case ValueBase::TYPE_TIME: property_text()=(Glib::ustring)data.get(Time()).get_string(get_canvas()->rend_desc().get_frame_rate(),App::get_time_format()); break; case ValueBase::TYPE_ANGLE: property_text()=(Glib::ustring)strprintf("%.2fᵒ",(Real)Angle::deg(data.get(Angle())).get()); break; case ValueBase::TYPE_INTEGER: { String param_hint, child_param_hint; param_hint=get_param_desc().get_hint(); child_param_hint=get_child_param_desc().get_hint(); if(param_hint!="enum" && child_param_hint!="enum") { property_text()=(Glib::ustring)strprintf("%i",data.get(int())); } else { property_text()=(Glib::ustring)strprintf("(%i)",data.get(int())); std::list<synfig::ParamDesc::EnumData> enum_list; if(param_hint=="enum") enum_list=((synfig::ParamDesc)property_param_desc_).get_enum_list(); else if(child_param_hint=="enum") enum_list=((synfig::ParamDesc)property_child_param_desc_).get_enum_list(); std::list<synfig::ParamDesc::EnumData>::iterator iter; for(iter=enum_list.begin();iter!=enum_list.end();iter++) if(iter->value==data.get(int())) { // don't show the key_board s_hortcut under_scores String local_name = iter->local_name; String::size_type pos = local_name.find_first_of('_'); if (pos != String::npos) property_text() = local_name.substr(0,pos) + local_name.substr(pos+1); else property_text() = local_name; break; } } } break; case ValueBase::TYPE_VECTOR: { Vector vector=data.get(Vector()); Distance x(vector[0],Distance::SYSTEM_UNITS),y(vector[1],Distance::SYSTEM_UNITS); x.convert(App::distance_system,get_canvas()->rend_desc()); y.convert(App::distance_system,get_canvas()->rend_desc()); property_text()=static_cast<Glib::ustring>(strprintf("%s,%s",x.get_string(6).c_str(),y.get_string(6).c_str())); } break; case ValueBase::TYPE_STRING: if(data.get_type()==ValueBase::TYPE_STRING) { if(!data.get(synfig::String()).empty()) property_text()=static_cast<Glib::ustring>(data.get(synfig::String())); else property_text()=Glib::ustring("<empty>"); } break; case ValueBase::TYPE_CANVAS: if(data.get(etl::handle<synfig::Canvas>())) { if(data.get(etl::handle<synfig::Canvas>())->is_inline()) property_text()=_("<Group>"); else property_text()=(Glib::ustring)data.get(etl::handle<synfig::Canvas>())->get_id(); } else property_text()=_("<No Image Selected>"); break; case ValueBase::TYPE_COLOR: { render_color_to_window(window,ca,data.get(Color())); return; } break; case ValueBase::TYPE_BOOL: { widget.get_style()->paint_check( Glib::RefPtr<Gdk::Window>::cast_static(window), state, data.get(bool())?Gtk::SHADOW_IN:Gtk::SHADOW_OUT, ca, widget, "cellcheck", ca.get_x()/* + x_offset + cell_xpad*/, ca.get_y()/* + y_offset + cell_ypad*/, height-1,height-1); return; } break; case ValueBase::TYPE_NIL: //property_text()=(Glib::ustring)" "; return; break; case ValueBase::TYPE_GRADIENT: render_gradient_to_window(window,ca,data.get(Gradient())); return; break; case ValueBase::TYPE_BONE: case ValueBase::TYPE_SEGMENT: case ValueBase::TYPE_LIST: case ValueBase::TYPE_BLINEPOINT: case ValueBase::TYPE_WIDTHPOINT: case ValueBase::TYPE_DASHITEM: property_text()=(Glib::ustring)(ValueBase::type_local_name(data.get_type())); break; case ValueBase::TYPE_VALUENODE_BONE: { ValueNode_Bone::Handle bone_node(data.get(ValueNode_Bone::Handle())); String name(_("No Parent")); if (!bone_node->is_root()) { name = (*(bone_node->get_link("name")))(get_canvas()->get_time()).get(String()); if (name.empty()) name = bone_node->get_guid().get_string(); } property_text()=(Glib::ustring)(name); break; } default: property_text()=static_cast<Glib::ustring>(_("UNKNOWN")); break; } CellRendererText::render_vfunc(window,widget,background_area,ca,expose_area,flags); }