예제 #1
0
static void
pgram_set_props(Pgram *pgram, GPtrArray *props)
{
  object_set_props_from_offsets(&pgram->element.object,
                                pgram_offsets,props);
  pgram_update_data(pgram, ANCHOR_MIDDLE, ANCHOR_MIDDLE);
}
예제 #2
0
파일: box.c 프로젝트: jbohren-forks/dia
static void
box_set_props(Box *box, GPtrArray *props)
{
  object_set_props_from_offsets(&box->element.object, 
                                box_offsets, props);
  box_update_data(box);
}
예제 #3
0
파일: usecase.c 프로젝트: GNOME/dia
static void
usecase_set_props(Usecase *usecase, GPtrArray *props)
{
  object_set_props_from_offsets(&usecase->element.object,
                                usecase_offsets,props);
  usecase_update_data(usecase);
}
예제 #4
0
파일: node.c 프로젝트: UIKit0/dia
static void
node_set_props(Node *node, GPtrArray *props)
{
  object_set_props_from_offsets(&node->element.object,
                                node_offsets,props);
  node_update_data(node);
}
예제 #5
0
파일: ellipse.c 프로젝트: brunetton/dia
static void
ellipse_set_props(Ellipse *ellipse, GPtrArray *props)
{
  object_set_props_from_offsets(&ellipse->element.object,
                                ellipse_offsets,props);
  ellipse_update_data(ellipse, ANCHOR_MIDDLE, ANCHOR_MIDDLE);
}
예제 #6
0
파일: attribute.c 프로젝트: UIKit0/dia
static void
attribute_set_props(Attribute *attribute, GPtrArray *props)
{
  object_set_props_from_offsets(&attribute->element.object, 
                                attribute_offsets, props);
  attribute_update_data(attribute);
}
예제 #7
0
파일: basestation.c 프로젝트: dwbxm/dia
static void
basestation_set_props(Basestation *basestation, GPtrArray *props)
{
    object_set_props_from_offsets(&basestation->element.object,
                                  basestation_offsets, props);
    basestation_update_data(basestation);
}
예제 #8
0
파일: polyline.c 프로젝트: mpuels/dia
static void
polyline_set_props(Polyline *polyline, GPtrArray *props)
{
  object_set_props_from_offsets(&polyline->poly.object, polyline_offsets,
				props);
  polyline_update_data(polyline);
}
예제 #9
0
파일: diamond.c 프로젝트: brunetton/dia
static void
diamond_set_props(Diamond *diamond, GPtrArray *props)
{
  object_set_props_from_offsets(&diamond->element.object,
                                diamond_offsets,props);
  diamond_update_data(diamond,ANCHOR_MIDDLE,ANCHOR_MIDDLE);
}
예제 #10
0
파일: branch.c 프로젝트: UIKit0/dia
static void
branch_set_props(Branch *branch, GPtrArray *props)
{
  object_set_props_from_offsets(&branch->element.object, 
                                branch_offsets, props);
  branch_update_data(branch);
}
예제 #11
0
파일: bezier.c 프로젝트: GNOME/dia
static void
bezierline_set_props(Bezierline *bezierline, GPtrArray *props)
{
  object_set_props_from_offsets(&bezierline->bez.object, bezierline_offsets,
				props);
  bezierline_update_data(bezierline);
}
예제 #12
0
static void
analog_clock_set_props(Analog_Clock *analog_clock, GPtrArray *props)
{
  object_set_props_from_offsets(&analog_clock->element.object,
                                analog_clock_offsets,props);
  analog_clock_update_data(analog_clock);
}
예제 #13
0
파일: transition.c 프로젝트: brunetton/dia
static void
transition_set_props(Transition *transition, GPtrArray *props)
{
  object_set_props_from_offsets(&transition->orth.object,
                                transition_offsets, props);
  uml_transition_update_data(transition);
}
예제 #14
0
파일: arc.c 프로젝트: jbohren-forks/dia
static void
arc_set_props(Arc *arc, GPtrArray *props)
{
    object_set_props_from_offsets(&arc->connection.object,
                                  arc_offsets, props);
    arc_update_data(arc);
}
예제 #15
0
파일: wanlink.c 프로젝트: jbohren-forks/dia
static void
wanlink_set_props(WanLink *wanlink, GPtrArray *props)
{
  object_set_props_from_offsets(&wanlink->connection.object, wanlink_offsets,
				props);
  wanlink_update_data(wanlink);
}
예제 #16
0
파일: classicon.c 프로젝트: AmiGanguli/dia
static void
classicon_set_props(Classicon *classicon, GPtrArray *props)
{
  object_set_props_from_offsets(&classicon->element.object,
                                classicon_offsets,props);
  classicon_update_data(classicon);
}
예제 #17
0
파일: message.c 프로젝트: AmiGanguli/dia
static void
message_set_props(Message *message, GPtrArray *props)
{
  object_set_props_from_offsets(&message->connection.object, 
                                message_offsets, props);
  message_update_data(message);
}
예제 #18
0
파일: line.c 프로젝트: mpuels/dia
static void
line_set_props(Line *line, GPtrArray *props)
{
  object_set_props_from_offsets(&line->connection.object, 
                                line_offsets, props);
  line_update_data(line);
}
예제 #19
0
파일: compound.c 프로젝트: brunetton/dia
static void
compound_apply_props (Compound * comp, GPtrArray * props, gboolean is_default)
{
  gint change_count;
  object_set_props_from_offsets (&comp->object, compound_offsets, props);
  /* comp->num_arms has already been set by
     the call to object_set_props_from_offsets () */
  change_count = adjust_handle_count_to (comp, comp->num_arms+1);
  if (change_count)
    {
      /* if there has been some arms added to the default object
         reinitialize all handles' position */
      if (change_count > 0)
        {
          if (is_default)
            init_default_handle_positions (comp);
          else
            {
              gint new_index = comp->object.num_handles - change_count;
              init_positions_for_handles_beginning_at_index (comp, new_index);
            }
        }
    }
  compound_update_data (comp);
  compound_sanity_check (comp, "After setting properties");
}
예제 #20
0
파일: arrow.c 프로젝트: montsuqi/monpe
static void
sadtarrow_set_props(Sadtarrow *sadtarrow, GPtrArray *props)
{
  object_set_props_from_offsets(&sadtarrow->orth.object,
                                sadtarrow_offsets,props);
  sadtarrow_update_data(sadtarrow);
}
예제 #21
0
파일: beziergon.c 프로젝트: brunetton/dia
static void
beziergon_set_props(Beziergon *beziergon, GPtrArray *props)
{
  object_set_props_from_offsets(&beziergon->bezier.object, beziergon_offsets,
				props);
  beziergon_update_data(beziergon);
}
예제 #22
0
파일: participation.c 프로젝트: UIKit0/dia
static void
participation_set_props(Participation *participation, GPtrArray *props)
{
  object_set_props_from_offsets(&participation->orth.object, 
                                participation_offsets, props);
  participation_update_data(participation);
}
예제 #23
0
파일: bus.c 프로젝트: krattai/monoflow
static void
bus_set_props(Bus *bus, GPtrArray *props)
{
  object_set_props_from_offsets(&bus->connection.object, bus_offsets,
				props);
  bus_update_data(bus);
}
예제 #24
0
파일: aadlbox.c 프로젝트: UIKit0/dia
void
aadlbox_set_props(Aadlbox *aadlbox, GPtrArray *props)
{
  object_set_props_from_offsets(&aadlbox->element.object,
                                aadlbox_offsets,props);
  aadlbox_update_data(aadlbox);
}
예제 #25
0
파일: zigzagline.c 프로젝트: brunetton/dia
static void
zigzagline_set_props(Zigzagline *zigzagline, GPtrArray *props)
{
  object_set_props_from_offsets(&zigzagline->orth.object, zigzagline_offsets,
				props);
  zigzagline_update_data(zigzagline);
}
예제 #26
0
파일: state_term.c 프로젝트: brunetton/dia
static void
state_set_props(State *state, GPtrArray *props)
{
  object_set_props_from_offsets(&state->element.object,
                                state_offsets,props);
  state_update_data(state);
}
예제 #27
0
파일: chronoref.c 프로젝트: UIKit0/dia
static void
chronoref_set_props(Chronoref *chronoref, GPtrArray *props)
{
  object_set_props_from_offsets(&chronoref->element.object,
                                chronoref_offsets,props);
  chronoref_update_data(chronoref);
}
예제 #28
0
파일: newgroup.c 프로젝트: krattai/monoflow
static void
newgroup_set_props(NewGroup *group, GPtrArray *props)
{
  object_set_props_from_offsets(&group->element.object, 
                                newgroup_offsets, props);
  newgroup_update_data(group);
}
예제 #29
0
파일: flow.c 프로젝트: brunetton/dia
static void
flow_set_props(Flow *flow, GPtrArray *props)
{
  object_set_props_from_offsets(&flow->connection.object, 
                                flow_offsets, props);
  flow_update_data(flow);
}
예제 #30
0
파일: radiocell.c 프로젝트: AmiGanguli/dia
static void
radiocell_set_props(RadioCell *radiocell, GPtrArray *props)
{
  object_set_props_from_offsets(&radiocell->poly.object,
                                radiocell_offsets, props);
  radiocell_update_data(radiocell);
}