Commit 01c5333d authored by Victor Ananjevsky's avatar Victor Ananjevsky

homogeneous height of form fields made optional

parent 5b6497ac
...@@ -591,6 +591,9 @@ Use specific type for extended completion. \fITYPE\fP can be \fIany\fP for match ...@@ -591,6 +591,9 @@ Use specific type for extended completion. \fITYPE\fP can be \fIany\fP for match
.B \-\-scroll .B \-\-scroll
Make form scrollable. Make form scrollable.
.TP .TP
.B \-\-homogeneous
Make form fields height the same.
.TP
.B \-\-changed-action=\fICMD\fP .B \-\-changed-action=\fICMD\fP
Run \fICMD\fP when \fICHK\fP or \fICB\fP field values are changed. Command runs with two arguments - number of changed field and its current value. Run \fICMD\fP when \fICHK\fP or \fICB\fP field values are changed. Command runs with two arguments - number of changed field and its current value.
Output of a command parsing in a same manner as in \fIBTN\fP fields with \fI@\fP prefix. \fBAttention\fP - this option may slow down your dialog. Output of a command parsing in a same manner as in \fIBTN\fP fields with \fI@\fP prefix. \fBAttention\fP - this option may slow down your dialog.
......
...@@ -377,6 +377,8 @@ static GOptionEntry form_options[] = { ...@@ -377,6 +377,8 @@ static GOptionEntry form_options[] = {
N_("Set number of columns in form"), N_("NUMBER") }, N_("Set number of columns in form"), N_("NUMBER") },
{ "scroll", 0, 0, G_OPTION_ARG_NONE, &options.form_data.scroll, { "scroll", 0, 0, G_OPTION_ARG_NONE, &options.form_data.scroll,
N_("Make form scrollable"), NULL }, N_("Make form scrollable"), NULL },
{ "homogeneous", 0, 0, G_OPTION_ARG_NONE, &options.form_data.homogeneous,
N_("Make form fields same height"), NULL },
{ "output-by-row", 0, 0, G_OPTION_ARG_NONE, &options.form_data.output_by_row, { "output-by-row", 0, 0, G_OPTION_ARG_NONE, &options.form_data.output_by_row,
N_("Order output fields by rows"), NULL }, N_("Order output fields by rows"), NULL },
{ "focus-field", 0, 0, G_OPTION_ARG_INT, &options.form_data.focus_field, { "focus-field", 0, 0, G_OPTION_ARG_INT, &options.form_data.focus_field,
...@@ -891,10 +893,6 @@ add_field (const gchar * option_name, const gchar * value, gpointer data, GError ...@@ -891,10 +893,6 @@ add_field (const gchar * option_name, const gchar * value, gpointer data, GError
fld->type = YAD_FIELD_SIMPLE; fld->type = YAD_FIELD_SIMPLE;
options.form_data.fields = g_slist_append (options.form_data.fields, fld); options.form_data.fields = g_slist_append (options.form_data.fields, fld);
/* disable homogeneous rows if form has text field */
if (fld->type == YAD_FIELD_TEXT)
options.form_data.homogeneous = FALSE;
g_strfreev (fstr); g_strfreev (fstr);
return TRUE; return TRUE;
} }
...@@ -1741,7 +1739,7 @@ yad_options_init (void) ...@@ -1741,7 +1739,7 @@ yad_options_init (void)
options.form_data.cycle_read = FALSE; options.form_data.cycle_read = FALSE;
options.form_data.align_buttons = FALSE; options.form_data.align_buttons = FALSE;
options.form_data.changed_action = NULL; options.form_data.changed_action = NULL;
options.form_data.homogeneous = TRUE; options.form_data.homogeneous = FALSE;
#ifdef HAVE_HTML #ifdef HAVE_HTML
/* Initialize html data */ /* Initialize html data */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment