Tagged Questions
Perl's TK module provides a complete interface to Tk, a GUI toolkit, while providing an Object Oriented interface to Perl code.
7
votes
5answers
1k views
How can I enhance the look of the Perl/TK GUI under Perl 5.004?
I have an application that is built to work on Windows, Linux, and Solaris that uses the Perl/TK GUI. Due to constraints, we are limited to Perl/TK only. Moreover, we are limited to an old Perl/Tk ...
5
votes
2answers
1k views
Trying to install MinGW and Tk for Perl on Windows 7
So... I have been trying to get this working for several weeks now. I can install MinGW through the .exe, but no-matter what I do I can't seem to get make support or ppm install MinGW to work in such ...
5
votes
6answers
331 views
C++ to Perl/Tk
I have to do a college project using C++. It also requires a GUI and I want to use Perl/Tk for the Gui, but am not sure how to link the C++ to the Perl. The project requires being able to pass ...
3
votes
1answer
253 views
Why do I have problems constructing a complicated GUI using Perl-Tk on Windows?
I have a Perl-Tk GUI with about 50 sub-windows. In each sub-window there are about 50 buttons and 50 menus (each menu has about 4 options).
When I run it on UNIX/Linux/Solaris, it runs smoothly.
...
3
votes
7answers
1k views
What do these Perl/Tk errors from Tk::After mean?
Here are the errors:
$ perl ftper.pl
Use of uninitialized value $id in hash element at /usr/lib/perl5/vendor_perl/5.1
/i686-cygwin/Tk/After.pm line 39.
se of uninitialized value $id in hash element ...
2
votes
1answer
57 views
Executing commands using Button widget in Perl-Tk
#!/usr/local/bin/perl
use Tk;
# Main Window
$mw = new MainWindow;
$label = $mw -> Label(-text=>"Hello World") -> pack();
$button = $mw -> Button(-text => "Quit",
...
2
votes
2answers
246 views
How do I enable a disabled context menu item when selection happens in a Perl Tk gui?
For example in the following script:
use Tk;
my $mw = new MainWindow;
my $t = $mw->Scrolled("Text")->pack;
my $popup = $mw->Menu(
-menuitems => [
[
Button ...
2
votes
1answer
260 views
printing Line number in Text widget
I use the following code for printing the line number in a Text widget:
my $c = 0;
my $r = 0;
$txt = $mw->Text(
-background => 'white',
-width => 400,
...
2
votes
1answer
332 views
How can I create a non-modal dialog in Perl/Tk?
I am learning Perl/Tk. I want to give alert to the user whenever he/she receives the mail.
I have planned to use message box in Tk, but it is expecting the user to click ok or cancel button.
Until ...
2
votes
1answer
290 views
Delete the text widget contents using perl_tk
If we want to remove the entry widget contents we can use delete
with entry object.
Example
$ent->delete(0,'end');
But I want to remove the Text widget contents.Can any one tell me what is the ...
2
votes
1answer
408 views
How do I call another Tk window without using a subwindow?
I am making GUI (login window). When the password is correct, the login window must call other window. Is there a way in PerlTk to call another window rather than using subwindow?
use strict;
use ...
1
vote
1answer
365 views
Hide window in Perl/Tk and show again incl. all widgets
I want to hide the mainwindow for a certain amount of time then show it again.
Example:
use Tk;
my $mw = new MainWindow;
my $lblMsg = $mw -> Label(-text=>"blabla")-> grid();
my $btnPostpone ...
1
vote
1answer
69 views
How can I run initial subroutine after opening new window
In my Perl/Tk script I'm opening new windows, and i want the window opening will run an initial subroutine (when ever the window is opened)
How can I do it?
1
vote
2answers
1k views
How to disable a Perl/Tk window close ('X') button on Windows
Is there a way to make a Perl/Tk window's close ('X') button disabled?
I know how to ignore clicking it using the technique described here, but I would much rather have it disabled.
I'm using Perl/Tk ...
0
votes
2answers
74 views
Installing Perl/Tk on fedora
I am having trouble trying to install perl Tk on my system(fedora,perl v5.8.8).I downloaded the tarred module from http://search.cpan.org/~srezic/Tk-804.029/pod/gencmd, untarred it.In the terminal,I ...
0
votes
2answers
97 views
Getting output on frame instead of terminal (Perl-Tk)
#!/usr/local/bin/perl
use Tk;
# Main Window
$mw = new MainWindow;
$label = $mw -> Label(-text=>"Hello folks") -> pack();
$button = $mw -> Button(-text => "Click here to Flush rules",
...
0
votes
1answer
147 views
GUI freeze - Perl Tk
I have develop small application using Perl/Tk. Application will fetch data from web when one of the button in application is pressed. But the problem is GUI gets hang until control is return. I know ...
0
votes
1answer
105 views
Perl/Tk menubar quirks
I'm trying to add a menubar with the standard File Open, Save and New options.
However, instead of behaving as expected, the subroutine handling the open, save and new actions is launched upon ...
0
votes
1answer
69 views
Vertical placement of grid within a frame while using Grid Geometry Manager in perl-tk
I'm using a grid within a frame and I want to position the grid towards the bottom of the frame. Currently I'm doing this by placing an addition dummy label on line #4 (#114 here). Is there a better ...
0
votes
0answers
115 views
Dynamically upgrade a Perl Tk Datagrid
I am using a data grid in perltk for updating some results.
I am running the GUI in the main thread( This is in a loop). Now how do i update
information in the grid. I created a thread which will ...
0
votes
1answer
87 views
Why does the main window of an X11 application sometimes not appear in OS X
I have created Perl/Tk application for OS X compiled using ActiveState PDK PerlApp 8.2.1. The application requires X11 to work properly on OS X, and everything works fine on my own computer (OS X ...
0
votes
1answer
180 views
Perl TK resize window
Is it possible to automatically resize a Tk window to the width and height of the text inside of the text plot?
0
votes
0answers
165 views
clearing text box elements in perl tk
I am building a GUI in Perl tk and I have made a reset button which is supposed to clear elements of a text box:
use Tk;
use Tk::Text ;
............
sub reset9 {
$txt2-> delete('1.0','end');
}
...
0
votes
0answers
221 views
perl/tk Text box
What is the example if i want to get some data from a file and print on a text box or text area?Inside some perl/tk tutorial there are some function like get(),add() and content(), actually how are ...
0
votes
4answers
221 views
perl-tk: Interactivity visualize a large 2d raster data (like xvcg)
I want to write a perl application using tk to visualize a large 2d plot (it can be considered as 2d image). I need scrolling and resizing. Also I need not to store entire image in memory.
It is too ...
0
votes
1answer
356 views
How to clear the entry widget in a GUI after a button is pressed in Perl/Tk
use Tk;
$filename = 'configuration.txt';
$mw = MainWindow->new;
$mw->geometry("500x250");
$f = $mw->Frame->pack(-side => 'bottom');
$f->Button(-text => "Exit",-command => sub { ...
0
votes
2answers
386 views
How do I clear a Frame's value in Perl/Tk?
In Perl/Tk I have designed one interface in that I have one frame.
That frame has an Entry and Text box. When I am clicking the button
those Entry and Text value has to clear in the Frame. I know ...