/usr/share/perl5/AMC/Gui/Notes.pm is in auto-multiple-choice-common 1.2.1-3build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | #! /usr/bin/perl -w
#
# Copyright (C) 2009-2013 Alexis Bienvenue <paamc@passoire.fr>
#
# This file is part of Auto-Multiple-Choice
#
# Auto-Multiple-Choice is free software: you can redistribute it
# and/or modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation, either version 2 of
# the License, or (at your option) any later version.
#
# Auto-Multiple-Choice is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty
# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Auto-Multiple-Choice. If not, see
# <http://www.gnu.org/licenses/>.
package AMC::Gui::Notes;
use AMC::Basic;
use Encode;
use Gtk2 -init;
use constant {
TAB_ID => 0,
TAB_NOTE => 1,
TAB_COLOR => 2,
TAB_DETAIL => 3,
};
sub ajoute_colonne {
my ($tree,$store,$titre,$i)=@_;
my $renderer=Gtk2::CellRendererText->new;
my $column = Gtk2::TreeViewColumn->new_with_attributes(
$titre,
$renderer,
text=> $i,
'background'=>TAB_COLOR );
$column->set_sort_column_id($i);
$tree->append_column($column);
$store->set_sort_func($i,\&sort_num,$i);
}
sub formatte {
my ($x)=@_;
$x=(defined($x) ? sprintf("%.2f",$x) : '');
$x =~ s/0+$//;
$x =~ s/\.$//;
return($x);
}
sub new {
my %o=(@_);
my $self={'scoring'=>'',
};
my $it;
for (keys %o) {
$self->{$_}=$o{$_} if(defined($self->{$_}));
}
bless $self;
my $glade_xml=__FILE__;
$glade_xml =~ s/\.p[ml]$/.glade/i;
$self->{'gui'}=Gtk2::Builder->new();
$self->{'gui'}->set_translation_domain('auto-multiple-choice');
$self->{'gui'}->add_from_file($glade_xml);
for my $k (qw/general tableau/) {
$self->{$k}=$self->{'gui'}->get_object($k);
}
if($self->{'general'}->get_direction() eq 'rtl') {
$self->{'tableau'}->set_grid_lines('horizontal');
}
$self->{'gui'}->connect_signals(undef,$self);
$self->{'scoring'}->begin_read_transaction;
for (qw/student copy/) {
$self->{'postcorrect_'.$_}=
$self->{'scoring'}->variable('postcorrect_'.$_);
$self->{'postcorrect_'.$_}=-1 if(!defined($self->{'postcorrect_'.$_}));
}
my @codes=$self->{'scoring'}->codes;
my @questions=sort { $a->{'title'} cmp $b->{'title'} }
grep { $_->{'title'} !~ /\.[0-9]+$/ }
($self->{'scoring'}->questions);
my $store = Gtk2::ListStore->new ( map {'Glib::String' } (1..(3+1+$#codes+1+$#questions)) );
$self->{'tableau'}->set_model($store);
ajoute_colonne($self->{'tableau'},$store,
translate_column_title("copie"),TAB_ID);
ajoute_colonne($self->{'tableau'},$store,
translate_column_title("note"),TAB_NOTE);
my $i=TAB_DETAIL ;
for((map { $_->{'title'}} @questions),@codes) {
ajoute_colonne($self->{'tableau'},$store,decode('utf-8',$_),$i++);
}
my $row=0;
my @vv;
COPIE:for my $m ($self->{'scoring'}->marks) {
my @sc=($m->{'student'},$m->{'copy'});
@vv=(TAB_ID,studentids_string(@sc),
TAB_NOTE,formatte($m->{'mark'}),
TAB_COLOR,($sc[0]==$self->{'postcorrect_student'} &&
$sc[1]==$self->{'postcorrect_copy'}
? '#CAEC87' : undef)
);
$i=TAB_DETAIL ;
for(@questions) {
push @vv,$i++,
formatte($self->{'scoring'}->question_score(@sc,$_->{'question'}));
}
for(@codes) {
push @vv,$i++,$self->{'scoring'}->student_code(@sc,$_);
}
$store->insert_with_values($row++,@vv);
}
# Average row
@vv=(TAB_ID,translate_id_name('moyenne'),
TAB_NOTE,formatte($self->{'scoring'}->average_mark),
);
$i=TAB_DETAIL ;
for(@questions) {
my $p;
if($self->{'scoring'}->one_indicative($_->{'question'})) {
$p='-';
} else {
$p=$self->{'scoring'}->question_average($_->{'question'});
if($p ne '-') {
$p=sprintf("%.0f%%",$p);
} else {
$p='?';
}
}
push @vv,$i++,$p;
}
for(@codes) {
push @vv,$i++,'---';
}
$store->insert_with_values($row++,@vv);
$self->{'scoring'}->end_transaction;
return($self);
}
sub quitter {
my ($self)=(@_);
if($self->{'global'}) {
Gtk2->main_quit;
} else {
$self->{'general'}->destroy;
}
}
1;
__END__
|