Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#!/usr/bin/perl -w use Tk; use strict; my @Custom_Border = (); my @frames = (); my ($x, $y) = 0; my $flag = 0; my $mw = MainWindow->new(-background=>'#000000', -title=>"You Should Never See This."); $mw->overrideredirect(1); $frames[0] = $mw->Frame()->pack(-fill=>'both'); $frames[1] = $mw->Frame()->pack(-fill=>'both'); $frames[2] = $mw->Frame()->pack(-fill=>'both'); $Custom_Border[0] = $frames[0]->Label(-background=>'#FFFFFF', -borderwidth=>0, -text=>"Top")->pack(-side=>'top', -fill=>'both'); $Custom_Border[1] = $frames[1]->Label(-background=>'#FFFFFF', -borderwidth=>0, -text=>"Left")->pack(-side=>'left', -anchor=>'w', -fill=>'both'); $frames[3] = $frames[1]->Frame()->pack(-side=>'left',-fill=>'both'); $Custom_Border[2] = $frames[1]->Label(-background=>'#FFFFFF', -borderwidth=>0, -text=>"Right")->pack(-side=>'right', -anchor=>'e', -fill=>'both'); $Custom_Border[3] = $frames[2]->Label(-background=>'#FFFFFF', -borderwidth=>0, -text=>"Bottom")->pack(-side=>'bottom', -fill=>'both'); my $Q_Button = $frames[3]->Button(-text=>"Quit",-command=>sub {$mw->de +stroy();})->pack(); $Custom_Border[0]->bind('<Button-1>',sub {$flag = 1;}); $Custom_Border[0]->bind('<ButtonRelease-1>',sub {$flag = 0;}); $Custom_Border[0]->bind('<Motion>',sub { if ($flag) { ($x,$y) = $Custom_Border[0]->pointerxy; $mw->geometry("+".($x-5)."+".($y-5)); printf "Moving to %d,%d\n",$Custom_Border[0]->pointerxy; $mw->update; } }); MainLoop();

In reply to Make decoration-less windows in TK, and not lose functionality. by wombat

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (5)
As of 2024-04-24 19:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found