Top | ![]() |
![]() |
![]() |
![]() |
|
e_cell_text_new () |
|
e_cell_text_construct () |
|
e_cell_text_get_text () |
|
e_cell_text_free_text () |
|
e_cell_text_set_value () |
|
e_cell_text_set_selection () |
|
e_cell_text_get_selection () |
|
e_cell_text_copy_clipboard () |
|
e_cell_text_paste_clipboard () |
|
e_cell_text_delete_selection () |
|
e_cell_text_get_text_by_view () |
ECell * e_cell_text_new (const
,gchar *fontname);
GtkJustification justify
Creates a new ECell renderer that can be used to render strings that that come from the model. The value returned from the model is interpreted as being a gchar *.
The ECellText object support a large set of properties that can be configured through the Gtk argument system and allows the user to have a finer control of the way the string is displayed. The arguments supported allow the control of strikeout, underline, bold, and color.
The arguments "strikeout_column", "underline_column", "bold_column"
and "color_column" set and return an integer that points to a
column in the model that controls these settings. So controlling
the way things are rendered is achieved by having special columns
in the model that will be used to flag whether the text should be
rendered with strikeout, or bolded. In the case of the
"color_column" argument, the column in the model is expected to
have a string that can be parsed by gdk_color_parse()
ECell * e_cell_text_construct (,
ECellText *cellconst
,gchar *fontname);
GtkJustification justify
constructs the ECellText. To be used by subclasses and language bindings.
gchar * e_cell_text_get_text (,
ECellText *cell,
ETableModel *model,
gint col);
gint row
void e_cell_text_free_text (,
ECellText *cell,
ETableModel *model,
gint col);
gchar *text
void e_cell_text_set_value (,
ECellText *cell,
ETableModel *model,
gint col,
gint rowconst
);gchar *text
gboolean e_cell_text_set_selection (ECellView *cell_view
,,
gint col,
gint row,
gint start);
gint end
Sets the selection of given text cell. If the current editing cell is not the given cell, this function will return FALSE;
If success, the [start, end) part of the text will be selected.
This API is most likely to be used by a11y implementations.
gboolean e_cell_text_get_selection (ECellView *cell_view
,,
gint col,
gint row,
gint *start);
gint *end
Gets the selection of given text cell. If the current editing cell is not the given cell, this function will return FALSE;
This API is most likely to be used by a11y implementations.
void e_cell_text_copy_clipboard (ECellView *cell_view
,,
gint col);
gint row
Copys the selected text to clipboard.
This API is most likely to be used by a11y implementations.
void e_cell_text_paste_clipboard (ECellView *cell_view
,,
gint col);
gint row
Pastes the text from the clipboardt.
This API is most likely to be used by a11y implementations.
void e_cell_text_delete_selection (ECellView *cell_view
,,
gint col);
gint row
Deletes the selected text of the cell.
This API is most likely to be used by a11y implementations.
gchar * e_cell_text_get_text_by_view (ECellView *cell_view
,,
gint col);
gint row
Get the cell's text directly from CellEdit, during editting this cell, the cell's text value maybe inconsistant with the text got from table_model. The caller should free the text after using it.
This API is most likely to be used by a11y implementations.