|
@ -45,6 +45,7 @@ my $search_window; |
|
|
my $Shortcuts; |
|
|
my $Shortcuts; |
|
|
my @entry; |
|
|
my @entry; |
|
|
my $file_dialog; |
|
|
my $file_dialog; |
|
|
|
|
|
my $blue; # for search |
|
|
|
|
|
|
|
|
#my $filesystem_type = "ext2"; |
|
|
#my $filesystem_type = "ext2"; |
|
|
#my $inode_size = 8192; |
|
|
#my $inode_size = 8192; |
|
@ -962,6 +963,7 @@ sub yard_box { |
|
|
# Create the GtkText widget |
|
|
# Create the GtkText widget |
|
|
$text = new Gtk::Text( undef, undef ); |
|
|
$text = new Gtk::Text( undef, undef ); |
|
|
##Gtk::Text->signal_connect_after("key-press-event" => \&Gtk::false); |
|
|
##Gtk::Text->signal_connect_after("key-press-event" => \&Gtk::false); |
|
|
|
|
|
$blue = Gtk::Gdk::Color->parse_color("blue"); |
|
|
$text->set_editable($true); |
|
|
$text->set_editable($true); |
|
|
$text->signal_connect("activate", sub { |
|
|
$text->signal_connect("activate", sub { |
|
|
my $new_length = $text->get_length(); |
|
|
my $new_length = $text->get_length(); |
|
@ -1196,15 +1198,41 @@ sub search { |
|
|
if ($search_backwards->active) { |
|
|
if ($search_backwards->active) { |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
# index |
|
|
else { |
|
|
else { |
|
|
if (!$offset) { |
|
|
if (!$offset) { |
|
|
$offset = index($changed_text_from_template, $keywords); |
|
|
$offset = index($changed_text_from_template, $keywords); |
|
|
|
|
|
if ($offset != -1) { |
|
|
|
|
|
$text->set_point($offset); |
|
|
|
|
|
my $length = length($keywords); |
|
|
|
|
|
$text->forward_delete( $length ); |
|
|
|
|
|
$text->insert( undef, $blue, undef, $keywords ); |
|
|
|
|
|
|
|
|
|
|
|
$length = $length + ($offset - 1); |
|
|
|
|
|
my $stuff = $text->get_chars($offset, $length); |
|
|
|
|
|
print "$offset && $length\n"; |
|
|
|
|
|
#Gtk::Widget::drag_begin(widget, targets, actions, button, event) |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
else { |
|
|
else { |
|
|
$offset = $offset + 1; |
|
|
$offset = $offset + 1; |
|
|
$offset = index($changed_text_from_template, $keywords, |
|
|
$offset = index($changed_text_from_template, $keywords, |
|
|
$offset); |
|
|
$offset); |
|
|
|
|
|
if ($offset != -1) { |
|
|
|
|
|
$text->set_point($offset); |
|
|
|
|
|
my $length = length($keywords); |
|
|
|
|
|
$text->forward_delete( $length ); |
|
|
|
|
|
$text->insert( undef, $blue, undef, $keywords ); |
|
|
|
|
|
|
|
|
|
|
|
$length = $length + ($offset - 1); |
|
|
|
|
|
$text->get_chars($offset, $length); |
|
|
|
|
|
print "$offset && $length\n"; |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
print "$offset\n" if $offset; |
|
|
print "$offset\n" if $offset; |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|