This is an automated email from the git hooks/post-receive script. f2404 pushed a commit to branch master in repository apps/xfce4-terminal.
commit 9f2ebb00fc565f5a04a75e06965e319f696b5cc1 Author: Igor <[email protected]> Date: Sat Jun 25 13:35:18 2016 +0300 Add setting to change cursor shape --- terminal/terminal-preferences-dialog.c | 1 + terminal/terminal-preferences.glade | 101 ++++++++++++++++++++++++++++++++- 2 files changed, 100 insertions(+), 2 deletions(-) diff --git a/terminal/terminal-preferences-dialog.c b/terminal/terminal-preferences-dialog.c index ecefe93..ed482d4 100644 --- a/terminal/terminal-preferences-dialog.c +++ b/terminal/terminal-preferences-dialog.c @@ -140,6 +140,7 @@ terminal_preferences_dialog_init (TerminalPreferencesDialog *dialog) "command-update-records", "scrolling-single-line", "scrolling-on-output", "scrolling-on-keystroke", "scrolling-bar", "scrolling-unlimited", + "misc-cursor-shape", "font-allow-bold", "misc-menubar-default", "misc-toolbar-default", "misc-borders-default", "shortcuts-no-mnemonics", "shortcuts-no-menukey", diff --git a/terminal/terminal-preferences.glade b/terminal/terminal-preferences.glade index a95ddbe..150fc4b 100644 --- a/terminal/terminal-preferences.glade +++ b/terminal/terminal-preferences.glade @@ -1,8 +1,9 @@ <?xml version="1.0" encoding="UTF-8"?> -<!-- Generated with glade 3.18.3 --> +<!-- Generated with glade 3.20.0 --> <interface> <requires lib="gtk+" version="3.14"/> <requires lib="libxfce4ui" version="4.12"/> + <requires lib="libxfce4ui-2" version="4.12"/> <object class="GtkAdjustment" id="background-darkness"> <property name="upper">1</property> <property name="step_increment">0.01</property> @@ -169,6 +170,23 @@ </row> </data> </object> + <object class="GtkListStore" id="liststore7"> + <columns> + <!-- column-name title --> + <column type="gchararray"/> + </columns> + <data> + <row> + <col id="0" translatable="yes">Block</col> + </row> + <row> + <col id="0" translatable="yes">I-Beam</col> + </row> + <row> + <col id="0" translatable="yes">Underline</col> + </row> + </data> + </object> <object class="GtkAdjustment" id="scrolling-line"> <property name="lower">1</property> <property name="upper">5242880</property> @@ -572,7 +590,6 @@ <child> <object class="GtkCheckButton" id="scrolling-unlimited"> <property name="label" translatable="yes">Unli_mited scrollback</property> - <property name="use_action_appearance">False</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> @@ -614,6 +631,86 @@ <property name="position">2</property> </packing> </child> + <child> + <object class="GtkFrame" id="frame18"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="label_xalign">0</property> + <property name="shadow_type">none</property> + <child> + <object class="GtkAlignment" id="alignment18"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="left_padding">12</property> + <child> + <object class="GtkBox" id="vbox18"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="orientation">vertical</property> + <child> + <object class="GtkGrid" id="grid7"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="row_spacing">6</property> + <property name="column_spacing">12</property> + <child> + <object class="GtkLabel" id="label54"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="label" translatable="yes">Cursor shape:</property> + <property name="use_underline">True</property> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">0</property> + </packing> + </child> + <child> + <object class="GtkComboBox" id="misc-cursor-shape"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="hexpand">True</property> + <property name="model">liststore7</property> + <child> + <object class="GtkCellRendererText" id="cellrenderertext9"/> + <attributes> + <attribute name="text">0</attribute> + </attributes> + </child> + </object> + <packing> + <property name="left_attach">1</property> + <property name="top_attach">0</property> + </packing> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">0</property> + </packing> + </child> + </object> + </child> + </object> + </child> + <child type="label"> + <object class="GtkLabel" id="label53"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="label" translatable="yes">Cursor</property> + <attributes> + <attribute name="weight" value="bold"/> + </attributes> + </object> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="fill">True</property> + <property name="position">3</property> + </packing> + </child> </object> </child> <child type="tab"> -- To stop receiving notification emails like this one, please contact the administrator of this repository. _______________________________________________ Xfce4-commits mailing list [email protected] https://mail.xfce.org/mailman/listinfo/xfce4-commits
