Skip to content

Commit

Permalink
Lots of stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
t.booker committed Sep 14, 2020
1 parent b68af36 commit a720a78
Show file tree
Hide file tree
Showing 4 changed files with 200 additions and 38 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ TARGET=slide-calculator.out
# compiler
CC=gcc
# debug
DEBUG=
DEBUG=#-g
# optimisation
OPT= -pipe -Ofast
OPT=-pipe -Ofast
# warnings
WARN=
WARN=-Wextra

PTHREAD=-pthread

Expand Down
8 changes: 5 additions & 3 deletions glade/Main.glade
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
<property name="hexpand">True</property>
<property name="xalign">0.0099999997764825821</property>
<property name="input_hints">GTK_INPUT_HINT_NO_SPELLCHECK | GTK_INPUT_HINT_NONE</property>
<signal name="activate" handler="on_Screen_activate" swapped="no"/>
<signal name="changed" handler="on_Screen_changed" swapped="no"/>
</object>
<packing>
<property name="expand">False</property>
Expand Down Expand Up @@ -399,16 +401,16 @@
</packing>
</child>
<child>
<object class="GtkButton" id="Button =">
<object class="GtkButton" id="Button mod">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">True</property>
<signal name="clicked" handler="on_Button_equals_clicked" swapped="no"/>
<signal name="clicked" handler="on_Button_mod_clicked" swapped="no"/>
<child>
<object class="GtkLabel">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="label" translatable="yes">=</property>
<property name="label" translatable="yes">mod</property>
<attributes>
<attribute name="scale" value="2"/>
</attributes>
Expand Down
4 changes: 3 additions & 1 deletion glade/Main.glade~
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
<property name="hexpand">True</property>
<property name="xalign">0.0099999997764825821</property>
<property name="input_hints">GTK_INPUT_HINT_NO_SPELLCHECK | GTK_INPUT_HINT_NONE</property>
<signal name="activate" handler="on_Screen_activate" swapped="no"/>
<signal name="changed" handler="on_Screen_changed" swapped="no"/>
</object>
<packing>
<property name="expand">False</property>
Expand Down Expand Up @@ -517,7 +519,7 @@
<object class="GtkLabel">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="label" translatable="yes">.</property>
<property name="label" translatable="yes">?</property>
<attributes>
<attribute name="scale" value="2"/>
</attributes>
Expand Down
Loading

0 comments on commit a720a78

Please sign in to comment.