Home
last modified time | relevance | path

Searched refs:row_properties (Results 1 – 14 of 14) sorted by relevance

/dports/textproc/xlnt/xlnt-1.5.0-92-g20f3dac2/include/xlnt/worksheet/
H A Drow_properties.hpp34 class XLNT_API row_properties class
75 inline bool operator==(const row_properties &lhs, const row_properties &rhs) in operator ==()
H A Dworksheet.hpp56 class row_properties;
324 xlnt::row_properties &row_properties(row_t row);
329 const xlnt::row_properties &row_properties(row_t row) const;
339 void add_row_properties(row_t row, const class row_properties &props);
/dports/x11-toolkits/gtk40/gtk-4.4.1/gtk/
H A Dgtktreelistmodel.c957 static GParamSpec *row_properties[NUM_ROW_PROPERTIES] = { NULL, }; variable
967 g_object_notify_by_pspec (G_OBJECT (self), row_properties[ROW_PROP_DEPTH]); in G_DEFINE_TYPE()
969 g_object_notify_by_pspec (G_OBJECT (self), row_properties[ROW_PROP_EXPANDED]); in G_DEFINE_TYPE()
970 g_object_notify_by_pspec (G_OBJECT (self), row_properties[ROW_PROP_ITEM]); in G_DEFINE_TYPE()
1057 row_properties[ROW_PROP_CHILDREN] = in gtk_tree_list_row_class_init()
1069 row_properties[ROW_PROP_DEPTH] = in gtk_tree_list_row_class_init()
1081 row_properties[ROW_PROP_EXPANDABLE] = in gtk_tree_list_row_class_init()
1093 row_properties[ROW_PROP_EXPANDED] = in gtk_tree_list_row_class_init()
1105 row_properties[ROW_PROP_ITEM] = in gtk_tree_list_row_class_init()
1220 g_object_notify_by_pspec (G_OBJECT (self), row_properties[ROW_PROP_EXPANDED]); in gtk_tree_list_row_set_expanded()
[all …]
H A Dgtkgridlayout.c437 GArray *row_properties; member
1644 g_clear_pointer (&self->row_properties, g_array_unref); in gtk_grid_layout_finalize()
1907 if (self->row_properties == NULL) in find_row_properties()
1910 for (i = 0; i < self->row_properties->len; i++) in find_row_properties()
1912 GridRowProperties *prop = &g_array_index (self->row_properties, GridRowProperties, i); in find_row_properties()
1935 if (self->row_properties == NULL) in get_row_properties_or_create()
1936 self->row_properties = g_array_new (FALSE, FALSE, sizeof (GridRowProperties)); in get_row_properties_or_create()
1938 g_array_append_vals (self->row_properties, &grid_row_properties_default, 1); in get_row_properties_or_create()
1939 props = &g_array_index (self->row_properties, GridRowProperties, self->row_properties->len - 1); in get_row_properties_or_create()
H A Dgtklistbox.c336 static GParamSpec *row_properties[LAST_ROW_PROPERTY] = { NULL, }; variable
2971 g_object_notify_by_pspec (G_OBJECT (row), row_properties[ROW_PROP_CHILD]); in gtk_list_box_row_set_child()
3287 g_object_notify_by_pspec (G_OBJECT (row), row_properties[ROW_PROP_ACTIVATABLE]); in gtk_list_box_row_set_activatable()
3339 g_object_notify_by_pspec (G_OBJECT (row), row_properties[ROW_PROP_SELECTABLE]); in gtk_list_box_row_set_selectable()
3556 row_properties[ROW_PROP_ACTIVATABLE] = in gtk_list_box_row_class_init()
3568 row_properties[ROW_PROP_SELECTABLE] = in gtk_list_box_row_class_init()
3580 row_properties[ROW_PROP_CHILD] = in gtk_list_box_row_class_init()
3587 g_object_class_install_properties (object_class, LAST_ROW_PROPERTY, row_properties); in gtk_list_box_row_class_init()
/dports/textproc/xlnt/xlnt-1.5.0-92-g20f3dac2/tests/workbook/
H A Dserialization_test_suite.cpp268 sheet1.row_properties(i).dy_descent = 0.2; in test_write_comments_hyperlinks_formulae()
294 sheet2.row_properties(i).dy_descent = 0.2; in test_write_comments_hyperlinks_formulae()
501 xlnt_assert(!ws.row_properties(2).height.is_set()); in test_read_custom_heights_widths()
503 xlnt_assert(!ws.row_properties(4).height.is_set()); in test_read_custom_heights_widths()
546 ws.row_properties(i).dy_descent = 0.2; in test_write_custom_heights_widths()
549 ws.row_properties(1).height = 99.95; in test_write_custom_heights_widths()
550 ws.row_properties(1).custom_height = true; in test_write_custom_heights_widths()
552 ws.row_properties(3).height = 99.95; in test_write_custom_heights_widths()
553 ws.row_properties(3).custom_height = true; in test_write_custom_heights_widths()
555 ws.row_properties(5).height = 99.95; in test_write_custom_heights_widths()
[all …]
H A Dworkbook_test_suite.cpp529 xlnt_assert_equals(ws.row_properties(1).spans.get(), "1:8"); in test_Issue353()
530 xlnt_assert_equals(ws.row_properties(17).spans.get(), "2:7"); in test_Issue353()
/dports/textproc/xlnt/xlnt-1.5.0-92-g20f3dac2/tests/worksheet/
H A Dworksheet_test_suite.cpp567 ws.row_properties(11).height = 14.3; in test_lowest_row_or_props()
583 ws.row_properties(11).height = 14.3; in test_highest_row_or_props()
1318 xlnt::row_properties row_prop; in test_insert_rows()
1338 xlnt_assert_equals(ws.row_properties(1).height, 1); in test_insert_rows()
1353 xlnt_assert_equals(ws.row_properties(4).height, 2); in test_insert_rows()
1371 xlnt::row_properties row_prop; in test_insert_columns()
1409 xlnt_assert_equals(ws.row_properties(1).height, 1); in test_insert_columns()
1410 xlnt_assert_equals(ws.row_properties(2).height, 2); in test_insert_columns()
1426 xlnt::row_properties row_prop; in test_delete_rows()
1444 xlnt_assert_equals(ws.row_properties(1).height, 1); in test_delete_rows()
[all …]
/dports/textproc/xlnt/xlnt-1.5.0-92-g20f3dac2/source/worksheet/
H A Dworksheet.cpp859 std::vector<std::pair<row_t, xlnt::row_properties>> properties_to_move; in move_cells()
1097 row_properties &worksheet::row_properties(row_t row) in row_properties() function in xlnt::worksheet
1102 const row_properties &worksheet::row_properties(row_t row) const in row_properties() function in xlnt::worksheet
1107 void worksheet::add_row_properties(row_t row, const xlnt::row_properties &props) in add_row_properties()
1282 if (has_row_properties(row) && row_properties(row).height.is_set()) in row_height()
1284 return row_properties(row).height.get(); in row_height()
/dports/textproc/xlnt/xlnt-1.5.0-92-g20f3dac2/source/detail/implementations/
H A Dworksheet_impl.hpp133 std::unordered_map<row_t, row_properties> row_properties_;
/dports/textproc/xlnt/xlnt-1.5.0-92-g20f3dac2/source/detail/serialization/
H A Dxlsx_consumer.cpp135 std::vector<std::pair<xlnt::row_properties, xlnt::row_t>> parsed_rows;
254 std::pair<xlnt::row_properties, int> parse_row(xml::parser *parser, xlnt::detail::number_serialiser… in parse_row()
256 std::pair<xlnt::row_properties, int> props; in parse_row()
1277 auto &row_properties = ws.row_properties(row_index); in has_cell() local
1281 row_properties.height = converter_.deserialise(parser().attribute("ht")); in has_cell()
1286 row_properties.custom_height = is_true(parser().attribute("customHeight")); in has_cell()
1291 row_properties.hidden = true; in has_cell()
1296row_properties.dy_descent = converter_.deserialise(parser().attribute(qn("x14ac", "dyDescent"))); in has_cell()
1301 row_properties.spans = parser().attribute("spans"); in has_cell()
H A Dxlsx_producer.cpp2213 if (ws.has_row_properties(row) && ws.row_properties(row).dy_descent.is_set()) in write_worksheet()
2518 const auto &props = ws.row_properties(row); in write_worksheet()
/dports/x11-toolkits/gtk30/gtk+-3.24.31/gtk/
H A Dgtkgrid.c107 GList *row_properties; member
396 g_list_free_full (priv->row_properties, (GDestroyNotify)gtk_grid_row_properties_free); in gtk_grid_finalize()
2085 for (list = priv->row_properties; list != NULL; list = list->next) in gtk_grid_insert_row()
2489 for (l = grid->priv->row_properties; l != NULL; l = l->next) in find_row_properties()
2520 priv->row_properties = in get_row_properties_or_create()
2521 g_list_prepend (priv->row_properties, props); in get_row_properties_or_create()
H A Dgtklistbox.c333 static GParamSpec *row_properties[LAST_ROW_PROPERTY] = { NULL, }; variable
3651 g_object_notify_by_pspec (G_OBJECT (row), row_properties[ROW_PROP_ACTIVATABLE]); in gtk_list_box_row_set_activatable()
3699 g_object_notify_by_pspec (G_OBJECT (row), row_properties[ROW_PROP_SELECTABLE]); in gtk_list_box_row_set_selectable()
3918 row_properties[ROW_PROP_ACTIVATABLE] = in gtk_list_box_row_class_init()
3932 row_properties[ROW_PROP_SELECTABLE] = in gtk_list_box_row_class_init()
3939 g_object_class_install_properties (object_class, LAST_ROW_PROPERTY, row_properties); in gtk_list_box_row_class_init()