diff options
author | mbkma <[email protected]> | 2020-02-13 22:24:23 +0100 |
---|---|---|
committer | lukefromdc <[email protected]> | 2020-02-27 05:50:08 +0000 |
commit | 8de77e33ab168df33b2a4bc7a7fe45aed75e9040 (patch) | |
tree | 379e6ad7924cd65ffad2f7d0a8a2464618772940 /src/history-entry.ui | |
parent | 432a684f6139ec0029eff6469e2873c11cb9adc4 (diff) | |
download | mate-calc-8de77e33ab168df33b2a4bc7a7fe45aed75e9040.tar.bz2 mate-calc-8de77e33ab168df33b2a4bc7a7fe45aed75e9040.tar.xz |
add history view to show recent calculations.
add option to enable/disable history (disabled by default).
add possibility to resize mate-calc if history is enabled.
Diffstat (limited to 'src/history-entry.ui')
-rw-r--r-- | src/history-entry.ui | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/src/history-entry.ui b/src/history-entry.ui new file mode 100644 index 0000000..e8335d8 --- /dev/null +++ b/src/history-entry.ui @@ -0,0 +1,83 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- Generated with glade 3.22.1 --> +<interface> + <requires lib="gtk+" version="3.22"/> + <object class="GtkGrid" id="grid"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="margin_left">12</property> + <property name="margin_right">16</property> + <property name="margin_start">12</property> + <property name="margin_end">16</property> + <property name="column_homogeneous">True</property> + <child> + <object class="GtkEventBox" id="equation_eventbox"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <signal name="button-press-event" handler="equation_clicked_cb" swapped="no"/> + <child> + <object class="GtkLabel" id="equation_label"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="ellipsize">end</property> + <property name="max_width_chars">1</property> + <property name="xalign">0</property> + <property name="yalign">0.5</property> + <attributes> + <attribute name="size" value="14000"/> + </attributes> + </object> + </child> + </object> + <packing> + <property name="left_attach">0</property> + <property name="top_attach">0</property> + <property name="width">4</property> + </packing> + </child> + <child> + <object class="GtkLabel" id="equation_symbol"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="label">=</property> + <property name="max_width_chars">1</property> + <property name="xalign">0.5</property> + <property name="yalign">0.5</property> + <attributes> + <attribute name="weight" value="light"/> + <attribute name="size" value="12000"/> + </attributes> + </object> + <packing> + <property name="left_attach">4</property> + <property name="top_attach">0</property> + </packing> + </child> + <child> + <object class="GtkEventBox" id="answer_eventbox"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <signal name="button-press-event" handler="answer_clicked_cb" swapped="no"/> + <child> + <object class="GtkLabel" id="answer_label"> + <property name="visible">True</property> + <property name="can_focus">False</property> + <property name="ellipsize">end</property> + <property name="max_width_chars">12</property> + <property name="xalign">1</property> + <property name="yalign">0.5</property> + <attributes> + <attribute name="weight" value="bold"/> + <attribute name="size" value="14000"/> + </attributes> + </object> + </child> + </object> + <packing> + <property name="left_attach">5</property> + <property name="top_attach">0</property> + <property name="width">2</property> + </packing> + </child> + </object> +</interface> |