tkx11vnc 154 KB
Newer Older
1 2 3 4 5
#!/bin/sh
# the next line restarts using wish. \
exec wish "$0" "$@"
catch {rename send {}}
#
6
# Copyright (c) 2004-2006 Karl J. Runge <runge@karlrunge.com>
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
# All rights reserved.
#
#  This 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.
#
#  This software 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 this software; if not, write to the Free Software
#  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
#  USA.

#
25
# tkx11vnc v0.2
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
# This is a simple frontend to x11vnc.  It uses the remote control
# and query features (-remote/-query aka -R/-Q) to interact with it. 
# It is just a quick-n-dirty hack (it parses -help output, etc), but
# it could be of use playing with or learning about the (way too) many
# parameters x11vnc has.
# 
# It can be used to interact with a running x11vnc (see the x11vnc
# -gui option), or to set the parameters and then start up x11vnc.  
# 

#
# Below is a simple picture of how the gui should be laid out and how
# the menus should be organized.  Most menu items correspond to remote
# control commands. A trailing ":" after the item name means it is a string
# to be set rather than a boolean that can be toggled (e.g. the entry
# box must be used).
#
# Some tweak options may be set in the prefix "=" string.
#	A means it is an "Action" (not a true variable)
#	R means it is an action only valid in remote mode.
#	S means it is an action only valid in startup mode.
#	Q means it is an action worth querying after running.
#	P means the string can be +/- appended/deleted (string may not
#         be the same after the remote command)
#	G means gui internal item
#	F means can be set via file browse
runge's avatar
runge committed
52
#	D means for simple gui
53 54 55 56 57
#	-C:val1,... means it will be a checkbox (radio button)
#	   the "-" means no other options follow
#	0 means to skip the item.
#	-- means add a separator
#
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
global env started time_count
set started ""
proc dtime {{msg ""}} {
	global started time_count
	if {$started == ""} {
		return
	}
	set diff [expr "[exec gtod.bin] - $started"]
	set diff [format "%.2f" $diff]
	incr time_count
	if {$msg == ""} {
		set msg $time_count
	}
	puts -nonewline stderr "$msg $diff " 
	puts stderr [clock format [clock seconds]]
}

if [info exists env(X11VNC_GUI_TIME)] {
	global started time_count
	set started [exec gtod.bin]
	set time_count 0
	dtime "S"
}

83 84 85 86 87 88 89 90 91
proc set_template {} {
	global template
	set template "
Row: Actions   Clients   Permissions  Keyboard    Pointer  Help
Row: Displays  Screen    Tuning       Debugging   Misc

Actions
	=SA start
	=RA stop
92 93
	--
	=DSA attach
94
	=DRA detach
95 96 97
	--
	=RA ping
	=RA update-all
98
	=GAL Settings::
99 100 101 102
	=GA save-settings
	=SFA load-settings:
	=SA defaults-all
	=0SA clear-all
103 104 105 106
	--
	=F rc:
	norc
	=GAL LOFF
107 108 109
	-- D
	=DRA stop+quit 
	=DGA Quit 
110 111

Help
112
	=DGA gui
113
	=DGA all
114 115

Clients
116 117 118
	=DRQA current:
	=DF   connect:
	=DRQA disconnect:
119 120
	--
	accept:
runge's avatar
runge committed
121
	afteraccept:
122 123
	gone:
	vncconnect
124
	-- D
125
	filexfer
126
	=GAL Java-applet::
127
	=D http
runge's avatar
runge committed
128
	httpdir:
129 130
	httpport:
	enablehttpproxy
131
	=GAL LOFF
132 133

Displays
134
	=D display:
135
	=F auth:
136 137
	=D desktop:
	=D rfbport:
138 139 140 141
	=0 gui:

Screen
	=DRA refresh
142
	=RA reset
143
	=RA blacken
144
	-- D
145
	=D scale:
146
	scale_cursor:
147
	--
148 149
	=D solid
	solid_color:
150 151 152 153
	--
	=GAL OverlayVisuals::
	overlay
	overlay_nocursor
154
	8to24
155
	8to24_opts:
156 157
	=GAL LOFF
	=GAL 8-Bit-Color::
158
	flashcmap
159
	shiftcmap:
160
	notruecolor
161 162 163 164 165 166 167 168
	=GAL LOFF
	=GAL SubWindow::
	id:
	sid:
	=GAL LOFF
	=GAL ResizeRotate::
	= xrandr
	=-C:resize,newfbsize,exit xrandr_mode:
runge's avatar
runge committed
169
	rotate:
170 171
	padgeom:
	=GAL LOFF
172
	=GAL Clipping::
173 174
	=P blackout:
	xinerama
175
	clip:
176 177 178
	=GAL LOFF
	=GAL Misc-Screen::
	fixscreen:
179 180 181
	visual:
	rawfb:
	pipeinput:
182 183
	uinput_accel:
	uinput_reset:
runge's avatar
runge committed
184
	uinput_always:
185
	24to32
186
	=GAL LOFF
187 188

Keyboard
189 190
	=D norepeat
	=D add_keysyms
191 192 193
	modtweak
	xkb
	--
194 195
	capslock
	skip_lockkeys
196
	--
197 198
	skip_keycodes:
	skip_dups
199
	sloppy_keys
200
	--
201
	=FP remap:
202 203 204 205
	clear_mods
	clear_keys

Pointer
206
	=D-C:none,arrow,X,some,most cursor:
207
	=-C:1,2,3,4,5,6 arrow:
208 209
	--
	cursorpos
210
	=D nocursorshape
211
	--
212
	noxfixes
213
	=GAL AlphaBlending::
214 215 216 217
	noalphablend
	alphacut:
	alphafrac:
	alpharemove
218
	=GAL LOFF
219
	--
220 221 222 223 224
	buttonmap:
	--
	xwarppointer

Misc
225
	=GD-C:full,icon,tray WindowView:
226 227
	=GD simple-gui
	-- D
228 229 230
	=GA all-settings
	=RA remote-cmd:
	=GAL Selection::
231
	=D nosel
232
	noprimary
233 234 235
	nosetprimary
	noclipboard
	nosetclipboard
236
	seldir:
237
	=GAL LOFF
238
	=GAL X-ext::
239
	xtrap
240
	xrecord
241
	=RQA reset_record
242
	=GAL LOFF
243
	--
244 245 246
	nofb
	=D nobell
	nolookup
247 248 249 250 251 252 253 254
	bg
	=-C:ignore,exit sigpipe:
	=0 inetd

Debugging
	debug_pointer
	debug_keyboard
	=F logfile:
255 256
	=GA show-logfile
	=GA tail-logfile
257 258
	quiet
	--
259 260
	=GA show-start-cmd
	=DG debug_gui
261
	=GAL Misc-Debug::
262 263
	debug_xevents
	debug_xdamage
264
	=-C:0,1,2,3 debug_wireframe:
265
	debug_scroll
266
	debug_tiles
267
	debug_grabs
268
	debug_sel
269
	dbg
270
	=GAL LOFF
271 272

Permissions
273 274
	=DRQA lock
	=DRQA unlock
275 276
	=D shared
	=D forever
277
	--
278
	=DFP allow:
runge's avatar
runge committed
279
	=D localhost
280
	=RA allowonce:
runge's avatar
runge committed
281
	listen:
282
	-- D
283
	=D viewonly
284 285
	input:
	--
286 287
	=GAL Passwords::
	passwd:
288 289 290
	viewpasswd:
	=F passwdfile:
	=F rfbauth:
291 292
	usepw
	--
293 294
	unixpw
	unixpw_list:
295 296
	unixpw_nis
	unixpw_nis_list:
297 298
	=0 storepasswd
	=GAL LOFF
299 300 301 302 303
	=GAL SSL::
	ssl
	=F ssl_pem:
	stunnel
	=F stunnel_pem:
304
	=F ssldir:
305
	=F sslverify:
306
	ssltimeout:
307
	https:
308 309
	=GAL LOFF
	=GAL Misc-Perms::
310 311 312
	safer
	unsafe
	=RA noremote
313 314 315
	=0S alwaysshared
	=0S nevershared
	=0S dontdisconnect
316
	=SQA deny_all
317
	timeout:
318 319
	grabkbd
	grabptr
320
	=GAL LOFF
321 322

Tuning
323
	=D-C:0,1,2,3,4 pointer_mode:
324
	input_skip:
325
	allinput
326
	=D nodragging
327 328 329 330 331 332
	-- D
	speeds:
	=D wait:
	defer:
	=D nap
	screen_blank:
333
	--
334
	=GAL WireFrame::
335 336 337
	wireframe
	wireframe_mode:
	=-C:never,top,always wirecopyrect:
338 339
	=GAL LOFF
	=GAL ScrollCopyRect::
340 341
	=-C:never,keys,mouse,always scrollcopyrect:
	scr_area:
342 343 344
	scr_skip:
	scr_inc:
	scr_keys:
345
	scr_term:
346
	scr_keyrepeat:
347
	scr_parms:
348 349 350 351 352 353
	=GAL LOFF
	=GAL XDAMAGE::
	xdamage
	xd_area:
	xd_mem:
	=GAL LOFF
354
	--
355 356 357 358 359 360
	=GAL SharedMemory::
	noshm
	flipbyteorder
	onetile
	=GAL LOFF
	=GAL Misc-Tuning::
361
	progressive:
362 363 364 365 366 367 368 369 370 371
	fs:
	gaps:
	grow:
	fuzz:
	wait_ui:
	nowait_bog
	readtimeout:
	snapfb
	threads
	wmdt:
372
	rfbwait:
373
	nofbpm
374
	=GAL LOFF
375 376 377 378 379 380 381 382 383 384 385
"
}

proc set_internal_help {} {
	global helptext helpall

	# set some internal item help here:
	set helptext(start) "
Launch x11vnc with the settings you have prescribed in the gui.
The x11vnc process is started in an xterm window so you can see the
output, kill it, etc.
386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401

By viewing this help item, the command built so far will be displayed
in the gui text area.  Have a look.  If you Press start it will be shown
as well and you will be asked to confirm running it.

If you want to use a saved profile \"rc file\" you can do \"Misc -> rc\" and
select the file and simply start x11vnc using the rc file.  Alternatively,
you could first use the \"Actions -> load-settings\" action to load in
an \"rc file\" and then press \"Actions -> start\" to start up x11vnc
based on those values.
"
	set helptext(stop) "
The \"Actions -> stop\" action sends a signal to the running x11vnc
server indicating it should shutdown all connections and exit.

The GUI stays running in case you want to start a new x11vnc or attach
402 403
to another one.  Use \"Actions -> Quit\" if you then want to have the
gui exit. Use \"Actions -> stop+quit\" to have both exit at once.
404 405 406 407 408 409 410 411
"

	set helptext(show-start-cmd) "
Displays in the text area what the x11vnc start command (i.e. the command
run by \"Actions -> start\") looks like for the current values of the
settings.  This can be done even in the attached state.  Intended for
debugging the gui.  The help item for \"Actions -> start\" gives the
same info.
412

413 414 415 416
If you want to load in a saved profile \"rc file\" use \"Misc -> rc\"
and select the file.  \"Actions -> load-settings\" does a similar thing
with an rc-file, but reading the file and setting the gui variables to
its values.
417 418 419 420 421 422 423
"

	set helptext(debug_gui) "
Set debug_gui to get more output printed in the text area.
"

	set helptext(detach) "
424 425 426 427 428
No longer be associated with the x11vnc server.  Switch to the
non-connected state.  The x11vnc server keeps running: it does not exit.

You can either later reattach to it \"Actions -> attach\", or start
up a new x11vnc \"Actions -> start\", or exit \"Actions -> Quit\".
429 430 431
"

	set helptext(attach) "
432 433 434 435 436 437 438 439
Attach to a running x11vnc server, if possible.  Switches to connected
state if successful.  Usually the channel used to attach is via the X
display (VNC_CONNECT rootwin property) being polled by the x11vnc server.
To change or set the X display to use do \"Displays -> display\".

Sometimes the \"-connect /path/to/filename\" is used as the communcation
channel.  The running x11vnc has to know that \"/path/to/filename\"
is the communication channel (i.e. it is using the same -connect option).
440 441 442 443 444 445 446 447 448
"

	set helptext(ping) "
Check if x11vnc still responds to \"ping\" remote command.
"

	set helptext(update-all) "
Query the x11vnc server for the current values of all variables.
Populate the values into the gui's database.
449

450 451 452 453 454
Normally the gui will refresh this info every time it interacts with
the x11vnc server (including after a few minutes of inactivity), so one
doesn't need to use this action very often (unless something else is
changing the state of the x11vnc server, or new clients have connected,
etc).
455 456 457
"

	set helptext(clear-all) "
458 459 460 461 462
Forget any variable settings either entered in by you or set at the
default.  Basically sets everything to 0 or the string (unset).

This action is only available in \"startup\" mode, not when connected
to a running x11vnc server (in that case the variable settings reflect
463 464 465
the state of the running x11vnc).  To detach from a running x11vnc
server use \"Actions -> detach\"; to completely stop the x11vnc server
use \"Actions -> stop\".
466 467 468 469 470 471 472 473
"

	set helptext(defaults-all) "
Reset all variable settings to the default values.  Basically sets
everything to the default queries \"x11vnc -QD var\" retrieved at startup.

This action is only available in \"startup\" mode, not when connected
to a running x11vnc server (in that case the variable settings reflect
474 475 476
the state of the running x11vnc).  To detach from a running x11vnc
server use \"Actions -> detach\"; to completely stop the x11vnc server
use \"Actions -> stop\".
477 478 479 480 481 482 483 484 485 486 487 488 489
"

	set helptext(load-settings) "
Read in the \"rc file\" you prescribe in the dialog and then set the
variables to those in the rc-file.  Any variables not mentioned in the
rc-file are set to their default value.

You could then do \"Actions -> start\" to start x11vnc with these
parameters.  Or you could make some further changes to variables
using the gui before starting x11vnc.

This action is only available in \"startup\" mode, not when connected
to a running x11vnc server (in that case the variable settings reflect
490 491 492
the state of the running x11vnc).  To detach from a running x11vnc
server use \"Actions -> detach\"; to completely stop the x11vnc server
use \"Actions -> stop\".
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509
"

	set helptext(save-settings) "
Construct a ~/.x11vncrc file based on the current settings and
offer to save it in a file (default ~/.x11vncrc).  If saved in a
file other than the default, you can access the profile by using
the \"-rc <filename>\" option when starting x11vnc.

If an rc file entry begins with \"#d\" that means the current
setting is at the Default value and so you probably want to leave
it commented out with the \"#\" character.

If an rc file entry begins with \"#?\" that means we think
you probably do not really want to force the value to this setting.

In either case, feel free to uncomment the line and/or change any
of the parameter values in the file. 
510 511 512 513 514 515 516 517 518 519 520 521 522 523
"

	set helptext(all-settings) "
Displays the gui's database of all of the x11vnc server's current
settings.  Use \"Actions -> update-all\"  or \"Control+R\" to
refresh this list if it ever gets out of sync.
"

	set helptext(remote-cmd) "
Run a remote command (-R) or query (-Q) directly.  Only a few
remote commands are not on a menu, but for those few you can
run the command directly this way.  Just enter the command into
the Entry box when prompted.  Use the prefix \"Q:\" to indicate
a -Q query.  Examples: \"zero:20,20,100,100\", \"Q:ext_xfixes\"  
524 525 526 527
"

	set helptext(stop+quit) "
Send the stop command to the x11vnc server, then terminate the tkx11vnc gui.
528 529 530 531 532 533 534 535 536
"

	set helptext(show-logfile) "
View the current contents of the logfile (if it exists and is accessible
by the gui process).
"

	set helptext(tail-logfile) "
Run the tail(1) command with -f option on the logfile in an xterm.
537
(if it exists and is accessible by the gui process).
538 539 540
"

	set helptext(Quit) "
541
Terminate the tkx11vnc gui.  Any x11vnc server will be left running.
542 543 544 545 546
"

	set helptext(current) "
Shows a menu of currently connected VNC clients on the x11vnc server.

547 548 549
Allows you to find more information about them, change their input
permissions, or disconnect them.

550
You will be prompted to confirm any disconnections.
551 552 553 554 555 556 557
"

	set helptext(client) "
After selecting a VNC client from the \"Clients -> current\" menu,
you will be presented with a dialog that shows the information
about the VNC client.

558
You can choose to disconnect the client by clicking on the 
559 560 561 562
\"Disconnect\" checkbox and pressing \"OK\".  There will be a
confirmation dialog to doublecheck.

Alternatively, you can fine tune the VNC client's input permissions
563 564 565
by selecting any of the Keystrokes, Mouse-Motion, Button-Clicks, or
Clipboard-Input checkboxes and pressing \"OK\".  This is like the
\"-input\" option but on a per-client basis.
566

567
To not change any aspects of the VNC client press \"Cancel\".
568 569 570 571
"

	set helptext(solid_color) "
Set the -solid color value.
572 573 574 575
"

	set helptext(xrandr_mode) "
Set the -xrandr mode value.
576 577 578
"

	set helptext(unixpw_list) "
579 580 581 582 583
Set the -unixpw usernames list value.
"

	set helptext(unixpw_nis_list) "
Set the -unixpw_nis usernames list value.
584 585 586 587
"

	set helptext(stunnel_pem) "
Set the -stunnel pem filename value.
588 589 590 591
"

	set helptext(ssl_pem) "
Set the -ssl pem filename value.
592 593 594 595
"

	set helptext(wireframe_mode) "
Set the -wireframe mode string value.
596 597 598 599 600 601
"

	set helptext(simple-gui) "
Toggle between menu items corresponding the most basic ones
and all possible settings.  I.e. toggle between a simple gui
and one for power users.
602 603
"

604
	set helptext(Tray) "
605 606
The tray/icon mode (started with \"x11vnc -gui tray ...\", etc.) presents
a small icon that indicates the status of the running x11vnc server.
607 608

Depending on your environment, this icon may be embedded in a system
609 610 611 612
tray or applet dock, or simply be a standalone window.  \"-gui tray\"
will attempt to embed the icon in the system tray, while \"-gui icon\"
is for a standalone window.  Use \"-gui tray=setpass\" (or icon=setpass)
to be prompted to set the session password at startup.
613 614

When the icon has a light background, that means no VNC viewers are
615
currently connected to the VNC display.
616 617

When the icon has a dark background (i.e. reverse-video), that means at
618
least one VNC viewer is connected to the VNC display.
619 620

Moving the mouse pointer over the icon will popup a \"status balloon\"
621 622
indicating the VNC display name and the names and info of any connected VNC
viewers.  Press the middle mouse button if the balloon does not appear.
623

624 625
Clicking the left or right mouse button on the icon displays a menu
of actions:
626

627 628 629 630
    Properties      - Brings up the Properties dialog to set some basic
                      parameters.  The full tkx11vnc GUI may be accessed
                      via the \"Advanced ...\" button.  Press \"Help ...\"
                      in the Properties dialog for more info.
631 632 633 634 635 636 637
    
    Help            - Displays this help text.
    
    New Client      - Presents an entry box where you type in the name
                      of a computer that is running a VNC viewer in
                      \"listen\" mode (e.g. vncviewer -listen).  For a
                      non-standard listening port use \"host:port\".
638

639 640 641
                      Pressing \"OK\" will initiate the reverse
                      connection.  Use a blank hostname to skip it.
    
642 643 644
    Disconnect      - Shows a popup menu of connected clients.  Click on
                      one to disconnect it, or click on \"All Clients\"
                      disconnect all clients.
645 646 647 648 649 650

    Window View     - Switch between the \"full\" gui (also known as
                      \"Advanced\"), \"icon\" mode (small icon window with
                      popups), or \"tray\" mode (small icon embedded in the
                      system tray).  This is a shortcut for the action:
                      \"Properties -> Advanced -> Misc -> WindowView\".
651 652 653 654
    
    Stop x11vnc     - Directs the x11vnc server to disconnect all vncviewers
                      and then exit.  The tray/icon GUI then exits as well.

655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670
    Custom          - If you have a \$HOME/.x11vnc.gui file each uncommented
                      line in it becomes an additional menu item for this
                      menu.  The remote control command is run directly
                      via \"x11vnc -R <command>\", or if prefixed with 
                      \"action:\" runs a gui internal action, or if \"sep\"
                      adds a separator.  Set X11VNC_CUSTOM_GUI to use
                      a different filename.  Example file contents:

                             scale:3/4
                             scale:1
                             scale_cursor:1
                             sep
                             action:all-settings
                             #debug_keyboard
                             sep
                             action:Quit
671

672 673
Termination:

674 675 676
If the x11vnc server stops for any reason, the tray/icon gui will exit.

If you delete the tray/icon (e.g. X out button), that is the same
677
as the \"Stop x11vnc\" action in the menu. (This will disconnect any
678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694
VNC viewer you are currently using to access the display since the
x11vnc server is terminated).

To terminate the tray/icon gui window but not the x11vnc server press
Control-C on the tray/icon window.  You can also do this (and much
more) via Properties -> Advanced -> Actions -> Quit
"

	set helptext(NewClient) "
    New Client      - Presents an entry box where you type in the name
                      of a computer that is running a VNC viewer in
                      \"listen\" mode (e.g. vncviewer -listen).  For a
                      non-standard listening port use \"host:port\".

                      Pressing \"OK\" will initiate the reverse
                      connection.  Use a blank hostname to skip it.
    
695 696 697 698 699 700 701
"

	set helptext(Properties) "
The Properties dialog allows you to set some basic parameters of a
running x11vnc server.  After modifying them press \"OK\" or \"Apply\"
to apply the changes, or press \"Cancel\" to skip applying them.

702 703 704 705 706
 - \"Accept Connections\" toggles whether VNC viewers are allowed
   to connect or not.  It corresponds to the \"-R unlock\" and \"-R lock\"
   remote-control commands.
   
 - \"Ask for Confirmation\" toggles whether a popup menu will be presented
707 708
   at the X display when a new VNC viewer attempts to connect.  The person
   sitting at the X display can choose to accept or reject the connection
709 710 711 712 713 714 715 716 717 718 719 720 721
   or accept the connection in View-Only mode.  It corresponds to the 
   \"-R accept:popup\" and \"-R accept:\" remote-control commands.
   
 - \"All Clients ViewOnly\" toggles whether the entire VNC desktop is
   view only.  All clients will only be able to watch when this is set
   (regardless of how they logged in).  It corresponds to the
   \"-R viewonly\" and \"-R noviewonly\" remote-control commands.
   
 - \"Shared\" toggles whether multiple simultaneous connections are
   allowed or not.  It corresponds to the \"-R shared\" and \"-R noshared\"
   remote-control commands.

 - \"Password\" lets you set the session password viewers may use to gain full
722 723
   access to the display.  This will only work if x11vnc was started with 
   the -gui icon or -gui tray mode.
724 725
   
 - \"ViewOnly Password\" lets you set the session password viewers may
726 727
   use to gain view only access to the display.  This will only work if
   x11vnc was started with the -gui icon or -gui tray mode.
728 729 730 731

NOTE: These \"session\" passwords only last for the current x11vnc
session (they are not remembered, see the -storepasswd, -passwdfile,
and -rfbauth x11vnc options for using stored passwords).
732 733 734 735 736 737 738

If you set \"Password\" to the empty string that makes the \"View-Only
Password\" empty as well and removes the need for any password to log in.

If you set \"ViewOnly Password\" to the empty string that just removes
the ViewOnly log in aspect: \"Password\" is still required to log in.

739 740 741 742
 - The \"Help ...\" button shows this help text.
   
 - The \"Advanced ...\" button replaces the Properties dialog with the full
   tkx11vnc GUI.  All dynamic settings can be modified in the full GUI.
743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775


--------------------------------------------------------------------
Don't Lock Yourself Out:

   If you are sitting at the physical X display you cannot get into too
   much trouble setting the Properties dialog values.

   However IF you are using a VNC Viewer to REMOTELY access the X display
   some items in the Properties dialog can lock you out of further access:

      \"Accept Connections\"  if you disable this remotely, and
      accidentally disconnect your VNC viewer then you will not be
      able to reconnect.
   
      \"Ask for Confirmation\"  if you enable this only someone
      sitting at the X display can confirm any new VNC connections.
      Furthermore, any current VNC viewers will be blocked while
      waiting for the confirmation (times out in 120 sec by default). 
   
      \"All Clients ViewOnly\"  if you enable this remotely, well
      you can no longer provide input to disable it.
   
   If you do lock yourself out you could log in remotely and start up
   a second x11vnc and connect to that one to try to fix things in the
   first one.

   Note that if there are two or more x11vnc's on the same display the
   use of the GUI may be ill-behaved.  Terminate the second x11vnc as
   soon as you have fixed the setting in the first one.  Use of a remote
   control command, e.g. \"x11vnc -R noviewonly\" or \"x11vnc -R unlock\"
   is a good way to avoid this problem.
"
776

777 778
	set helptext(all) $helpall

779
	set helptext(Misc-Tuning:) "
780
x11vnc has what seems like hundreds of tuning parameters!  In this
781
sub-menu we place some lesser used ones.  Most likely you'll want to
782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809
leave them at their default values, but you can try them out quickly
with the gui to see if they improve things.
"

	set helptext(Passwords:) "
The items in this sub-menu pertain to setting passwords.  Note that x11vnc
has two types of password files: RealVNC-style ones (you can create them
with x11vnc -storepasswd or other VNC utility program) you use these
via -rfbauth; and plain-text file passwords you use via -passwdfile.

Normally passwords cannot be changed by remote-control (e.g. the gui),
but for the case of the \"Icon\" and \"Tray\" modes this constraint has
been relaxed.

In neither the RealVNC-style nor the plain-text file cases should the
password files be readable by users you do not want to access the VNC
server.  Contrary to popular belief, the  RealVNC-style passwords are
not encrypted, merely obscured.

x11vnc has the even less secure -passwd and -viewpasswd supplied on
the command line.  Be careful with these since they could be read by
users with something like the ps(1) command.  On some operating systems
x11vnc tries to quickly overwrite them on the command line but it doesn't
work everywhere.

Regarding ViewOnly passwords (where a VNC client using that password
can only watch the screen, not interact with it), this is not available
with -rfbauth, but only with -passwdfile, -passwd, and -viewpasswd.
810 811 812 813 814 815 816 817 818 819 820
"

	set helptext(SSL:) "
In this sub-menu we provide the options related to SSL encrpytion
and authentication.

There is a built-in mode (-ssl) using the OpenSSL library, and a 2nd
using the external stunnel program (-stunnel, that needs to be installed
on the system).  Either may require or benefit from having PEM certificate
files specified.

821 822 823 824
"

	set helptext(Misc-Perms:) "
In this sub-menu we provide some lesser used permission options.
825

826 827 828 829 830
Regarding -alwaysshared, -nevershared, and -dontdisconnect, you probably
should never use them and just use x11vnc's -shared and -forever options
instead (these give basically the same functionality and if you mixed
them too much unexpected things may happen).
"
831
#'
832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853

	set helptext(AlphaBlending:) "
In this sub-menu we provide some tweak parameters for cursors (little
icon at the mouse pointer) that have transparency (i.e. an Alpha channel
in addition to Red, Green, and Blue RGB channels).  For these cursors,
some of the graphics underneath the cursor is allowed to be blended in:
e.g. a drop-shadow (a terrible effect IMNSHO).

AlphaBlending for x11vnc is only available when the XFIXES X extension is
present (since otherwise it cannot see the cursors at all and so applies
heuristics to show some fake cursors).  AlphaBlending is only a problem
with x11vnc when the cursors are not opaque.

Opaque cursors (e.g. bitmap or simply colored cursor) are rendered
correctly by x11vnc.  Only when there is transparency does x11vnc have
to make some approximation to transform the cursor to be opaque (the
VNC protocol does not provide for an alpha channel in cursors, only RGB).

The items in this sub-menu let you tweak x11vnc's approximation scheme
for cursors with transparency.  Hopefully you won't have to use them.
Certain cursor \"themes\" may require adjustment however.
"
854
#'
855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879
	set helptext(OverlayVisuals:) "
In this sub-menu are some options that involve fixing color problems
for \"Overlay\" or \"Multi-Depth\" visuals.  This problem is rare
since overlay and multi-depth visual video hardware is rare. 
Some Sun, SGI, and HP machines are known to have them.

The short answer is if you have a multi-depth visual display (e.g.  8 and
24 bits), and you see messed up colors in x11vnc try the \"-overlay\"
option on Solaris or IRIX.

A brief Background on pixels, color, and visuals:

   Pixels (picture elements) are kept in video memory as a certain number
   of bits-per-pixel (bpp).  Most common are 8bpp, 16bpp, and 32bpp.
   Less common are 24bpp, 4bpp, and 1bpp (monochrome).

   How pixel values (i.e. values of the bits) are rendered into colors on
   the screen can be done via different \"Recipes\".  These different
   recipes are referred to as \"visuals\".  E.g. for 8bpp there is
   a PseudoColor visual that maintains a mapping (that can be changed
   dynamically) of the pixel values (256 possible ones) into RGB values.
   Other 8bpp visuals, e.g. StaticGrey and TrueColor have fixed, regular
   mappings and so provide less variation in kinds of colors.

   A visual's \"depth\" is how many of the pixels are used in the
880
   actual recipe.  This may sound wasteful (i.e. not using some of the
881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899
   bits), but for 32bpp (4 billion colors) that is too much and nearly
   always only 24 for them are used.  The most common Visual seems to
   be depth 24 TrueColor at 32bpp.  This provides 16 million colors
   which is more than the number of pixels on most screens (1280x1024 =
   1.3 million pixels).  Another sometimes used visual that ignores some
   bits is depth 15 TrueColor at 16bpp.

OK, now, finally, to the Overlay Visuals.  Some hardware (or software
emulations) allow different depth visuals to be used on the display
at the same time.  The pixels of windows using different depth visuals
may overlap.

The most common seems to be both 8 and 24 depth visuals on a 32bpp setup.
24 of the pixels can be used for one visual and the remaining 8 for the
other.  This is sometimes referred to as \"8+24\" mode.  Furthermore,
a speedup is achieved because writing graphics data to, say, the 8bit
visual does not destroy the image data in the 24bit visual.  Evidently
popup menus can be done very quickly this way: they use the 8bit visual
and when the popup goes away the graphics data in the 24bit visual is
900
immediately reexposed without having the application redraw it.
901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935

Also, some legacy applications can only use 8bpp visuals.  But in these
days of high color graphics and web browsers one would like the rest
of the desktop to use depth 24 visuals.  They often work on the multi
depth visuals.

How does this effect x11vnc?  x11vnc nearly always polls the root window
(container of all other windows).  The root window will be one depth,
e.g. 8 or 24.  Any windows using the *other* depth will appear to have
messed up colors (or just be black or some other solid color) when viewed
via x11vnc.

How to fix?  Solaris and IRIX provide an API to extract the full snapshot
of the display with all the colors correct.  It comes to x11vnc as depth
24 TrueColor.  To enable this use the \"-overlay\" option.  Performance
may be slower, but if the colors are correct that is a big improvement.
"

	set helptext(8-Bit-Color:) "
Some older displays (e.g. with limited Video RAM) use 8 bits-per-pixel
color.  This allows for only 256 different colors on the screen at the
same time.  This sometimes leads to problems with viewing these 8bpp
displays via x11vnc.  This sub-menu has some options that correspond to
workarounds for this case.  If you can configure the machine to use 16bpp
it may be worth it to avoid the color problems (e.g. color flashing
as the 8bit colormap is switched).
"
	set helptext(SubWindow:) "
This sub-menu has a couple options regarding having x11vnc poll a 
single window, not the entire display.  This way just the window
is shared.

Note if the application pops up multiple windows they are not tracked
and shared.  So this is not application sharing.  The application has to
be very simple (e.g. a simple terminal or the image window on a webcam)
936
for this mode to be usable.
937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970
"
	set helptext(ResizeRotate:) "
This sub-menu has some options regarding screens that support the X
Resize, Reflection, and Rotation Extension (RANDR), and one expects screen
resizing, reflection, or rotation to take place during the x11vnc session.
This is pretty rare, but x11vnc seems to handle it reasonably well using
this X extension.

This mode is on by default in -id mode to try to track the changing
size of the SubWindow.  It is not on by default for full-screen mode
because of the extra overhead, etc.
"

	set helptext(WireFrame:) "
This sub-menu has some options for the x11vnc wireframing speedup scheme.

For x11vnc, Wireframing means to watch for toplevel windows being Opaquely
Moved or Resized.  When x11vnc detects this, it stops polling the screen
and simply shows a \"wireframe\" outline of the window as it is being
moved or resized.  This avoids \"screen polling thrashing\" when the
screen is changing so rapidly during this period.  For various reasons
this is usually much faster then letting the window manager do its
own wireframing (you are encouraged to do Opaque moves and resizes
when using x11vnc!)

Also, once a moved window is released in its new position, x11vnc uses
the VNC CopyRect encoding to very efficiently update the VNC viewers
(each just copies the image data locally).

This sort of scheme was used much in the 1990's on local displays because
video hardware was slow at the time.  x11vnc tries to use this same trick
as a speedup for its activities (the network is much slower than video
hardware writes, and the video hardware reads that x11vnc uses to poll
the screen are still slow today).
971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012
"
#'"

	set helptext(Safe:) "
In this sub-menu are some options for making x11vnc operations
more, or less, safe.  E.g. disable the running of external commands, etc.

You can also turn off the Remote control channel (NOTE that doing that
will disable the GUI from being able to communicate with x11vnc).
"

	set helptext(X-ext:) "
In this sub-menu are a few rarely used options regarding some X extensions
used by x11vnc.
"
	set helptext(Clipping:) "
In this sub-menu are some options regarding clipping or blacking out
portions of the Screen.  E.g. under XINERAMA when the multiple monitors
are not the same size.

"
	set helptext(Misc-Screen:) "
In this sub-menu are some little used options modifying aspects of
the screen source.
"

	set helptext(Settings:) "
In this sub-menu are some options for saving and loading option settings.
The default file to store settings in is ~/.x11vncrc, but you can save
different \"profiles\" in other files for later use.

"
	set helptext(Java-applet:) "
In this sub-menu are some options for running the built-in HTTP server
that delivers the TightVNC Java VNC Viewer applet (VncViewer.jar) to
clients.  The viewer runs in their Web browser.

The default port listened on is 5800, so the URL is typically:

	http://hostname:5800/

but this can be altered by -httpport, etc.
1013 1014 1015 1016 1017 1018
"

	set helptext(ScrollCopyRect:) "
This sub-menu has some options for the x11vnc Scroll detection and
CopyRect speedup scheme.

1019
For this mode, x11vnc \"spies\" on communication between the X server and
1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048
applications using the RECORD extension.  It looks for various patterns
to detect a scrolled window.  This only works for some applications,
fortunately some important ones.

Once the scroll is detected it uses the VNC CopyRect encoding for a
big speedup.  Screen polling is also sped up for this scheme.

There are many tweakable parameters for this mode and they are described
in the sub-menu items.
"

	set helptext(XDAMAGE:) "
The DAMAGE X extension allows the X server to send signals to x11vnc
telling it which regions of the screen have been changed.  This improves
x11vnc's performance markedly.  The DAMAGE extension must be available
on the display for this to work.

Unfortunately DAMAGE cannot be trusted completely for the changed regions,
because often the reported changed region is much larger than the actual
changed regions.  Nevertheless, x11vnc uses the DAMAGE information very
effectively as hints to improve its performance.

The items in the sub-menu allow tweaking x11vnc's DAMAGE algorithm.
"

	set helptext(SharedMemory:) "
This sub-menu provides some options regarding SYSV shared memory usage
(shm) by x11vnc.  Usually you want shm turned on because the x11vnc
process is nearly always running on the same machine the X server process
1049 1050
is running on.  SharedMemory gives a performance speedup.  However, if you
need to modify this scenario for special usage these options allow you to.
1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063
"

	set helptext(Misc-Debug:) "
This sub-menu contains a lot of debugging parameters usually used
for debugging x11vnc itself.  This is unlike the -debug_pointer and
-debug_keyboard options that are useful in learning information, quirks,
etc. about your local display and environment.
"

	set helptext(Selection:) "
This sub-menu contains some options centering around the Selection
(also referred to as the Clipboard, Cutbuffers, etc).  x11vnc will try
to exchange the selections between the VNC viewers and the X server.
1064
You can adjust that behavior with these options.
1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089
"

	set helptext(WindowView) "
Set the Window View Mode for the gui.  There are three modes:

  - full:  Presents the full gui (Actions, Clients, etc, buttons,
           and the Text area and Set/Entry box).

  - icon:  Presents a small icon instead of the full gui.  Moving
           the mouse over it shows the VNC display name and any
           connected clients.  Clicking on the icon pops up a menu
           of actions to perform.  Among them is \"Properties\" that
           allows setting more parameters.  Clicking on \"Advanced\"
           in \"Properties\" brings up the full gui.

  - tray:  Attempt to embed the small icon in the system tray.  If
           this fails it will resort to icon mode where the small icon
           is a standalone window.

Note that in \"full\" mode if you delete the full gui window the gui
terminates (but the x11vnc server keeps running).  However under \"icon\"
or \"tray\" mode if you bring up the full gui window via \"Properties ->
Advanced\" and then delete it the gui does NOT terminate.

Also note that by default in \"icon\" mode if you delete the icon
1090
window both the gui *and* the x11vnc server terminate.
1091 1092
"

1093 1094 1095 1096 1097
	set helptext(gui) "
tkx11vnc is a simple frontend to x11vnc.  Nothing fancy, it merely
provides an interface to each of the many x11vnc command line options and
remote control commands.  See \"Help -> all\" for much info about x11vnc.

1098 1099 1100 1101 1102 1103
For a simplier gui, run x11vnc in \"tray\" or \"icon\" mode such as
\"-gui tray\", \"-gui icon\", or \"-gui tray=setpass\".  In that
mode the full gui is only available under \"Advanced ...\".

Also, \"-gui ez\" will show fewer menu items (toggle via Misc -> simple_gui)

1104
All menu items have a (?) button one can click on to get more information
1105
about the option or command.
1106 1107 1108 1109

There are two states tkx11vnc can be in:

	1) Available to control a running x11vnc process.
1110

1111 1112
	2) Getting ready to start a x11vnc process.

1113 1114
Most people will just use state 1).

1115 1116 1117 1118
In state 1) the Menu items available in the menus are those that
correspond to the x11vnc \"remote control\" commands.  See the -remote
entry under \"Help -> all\" for a complete list.  Also available is
the \"Actions -> stop\" item to shut down the running x11vnc server,
1119
thereby changing to state 2).  There are other actions available too.
1120

1121
In state 2) the Menu items available in the menus (\"Actions\", \"Clients\",
1122 1123 1124 1125 1126 1127 1128 1129 1130
etc.) are those that correspond to command line options used in starting
an x11vnc process, and the \"Actions -> start\" item executes
x11vnc thereby changing to state 1).  To see what x11vnc startup command
you have built so far, look at the (?) help for  \"Actions -> start\"
and it will show you what the command looks like.

There is much overlap between the menu items available in state 1)
and state 2), but it is worth keeping in mind it is not 100%.
For example, you cannot set passwords or password files in state 1).
1131
(update: simple password setting is now allowed in \"tray\" or \"icon\" mode).
1132

1133

1134 1135 1136
Also note that there may be *two* separate X displays involved, not just
one:  1) the X display x11vnc will be polling (and making available to
VNC viewers), and 2) the X display this GUI is intended to display on.
1137

1138
For example, one might use ssh to access the remote machine where the
1139 1140 1141 1142
GUI would display on :11 and x11vnc would poll display :0.  By default
the gui will display on the value in the DISPLAY env. variable followed
by the value from the -display option.  To override this, use something
like: \"-gui otherhost:0\", etc.
1143 1144 1145 1146 1147


GUI components: 
--- ----------

1148
1) At the top of the gui is a info text label where information will
1149 1150
   be posted, e.g. when traversing menu items text indicating how to get
   help on the item and its current value will be displayed.
1151

1152 1153 1154 1155 1156
2) Below the info label is the area where the menu buttons, \"Actions\",
   \"Clients\", etc., are presented.  If a menu item has a checkbox,
   it corresponds to a boolean on/off variable.  Otherwise it is
   either a string variable, or an action not associated with a
   variable (for the most part).
1157

1158 1159 1160
3) Below the menu button area is a label indicating the current x11vnc
   X display being polled and the corresponding VNC display name.  Both
   will be \"(*none*)\" when there is no connection established.
1161

1162 1163 1164
4) Below the x11 and vnc displays label is a text area there scrolling
   information about actions being taken and commands being run is displayed.
   To scroll click in the area and use PageUp/PageDown or the arrow keys.
1165

1166
5) At the bottom is an entry area.  When one selects a menu item that
1167 1168 1169 1170
   requires supplying a string value, the label will be set to the
   parameter name and one types in the new value.  Then one presses the
   \"OK\" button or presses \"Enter\" to set the value.  Or you can press
   \"Cancel\" or \"Escape\" to avoid changing the variable.
1171

1172 1173 1174 1175
   Many variables are boolean toggles (for example, \"Permissions ->
   viewonly\") or Radio button selections.  Selecting these menu items
   will NOT activate the entry area but rather toggle the variable
   immediately.
1176

1177 1178

CASCADES BUG: There is a bug not yet worked around for the cascade menus
1179 1180
where the (?) help button gets in the way.  To get the mouse over to
the cascade menu click and release mouse to activate the cascade, then
1181 1182 1183
you can click on its items.  Dragging with a mouse button held down will
not work (sorry!).

1184 1185 1186 1187 1188 1189 1190 1191

Key Bindings:

	In the Text Area: Control-/ selects all of the text.
	Anywhere: Control-d invokes \"Actions -> detach\"
	Anywhere: Control-a invokes \"Actions -> attach\"
	Anywhere: Control-p invokes \"Actions -> ping\"
	Anywhere: Control-u and Control-r invoke \"Actions -> update-all\"
1192
"
1193

1194
set under_wally "
1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208
Misc:

Since x11vnc has so many settings and to avoid further confusion,
the libvncserver options:

	-alwaysshared
	-nevershared
	-dontdisconnect

are not available for changing in a running x11vnc (even though it
is feasible).  These options overlap with the x11vnc options -shared
and -forever which are hopefully enough for most usage.  They may be
specified for x11vnc startup if desired.

1209
"
1210 1211 1212 1213 1214 1215

global beginner_mode
if {$beginner_mode} {
	set helptext(gui) "
tkx11vnc is a simple frontend to x11vnc.  It is currently running in
\"ez\" or \"simple\" mode.  For many more options run it in normal
1216
mode by toggling \"Misc -> simple_gui\".
1217 1218 1219 1220 1221 1222 1223 1224

All menu items have a (?) button one can click on to get more information
about the option or command.

GUI components: 
--- ----------

1) At the top of the gui is a info text label where information will
1225 1226
   be posted, e.g. when traversing menu items text indicating how to get
   help on the item and its current value will be displayed.
1227

1228 1229 1230 1231 1232
2) Below the info label is the area where the menu buttons, \"Actions\",
   \"Clients\", etc., are presented.  If a menu item has a checkbox,
   it corresponds to a boolean on/off variable.  Otherwise it is
   either a string variable, or an action not associated with a
   variable (for the most part).
1233

1234 1235 1236
3) Below the menu button area is a label indicating the current x11vnc
   X display being polled and the corresponding VNC display name.  Both
   will be \"(*none*)\" when there is no connection established.
1237

1238 1239 1240
4) Below the x11 and vnc displays label is a text area there scrolling
   information about actions being taken and commands being run is displayed.
   To scroll click in the area and use PageUp/PageDown or the arrow keys.
1241 1242

5) At the bottom is an entry area.  When one selects a menu item that
1243 1244 1245 1246
   requires supplying a string value, the label will be set to the
   parameter name and one types in the new value.  Then one presses the
   \"OK\" button or presses \"Enter\" to set the value.  Or you can press
   \"Cancel\" or \"Escape\" to avoid changing the variable.
1247

1248 1249 1250 1251
   Many variables are boolean toggles (for example, \"Permissions ->
   viewonly\") or Radio button selections.  Selecting these menu items
   will NOT activate the entry area but rather toggle the variable
   immediately.
1252

1253
CASCADES BUG: There is a bug not yet worked around for the cascade menus
1254 1255 1256 1257 1258 1259 1260 1261
where the (?) help button gets in the way.  To get the mouse over to
the cascade menu click and release mouse to activate the cascade, then
you can click on its items.  Dragging with a mouse button held down will
not work (sorry!).

"
}

1262 1263 1264 1265 1266 1267
}

proc center_win {w} {
	wm withdraw $w
	set x [expr [winfo screenwidth  $w]/2 - [winfo reqwidth  $w]/2];
	set y [expr [winfo screenheight $w]/2 - [winfo reqheight $w]/2];
1268
	wm geometry $w +$x+$y
1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291
	wm deiconify $w
	update
}

proc textwidth {text} {
	set min 0;
	foreach line [split $text "\n"] {
		set n [string length $line]
		if {$n > $min} {
			set min $n
		}
	}
	return $min
}

proc textheight {text} {
	set count 0;
	foreach line [split $text "\n"] {
		incr count
	}
	return $count
}

1292
proc set_name {name} {
1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306
	global full_win icon_mode
	global saved_set_name

	if {![info exists saved_set_name]} {
		set saved_set_name "tkx11vnc"
	}
	if {$name == "RESTORE"} {
		set name $saved_set_name
	} else {
		set saved_set_name $name
	}
	if {![info exists full_win]} {
		return
	}
1307
	set w "."
1308
	if {$icon_mode} {
1309 1310
		wm title    $w "$name"
		wm iconname $w "$name"
1311 1312 1313 1314
		set w $full_win
	}
	wm title    $w "$name"
	wm iconname $w "$name"
1315 1316
}

1317 1318 1319 1320 1321
proc make_toplevel {w {title ""}} {
	catch {destroy $w}
	toplevel  $w;
	bind $w <Escape> "destroy $w"
	if {$title != ""} {
1322 1323
		wm title    $w $title
		wm iconname $w $title
1324 1325 1326
	}
}

1327
proc textwin {name title text {entry ""}} {
1328
	global max_text_height max_text_width
1329
	global bfont ffont
1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346

	set width  [textwidth $text]
	incr width
	if {$width > $max_text_width} {
		set width $max_text_width
	}
	set height [textheight $text]
	if {$height > $max_text_height} {
		set height $max_text_height
	}

	set w ".text_$name"
	make_toplevel $w $title

	frame     $w.f -bd 0;
	pack      $w.f -fill both -expand 1
	text      $w.f.t -width $width -height $height -setgrid 1 -bd 2 \
1347 1348
			-yscrollcommand "$w.f.y set" -relief ridge \
			-font $ffont;
1349
	scrollbar $w.f.y -orient v -relief sunken -command "$w.f.t yview";
1350 1351
	button    $w.f.b -text "Dismiss" -command "destroy $w" -font $bfont \
			-pady 2
1352 1353 1354 1355 1356

	$w.f.t insert 1.0 $text;

	bind $w <Enter> "focus $w.f.t"

1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374
	if {$entry != ""} {
		# varname+Label Name
		set list [split $entry "+"]
		set varname [lindex $list 0]
		set labname [lindex $list 1]
		frame $w.f.ef -bd 1 -relief groove
		label $w.f.ef.l -text "$labname" -anchor w -font $bfont
		entry $w.f.ef.e -relief sunken -font $ffont \
			-textvariable $varname
		button $w.f.ef.b -text "OK" -font $bfont \
			-command "set ${varname}_ok 1; destroy $w" 
		bind $w.f.ef.e <KeyPress-Return> "set ${varname}_ok 1; destroy $w"
		
		pack $w.f.ef.l -side left
		pack $w.f.ef.e -side left -fill x -expand 1
		pack $w.f.ef.b -side right
	}

1375 1376
	wm withdraw $w
	pack $w.f.b -side bottom -fill x 
1377 1378 1379 1380 1381 1382 1383
	if {$entry != ""} {
		pack $w.f.ef -side bottom -fill x 
		bind $w <Enter> "focus $w.f.ef.e"
		$w.f.ef.e icursor end
	} else {
		bind $w <Enter> "focus $w.f.t"
	}
1384 1385 1386 1387 1388
	pack $w.f.y -side right -fill y;
	pack $w.f.t -side top -fill both -expand 1;
	update

	center_win $w
1389 1390

	return $w
1391 1392 1393 1394
}

proc active_when_connected {item} {
	global helpremote helptext
1395 1396 1397 1398 1399 1400 1401 1402 1403 1404
	global icon_mode

	if {$icon_mode} {
		if {$item == "passwd"} {
			return 1
		}
		if {$item == "viewpasswd"} {
			return 1
		}
	}
1405 1406 1407

	if {[opt_match G $item]} {
		return 1
1408 1409 1410 1411
	} elseif {[opt_match R $item]} {
		return 1
	} elseif {[opt_match S $item]} {
		return 0
1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425
	} elseif {[is_action $item]} {
		if {[opt_match R $item]} {
			return 1
		} else {
			return 0
		}
	} elseif {[info exists helpremote($item)]} {
		return 1
	} else {
		return 0
	}
}

proc active_when_starting {item} {
1426 1427 1428 1429 1430 1431 1432 1433 1434
	global helpremote helptext beginner_mode

	if {$beginner_mode} {
		if {[opt_match G $item]} {
			return 1
		}
		if {$item == "display"} {
			return 1
		}
1435 1436 1437
		if {$item == "attach"} {
			return 1
		}
1438 1439 1440 1441 1442
		if {$item == "debug_gui"} {
			return 1
		}
		return 0
	}
1443 1444 1445

	if {[opt_match G $item]} {
		return 1
1446 1447 1448 1449
	} elseif {[opt_match S $item]} {
		return 1
	} elseif {[opt_match R $item]} {
		return 0
1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463
	} elseif {[is_action $item]} {
		if {[opt_match S $item]} {
			return 1
		} else {
			return 0
		}
	} elseif {[info exists helptext($item)]} {
		return 1
	} else {
		return 0
	}
}

proc help_win {item} {
1464 1465
	global helptext helpremote menu_var
	global query_ans query_aro
1466
	global beginner_mode
1467 1468 1469 1470

	set ok 0
	set text "Help on $item:\n\n"

1471 1472 1473
	if {$item == "NewClient"} {
		;
	} elseif {[is_gui_internal $item]} {
1474 1475
		if {$item != "gui" && $item != "all" && $item != "Misc-Tuning:" \
		    && $item != "Properties" && $item != "Tray"} {
1476 1477
			append text "    + Is a gui internal Action (cannot be set).\n";
		}
1478 1479 1480 1481 1482 1483 1484
	} elseif {[is_action $item]} {
		append text "    + Is a remote control Action (cannot be set).\n";
	} elseif {[active_when_connected $item]} {
		append text "    + Can be changed in a running x11vnc.\n";
	} else {
		append text "    - Cannot be changed in a running x11vnc.\n";
	}
1485 1486 1487
	if {$item == "NewClient"} {
		;
	} elseif {[is_gui_internal $item]} {
1488 1489 1490 1491
		;
	} elseif {[active_when_starting $item]} {
		append text "    + Can be set at x11vnc startup.\n";
	} else {
1492 1493 1494
		if {! $beginner_mode} {
			append text "    - Cannot be set at x11vnc startup.\n";
		}
1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518
	}
	append text "\n"

	if {[info exists helptext($item)]} {
		append text "\n"
		if {[is_gui_internal $item]} {
			append text "==== x11vnc help: ====\n";
		} else {
			append text "==== x11vnc startup option help: ====\n";
		}
		append text "\n"
		append text $helptext($item)
		append text "\n"
		set ok 1
	}

	if {[info exists helpremote($item)]} {
		append text "\n"
		append text "==== x11vnc remote control help: ====\n";
		append text "\n"
		append text $helpremote($item)
		set ok 1
	}

1519 1520 1521 1522 1523
	if {![is_action $item] && [info exists menu_var($item)]} {
		global unset_str
		append text "\n\n"
		append text "==== current $item value: ====\n";
		append text "\n"
1524 1525 1526 1527

		if {$item == "passwd" || $item == "viewpasswd"} {
			;
		} elseif {$menu_var($item) == ""} {
1528 1529 1530 1531
			append text "$unset_str\n"
		} else {
			append text "$menu_var($item)\n"
		}
1532 1533 1534 1535
		if {$item == "http" || $item == "httpdir" || $item == "httpport"} {
			global vnc_url;
			append text "\nURL: $vnc_url\n"
		}
1536 1537
	}

1538 1539 1540
	if {$item == "start"} {
		set str [get_start_x11vnc_txt]
		append_text "$str\n"
1541 1542 1543
#		append text "\nPossible \$HOME/.x11vncrc settings for this command:\n\n"
#		set rctxt [get_start_x11vnc_cmd 1]
#		append text "$rctxt\n"
1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581
	}

	regsub -all { } $item " " name

	if {$ok} {
		textwin $name "x11vnc help: $item" "$text";
	}
	return $ok
}

proc parse_help {} {
	global env x11vnc_prog;
	global helpall helptext;

	set helppipe [open "| $x11vnc_prog -help" "r"];
	if {$helppipe == ""} {
		puts stderr "failed to run $x11vnc_prog -help";
		exit 1;
	}

	set sawopts 0;
	set curropt "";
	while {[gets $helppipe line] > -1} {
		append helpall "$line\n"	

		# XXX
		if {[regexp {^Options:} $line]} {
			set sawopts 1;
			continue;
		}
		# XXX
		if {[regexp {^These options} $line]} {
			continue;
		}

		if {! $sawopts} {
			continue;
		}
1582
		if {[regexp {^-([0-9A-z_][0-9A-z_]*)} $line match name]} {
1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660
			set allnames($name) 1;
			if {"$curropt" != "no$name" && "no$curropt" != "$name"} {
				set curropt $name;
				set helptext($curropt) "$line\n";
			} else {
				append helptext($curropt) "$line\n";
			}
		} elseif {$curropt != ""} {
			append helptext($curropt) "$line\n";
		}
	}
	foreach name [array names allnames] {
		if {[regexp {^no} $name]} {
			regsub {^no} $name "" pair
		} else {
			set pair "no$name"
		}
		if {[info exists helptext($name)]} {
			if ![info exists helptext($pair)] {
				set helptext($pair) $helptext($name);
			}
		} elseif {[info exists helptext($pair)]} {
			if ![info exists helptext($name)] {
				set helptext($name) $helptext($pair);
			}
		}
	}

	set_internal_help
}

proc tweak_both {new old} {
	tweak_help $new $old
	tweak_remote_help $new $old
}

proc tweak_remote_help {new old} {
	global helpremote
	if ![info exists helpremote($new)] {
		if {[info exists helpremote($old)]} {
			set helpremote($new) $helpremote($old)
		}
	}
}

proc tweak_help {new old} {
	global helptext
	if ![info exists helptext($new)] {
		if {[info exists helptext($old)]} {
			set helptext($new) $helptext($old)
		}
	}
}

proc parse_remote_help {} {
	global helpremote helptext help_indent remote_name;

	set sawopts 0;
	set curropt "";
	set possopts "";
	set offset [expr $help_indent - 1];
	foreach line [split $helptext(remote) "\n"] {
		
		set line [string range $line $offset end];

		# XXX
		if {[regexp {^The following -remote/-R commands} $line]} {
			set sawopts 1;
			continue;
		}
		# XXX
		if {[regexp {^The vncconnect.*command} $line]} {
			set sawopts 0;
		}

		if {! $sawopts} {
			continue;
		}
1661
		if {[regexp {^([0-9A-z_][0-9A-z_:]*)} $line match name]} {
1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763
			regsub {:.*$} $name "" popt
			lappend possopts $popt
			if {"$curropt" != "no$name" && "no$curropt" != "$name"} {
				set curropt $name;
				regsub {:.*$} $curropt "" curropt
				set remote_name($curropt) $name
				set helpremote($curropt) "$line\n";
			} else {
				append helpremote($curropt) "$line\n";
			}
		} elseif {$curropt != ""} {
			append helpremote($curropt) "$line\n";
		}
	}

	foreach popt $possopts {
		if {[info exists helpremote($popt)]} {
			continue
		}
		if {[regexp {^no} $popt]} {
			regsub {^no} $popt "" try
		} else {
			set try "no$popt"
		}
		if {[info exists helpremote($try)]} {
			set helpremote($popt) $helpremote($try)
		}
	}
}

proc parse_query_help {} {
	global query_ans query_aro query_ans_list query_aro_list helptext;

	set sawans 0;
	set sawaro 0;
	set ans_str ""
	set aro_str ""

	foreach line [split $helptext(query) "\n"] {

		if {! $sawans && [regexp {^ *ans=} $line]} {
			set sawans 1
		}
		if {! $sawans} {
			continue
		}

		if {[regexp {^ *aro=} $line]} {
			set sawaro 1
		}
		if {$sawaro && [regexp {^[ 	]*$} $line]} {
			set sawans 0
			break
		}

		regsub {ans=} $line "" line
		regsub {aro=} $line "" line
		set line [string trim $line]

		if {$sawaro} {
			set aro_str "$aro_str $line"
		} else {
			set ans_str "$ans_str $line"
		}
	}

	regsub -all {  *} $ans_str " " ans_str
	regsub -all {  *} $aro_str " " aro_str

	set ans_str [string trim $ans_str]
	set aro_str [string trim $aro_str]
	set query_ans_list [split $ans_str]
	set query_aro_list [split $aro_str]

	foreach item $query_ans_list {
		if {[regexp {^[ 	]*$} $item]} {
			continue
		}
		set query_ans($item) 1
	}
	foreach item $query_aro_list {
		if {[regexp {^[ 	]*$} $item]} {
			continue
		}
		set query_aro($item) 1
	}
}

proc in_debug_mode {} {
	global menu_var
	if {![info exists menu_var(debug_gui)]} {
		return 0
	}
	return $menu_var(debug_gui)
}

# Menubar utilities:
proc menus_state {state} {
	global menu_b

	foreach case [array names menu_b] {
		set menu_button $menu_b($case)
1764 1765 1766
		if {![winfo exists $menu_button]} {
			continue
		}
1767 1768 1769 1770 1771
		$menu_button configure -state $state
	}
}

proc menus_enable {} {
1772 1773
	global menus_disabled

1774
	menus_state "normal"
1775
	set menus_disabled 0
1776 1777 1778
}

proc menus_disable {} {
1779 1780 1781
	global menus_disabled

	set menus_disabled 1
1782 1783 1784 1785 1786 1787
	menus_state "disabled"
}

# Entry box utilities:
proc entry_state {x state} {
	global entry_box entry_label entry_ok entry_help entry_skip entry_browse
1788
	global old_labels
1789
	if {$x == "all"} {
1790 1791 1792
		if {!$old_labels} {
			$entry_label configure -state $state
		}
1793 1794 1795 1796 1797 1798
		$entry_box    configure -state $state
		$entry_ok     configure -state $state
		$entry_skip   configure -state $state
		$entry_help   configure -state $state
		$entry_browse configure -state $state
	} elseif {$x == "label"} {
1799 1800 1801
		if {!$old_labels} {
			$entry_label configure -state $state
		}
1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856
	} elseif {$x == "box"} {
		$entry_box    configure -state $state
	} elseif {$x == "ok"} {
		$entry_ok     configure -state $state
	} elseif {$x == "skip"} {
		$entry_skip   configure -state $state
	} elseif {$x == "help"} {
		$entry_help   configure -state $state
	} elseif {$x == "browse"} {
		$entry_browse configure -state $state
	}
}

proc entry_enable {{x "all"}} {
	entry_state $x normal
}

proc entry_disable {{x "all"}} {
	entry_state $x disabled
}

proc entry_browse_button {{show 1}} {
	global entry_browse
	if {$show} {
		pack $entry_browse -side left
	}  else {
		pack forget $entry_browse
	}
}
proc entry_focus {} {
	global entry_box
	focus $entry_box
}
proc entry_select {} {
	global entry_box
	$entry_box selection range 0 end
}
proc entry_get {} {
	global entry_box
	return [$entry_box get]
}
proc entry_insert {str} {
	global entry_box
	entry_delete
	$entry_box insert end $str
	$entry_box icursor end
}
proc entry_delete {} {
	global entry_box
	$entry_box delete 0 end
}


# Utilities for remote control and updating vars.

1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921
proc push_new_value {item name new {query 1}} {
	global menu_var always_update remote_output query_output
	global query_result_list

	set debug [in_debug_mode]

	set getout 0
	set print_getout 0;

	set do_query_all 0

	set newnew ""
	if {$item == "disconnect"} {
		set newnew "N/A"
		set do_query_all 1
	} elseif {$always_update} {
		set do_query_all 1
	}

	if {$item == "remote-cmd"} {
		# kludge for arbitrary remote command:
		if {[regexp {^Q:} $new]} {
			# extra kludge for Q:var to mean -Q var
			regsub {^Q:} $new "" new
			set qonly 1
		} else {
			set qonly 0
		}
		# need to extract item from new:
		set qtmp $new
		regsub {:.*$} $qtmp "" qtmp
		if {$qonly} {
			set rargs [list "-Q" "$qtmp"]
			set print_getout 1
			set qargs ""
		} else {
			set rargs [list "-R" "$new"]
			set qargs ""
		}
		set getout 1

	} elseif {[value_is_string $item]} {
		# string var:
		set rargs [list "-R" "$name:$new"]
		set qargs [list "-Q" "$name"]
	} else {
		# boolean var:
		set rargs [list "-R" "$name"]
		set qargs [list "-Q" "$name"]
	}

	if {! $query && ! $always_update} {
		set getout 1
	} elseif {$item == "noremote"} {
		set getout 1
	} elseif {[is_action $item] && ![opt_match Q $item] && $rargs != ""} {
		set getout 1
	} elseif {[regexp {^(sid|id)$} $item] && ![regexp {^0x} $new]} {
		set getout 1
	}

	set remote_output ""
	set query_output ""

	if {!$debug} {
1922 1923 1924 1925 1926
		if [regexp {passwd} $rargs] {
			append_text "x11vnc ..."
		} else {
			append_text "x11vnc $rargs ..."
		}
1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940
	}

	if {$getout} {
		set remote_output [run_remote_cmd $rargs]
		if {$print_getout} {
			append_text "\t$remote_output"
		}
		append_text "\n"
		return
	}

	if {$do_query_all} {
		set all [all_query_vars]
		set qargs [list "-Q" $all]
1941 1942 1943

		global last_query_all_time
		set last_query_all_time [clock seconds]
1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981
	}

	set rqargs [concat $rargs $qargs]

	set query [run_remote_cmd $rqargs]
	set query_output $query

	set query_result_list ""

	if {$newnew != ""} {
		set new $newnew
	}

	if {![see_if_ok $query $item "$name:$new"]} {
		# failed
		if  {[regexp {^a..=} $query]} {
			# but some result came back
			# synchronize everything with a 2nd call.
			set query_output [query_all 1]
		} else {
			# server may be dead
			if {$item != "ping" && $item != "attach"} {
				try_connect
			}
		}
	} else {
		# succeeded
		# synchronize this variable (or variables)
		# for a speedup used the list parsed by see_if_ok.
		update_menu_vars "USE_LIST"

		if {$do_query_all} {
			global all_settings
			set all_settings $query
		}
	}
}

1982 1983
proc set_kmbc_str {} {
	global vl_bk vl_bm vl_bb vl_bc vr_bk vr_bm vr_bb vr_bc
1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994

	set str ""
	if {$vl_bk} {
		append str "K"
	}
	if {$vl_bm} {
		append str "M"
	}
	if {$vl_bb} {
		append str "B"
	}
1995 1996 1997 1998
	if {$vl_bc} {
		append str "C"
	}
	if {$vr_bk || $vr_bm || $vr_bb || $vr_bc} {
1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009
		append str ","
	}
	if {$vr_bk} {
		append str "K"
	}
	if {$vr_bm} {
		append str "M"
	}
	if {$vr_bb} {
		append str "B"
	}
2010 2011 2012
	if {$vr_bc} {
		append str "C"
	}
2013 2014 2015 2016 2017 2018
	entry_insert $str
}

proc insert_input_window {} {
	global text_area cleanup_window
	global ffont menu_var
2019
	global vl_bk vl_bm vl_bb vl_bc vr_bk vr_bm vr_bb vr_bc
2020 2021

	append_text "\nUse these checkboxes to set the input permissions, "
2022
	append_text "or type in the \"KMBC...\"\n"
2023
	append_text "-input string manually.  Then press \"OK\" or \"Cancel\".\n"
2024 2025
	append_text "(note: an empty setting means use the default behavior, "
	append_text "see viewonly)\n\n"
2026 2027 2028 2029 2030 2031 2032 2033 2034
	set w "$text_area.wk_f"
	catch {destroy $w}
	frame $w -bd 1 -relief ridge -cursor {top_left_arrow}
	set fl $w.fl
	frame $fl
	set fr $w.fr
	frame $fr
	label $fl.l -font $ffont -text "Normal clients:   "
	checkbutton $fl.bk -pady 1 -font $ffont -anchor w -variable vl_bk \
2035
		-pady 1 -command set_kmbc_str -text "Keystrokes" 
2036
	checkbutton $fl.bm -font $ffont -anchor w -variable vl_bm \
2037
		-pady 1 -command set_kmbc_str -text "Mouse-Motion" 
2038
	checkbutton $fl.bb -font $ffont -anchor w -variable vl_bb \
2039 2040 2041
		-pady 1 -command set_kmbc_str -text "Button-Clicks"
	checkbutton $fl.bc -font $ffont -anchor w -variable vl_bc \
		-pady 1 -command set_kmbc_str -text "Clipboard-Input"
2042
	label $fr.l -pady 1 -font $ffont -text "View-Only clients:"
2043
	checkbutton $fr.bk -font $ffont -anchor w -variable vr_bk \
2044
		-pady 1 -command set_kmbc_str -text "Keystrokes" 
2045
	checkbutton $fr.bm -font $ffont -anchor w -variable vr_bm \
2046
		-pady 1 -command set_kmbc_str -text "Mouse-Motion" 
2047
	checkbutton $fr.bb -font $ffont -anchor w -variable vr_bb \
2048 2049 2050
		-pady 1 -command set_kmbc_str -text "Button-Clicks"
	checkbutton $fr.bc -font $ffont -anchor w -variable vr_bc \
		-pady 1 -command set_kmbc_str -text "Clipboard-Input"
2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066

	if {[info exists menu_var(input)]} {
		set input_str $menu_var(input)
	} else {
		set input_str ""
	}

	if {[regexp {(.*),(.*)} $input_str match normal viewonly]} {
		;
	} else {
		set normal $input_str
		set viewonly ""
	}
	set vl_bk 0
	set vl_bm 0
	set vl_bb 0
2067
	set vl_bc 0
2068 2069 2070
	set vr_bk 0
	set vr_bm 0
	set vr_bb 0
2071
	set vr_bc 0
2072 2073 2074 2075 2076 2077 2078 2079 2080 2081

	if {[regexp -nocase {K} $normal]} {
		set vl_bk 1
	}
	if {[regexp -nocase {M} $normal]} {
		set vl_bm 1
	}
	if {[regexp -nocase {B} $normal]} {
		set vl_bb 1
	}
2082 2083 2084
	if {[regexp -nocase {C} $normal]} {
		set vl_bc 1
	}
2085 2086 2087 2088 2089 2090 2091 2092 2093
	if {[regexp -nocase {K} $viewonly]} {
		set vr_bk 1
	}
	if {[regexp -nocase {M} $viewonly]} {
		set vr_bm 1
	}
	if {[regexp -nocase {B} $viewonly]} {
		set vr_bb 1
	}
2094 2095 2096
	if {[regexp -nocase {C} $viewonly]} {
		set vr_bc 1
	}
2097

2098 2099
	pack $fl.l $fl.bk $fl.bm $fl.bb $fl.bc -side top -fill x
	pack $fr.l $fr.bk $fr.bm $fr.bb $fr.bc -side top -fill x
2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111
	pack $fl $fr -side left
	update
	update idletasks
	$text_area window create end -window $w
	$text_area see end
	$text_area insert end "\n"
#	$text_area insert end "\n\n\n\n\n\n\n\n\n"

	set cleanup_window $w
}

proc set_ca_str {w} {
2112
	global ca_bk ca_bm ca_bb ca_bc ca_di
2113 2114 2115 2116 2117 2118

	if {$ca_di} {
		entry_insert "disconnect"
		$w.bk configure -state disabled
		$w.bm configure -state disabled
		$w.bb configure -state disabled
2119
		$w.bc configure -state disabled
2120 2121 2122 2123 2124 2125
		return
	}

	$w.bk configure -state normal
	$w.bm configure -state normal
	$w.bb configure -state normal
2126
	$w.bc configure -state normal
2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137

	set str ""
	if {$ca_bk} {
		append str "K"
	}
	if {$ca_bm} {
		append str "M"
	}
	if {$ca_bb} {
		append str "B"
	}
2138 2139 2140
	if {$ca_bc} {
		append str "C"
	}
2141 2142 2143 2144 2145 2146
	entry_insert $str
}

proc insert_client_action_window {input} {
	global text_area cleanup_window
	global ffont menu_var
2147
	global ca_bk ca_bm ca_bb ca_bc ca_di
2148 2149

	append_text "\nUse these checkboxes to set the input permissions "
2150
	append_text "for this client\n-OR- whether to disconnect it instead.  "
2151
	append_text "Then press \"OK\" or \"Cancel\".\n\n"
2152 2153 2154 2155 2156 2157 2158 2159
	set w "$text_area.ca_f"
	catch {destroy $w}
	frame $w -bd 1 -relief ridge -cursor {top_left_arrow}
	checkbutton $w.di -pady 1 -font $ffont -anchor w -variable ca_di \
		-pady 1 -command "set_ca_str $w" -text "Disconnect    " 
	checkbutton $w.bk -font $ffont -anchor w -variable ca_bk \
		-pady 1 -command "set_ca_str $w" -text "Keystrokes" 
	checkbutton $w.bm -font $ffont -anchor w -variable ca_bm \
2160
		-pady 1 -command "set_ca_str $w" -text "Mouse-Motion" 
2161
	checkbutton $w.bb -font $ffont -anchor w -variable ca_bb \
2162 2163 2164
		-pady 1 -command "set_ca_str $w" -text "Button-Clicks"
	checkbutton $w.bc -font $ffont -anchor w -variable ca_bc \
		-pady 1 -command "set_ca_str $w" -text "Clipboard"
2165 2166 2167 2168 2169

	set ca_di 0
	set ca_bk 0
	set ca_bm 0
	set ca_bb 0
2170
	set ca_bc 0
2171 2172 2173 2174 2175 2176 2177 2178 2179 2180

	if {[regexp -nocase {K} $input]} {
		set ca_bk 1
	}
	if {[regexp -nocase {M} $input]} {
		set ca_bm 1
	}
	if {[regexp -nocase {B} $input]} {
		set ca_bb 1
	}
2181 2182 2183
	if {[regexp -nocase {C} $input]} {
		set ca_bc 1
	}
2184

2185
	pack $w.di $w.bk $w.bm $w.bb $w.bc -side left
2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201
	update
	update idletasks
	$text_area window create end -window $w
	$text_area see end
	$text_area insert end "\n"

	set cleanup_window $w
}

proc cleanup_text_window {} {
	global cleanup_window
	if {[info exists cleanup_window]} {
		catch {destroy $cleanup_window}
	}
}

2202
# For updating a string variable.   Also used for simple OK/Cancel dialogs
2203 2204 2205
# with entry = 0.
proc entry_dialog {item {entry 1}} {
	global menu_var entry_str entry_set entry_dialog_item
2206
	global unset_str connected_to_x11vnc entry_box
2207 2208 2209 2210 2211 2212 2213 2214

	set entry_str "Set $item"
	set entry_set 0
	set entry_dialog_item $item

	entry_enable
	menus_disable

2215 2216 2217 2218
	if {$item == "passwd" || $item == "viewpasswd"} {
		$entry_box configure -show "*"
	}

2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235
	if {$entry} {
		entry_insert ""
		if {[info exists menu_var($item)] &&
		    $menu_var($item) != $unset_str} {
			entry_insert $menu_var($item)
			entry_select
		}

		if {[is_browse $item]} {
			entry_browse_button
		}
		set_info "Set parameter in entry box, "
		entry_focus
	} else {
		entry_disable box
	}

2236 2237 2238 2239 2240 2241 2242
	set clean_text_window 0;

	if {$item == "input"} {
		insert_input_window
		set clean_text_window 1
	}

2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259
	update

	# wait for user reply:
	vwait entry_set

	set rc $entry_set
	set entry_set 0

	set value [entry_get]
	update

	entry_browse_button 0
	set entry_str "Set... :"

	entry_delete
	entry_disable
	menus_enable
2260 2261 2262 2263 2264

	if {$clean_text_window} {
		cleanup_text_window;
	}

2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275
	update

	if {! $entry} {
		;
	} elseif {$rc} {
		set menu_var($item) $value
	} else {
		if {[in_debug_mode]} {
			append_text "skipped setting $item\n"
		}
	}
2276 2277 2278

	$entry_box configure -show ""

2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309
	return $rc
}

proc warning_dialog {msg {item "gui"} } {
	append_text $msg
	# just reuse the entry widgets for a yes/no dialog
	return [entry_dialog $item 0]
}

# For updating a boolean toggle:
proc check_var {item} {
	global menu_var

	set inval $menu_var($item);

	if {$item == "debug_gui"} {
		return "";
	}

	set rname $item
	if {! $inval} {
		if {[regexp {^no} $item]} {
			regsub {^no} $rname "" rname
		} else {
			set rname "no$rname"
		}
	}
	return $rname
}

proc see_if_ok {query item expected} {
2310 2311
	global query_result_list

2312 2313
	set ok 0
	set found ""
2314 2315 2316 2317

	set query_result_list [split_query $query]

	foreach q $query_result_list {
2318 2319
		# XXX following will crash if $item is not a good regexp
		# need to protect it \Q$item\E style...
2320 2321 2322 2323
#		if {[regexp "^$item:" $q]} {
#			set found $q
#		}
		if {[string first "$item:" $q] == 0} {
2324 2325 2326 2327
			set found $q
		}
		if {$q == $expected} {
			set ok 1
2328 2329 2330
			if {$found != ""} {
				break;
			}
2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341
		}
	}
	if {$found == ""} {
		set msg $query
		regsub {^a..=} $msg {} msg
		if {[string length $msg] > 60} {
			set msg [string range $msg 0 60]
		}
	} else {
		set msg $found
	}
2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360
	if {!$ok && $found != ""} {
		# check for floating point match:
		set v1 ""
		set v2 ""
		regexp {:([0-9.][0-9.]*)$} $found m0 v1
		regexp {:([0-9.][0-9.]*)$} $expected m0 v2
		if {$v1 != "" && $v2 != ""} {
			set diff ""
			catch {set diff [expr "$v1 - $v2"]}
			if {$diff != ""} {
				if {$diff < 0} {
					set diff [expr "0.0 - $diff"]
				}
				if {$diff < 0.00001} {
					set ok 1
				}
			}
		}
	}
2361 2362 2363 2364 2365 2366 2367 2368
	if {$ok} {
		append_text "\tSet OK  ($msg)\n"
		return 1

	} elseif {[opt_match P $item] && [regexp {:(-|\+)} $expected]} {
		# e.g. blackout:+30x30+20+20
		append_text "\t($msg)\n"
		return 1
2369 2370 2371
	} elseif {[regexp {:[0-9]\.[0-9]} $expected]} {
		append_text "\t($msg)\n"
		return 1
2372 2373
	} elseif {$item == "connect" || $item == "disconnect"
	    || $item == "client" || $item == "client_input"} {
2374 2375
		append_text "\t($msg)\n"
		return 1
2376 2377 2378
	} elseif {$item == "passwd" || $item == "viewpasswd"} {
		append_text "\t($msg)\n"
		return 1
2379 2380 2381 2382 2383 2384
	} else {
		append_text "\t*FAILED* $msg\n"
		return 0
	}
}

2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419
proc get_default_vars {} {
	global default_var

	set qry [all_query_vars]

	append qry ",vncconnect"

	set qargs [list "-QD" $qry]
	set all [run_remote_cmd $qargs]

	if {[regexp {ans=} $all]} {
		#append_text "Retrieved all default settings.\n"
	} else {
		#append_text "Failed to retrieve default settings.\n"
	}

	set query_result_list [split_query $all]

	set default_var(gui) ""

	foreach piece $query_result_list {
		if {[regexp {^([^:][^:]*):(.*)$} $piece m0 item val]} {
			if {$val == "N/A"} {
				if {$item == "vncconnect"} {
					set val 1
				} else {
					set val ""
				}
			}
			if {$item == "display"} {
				set val ""
			} elseif {$item == "desktop"} {
				set val ""
			} elseif {$item == "auth"} {
				set val ""
2420 2421
			} elseif {$item == "gui"} {
				continue
2422 2423 2424 2425 2426 2427 2428 2429
			} 
			# some hacks we do here for now..
			if {$item == "cursor" && $val == ""} {
				set val "most"
			} elseif {$item == "scrollcopyrect" && $val == ""} {
				set val "always"
			} elseif {$item == "wirecopyrect" && $val == ""} {
				set val "always"
2430 2431
#			} elseif {$item == "overlay_nocursor" && $val == 0} {
#				set val 1
2432 2433 2434 2435 2436 2437 2438 2439
			}

			set default_var($item) $val
#puts "default: $item -> $val"
		}
	}
}

2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527
proc tilde_expand {file} {
	global env
	if {[file exists $file]} {
		return $file
	}

	set user ""
	if {[info exists env(USER)]} {
		set user $env(USER)
	}
	if {$user == "" && [info exists env(LOGNAME)]} {
		set user $env(LOGNAME)
	}

	set home ""
	if {[info exists env(HOME)]} {
		set home $env(HOME)
	} elseif {$user != ""} {
		set home "/home/$user"
	}

	if {[regexp {^~} $file]} {
		if {[regexp {^~/} $file]} {
			if {$home != ""} {
				regsub {^~} $file $home file
			}
		} else {
			regsub {^~} $file "/home/" file
		}
	}
	return $file
}

proc insert_cmdline_vars {} {
	global env cmd_var menu_var default_var x11vnc_cmdline
	if {![info exists x11vnc_cmdline]} {
		return
	}
	if {$x11vnc_cmdline == ""} {
		return
	}
	set cmd_var(novar) 1 
	set str [string trim $x11vnc_cmdline]

	while {[regexp -- {^-} $str]} {
		if {[regexp -- {^--*([^ \t][^ \t]*)(.*)$} $str m var rest]} {
			set rest [string trim $rest]
			set var [string trim $var]
			if {[regexp {^\{\{([^\}]*)\}\}(.*)} $rest m val rest]} {
				set str [string trim $rest]
				set cmd_var($var) $val
			} else {
				set str $rest
				set cmd_var($var) "boolean"
			}
		} else {
			break
		}
	}

	if {[info exists cmd_var(rc)]} {
		load_settings $cmd_var(rc)
	} elseif {[info exists cmd_var(norc)]} {
		;
	} else {
		set filex [tilde_expand "~/.x11vncrc"]
		if {[file exists $filex]} {
			load_settings $filex
		}
	}

	foreach var [array names cmd_var] {
		if {$var == "novar"} {
			continue
		}
		if {[regexp {^[ \t]*$} $var]} {
			continue
		}
		if {[info exists menu_var($var)]} {
			if {$cmd_var($var) == "boolean"} {
				set menu_var($var) 1
			} else {
				set menu_var($var) $cmd_var($var)
			}
		}
	}
}

2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543
proc copy_default_vars {} {
	global menu_var default_var
	foreach item [array names default_var] {
		if {[info exists menu_var($item)]} {
			if {[info exists default_var($item)]} {
				set menu_var($item) $default_var($item)
			}
		}
	}
	foreach item [array names menu_var] {
		if {[info exists default_var($item)]} {
			set menu_var($item) $default_var($item)
		}
	}
}

2544
proc update_menu_vars {{query ""}} {
2545
	global all_settings menu_var query_result_list
2546 2547 2548

	set debug [in_debug_mode]

2549 2550 2551 2552
	if {$query == "USE_LIST"} {
		;
	} elseif {$query == ""} {
		set query_result_list [split_query $all_settings]
2553
	} else {
2554
		set query_result_list [split_query $query]
2555
	}
2556 2557

	foreach piece $query_result_list {
2558
#puts stderr "UMV: $piece"
2559 2560 2561
		if {[regexp {^([^:][^:]*):(.*)$} $piece m0 item val]} {
			if {[info exists menu_var($item)]} {
				set old $menu_var($item)
2562
#puts stderr "     $old"
2563 2564 2565 2566 2567 2568 2569
				if {$val == "N/A"} {
					continue
				}
				set menu_var($item) $val
			}
			if {$item == "clients"} {
				update_clients_menu $val
2570 2571 2572 2573
			} elseif {$item == "display"} {
				set_x11_display $val
			} elseif {$item == "vncdisplay"} {
				set_vnc_display $val
2574 2575
			} elseif {$item == "http_url"} {
				set_vnc_url $val
2576 2577 2578 2579 2580
			}
		}
	}
}

2581 2582
proc load_settings {{file ""}} {
	global menu_var default_var env
2583

2584 2585 2586 2587 2588
	if {$file == ""} {
		if {![info exists menu_var(load-settings)]} {
			return
		}
		set file $menu_var(load-settings)
2589 2590 2591 2592 2593 2594
	}
	if {$file == ""} {
		return
	}

	set fh ""
2595 2596
	set filex [tilde_expand $file]
	catch {set fh [open $filex "r"]}
2597 2598

	if {$fh == ""} {
2599
		append_text "load_settings: *** failed to open $filex ***\n"
2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625
		return
	}
	copy_default_vars

	set str ""
	while {[gets $fh line] > -1} {
		regsub -all {\\#} $line {__QUOTED_HASH__} line
		if {[regexp {^[ \t]*#} $line]} {
			continue
		}
		for {set i 0} {$i < 5} {incr i} {
			regsub {#.*$} $line "" line
		}
		if {[regexp {^[ \t]*$} $line]} {
			continue
		}
		regsub -all {__QUOTED_HASH__} $line {#} line
		if {[regexp {\\$} $line]} {
			regsub {\\$} $line " " line
			append str "$line"
		} else {
			append str "$line\n"
		}
	}
	close $fh

2626 2627 2628
	set count 0
	set parms ""

2629 2630 2631 2632 2633 2634 2635 2636 2637 2638
	foreach line [split $str "\n"] {
		set line [string trim $line]
		regsub {^--*} $line "" line
		regsub -all {[ \t][ \t]*} $line " " line
		set list [split $line]
		set item [lindex $list 0]
		set value [lindex $list 1]
		if {[regexp {^[ \t]*$} $item]} {
			continue
		}
2639 2640 2641
		if {$item == "gui"} {
			continue
		}
2642 2643 2644
		if {[info exists menu_var($item)]} {
			if {[value_is_bool $item]} {
				set menu_var($item) 1
2645 2646
				incr count
				append parms "  -$item\n"
2647 2648 2649
			} elseif {[value_is_string $item]} {
				if {$value != ""} {
					set menu_var($item) $value
2650 2651 2652
					set nitem [get_nitem $item]
					append parms "  -$nitem $value\n"
					incr count
2653 2654 2655 2656
				}
			}
		}
	}
2657 2658 2659 2660 2661 2662 2663
	append_text "loaded $count parameter settings from $filex"
	if {$count > 0} {
		append_text ":\n"
		append_text $parms
	} else {
		append_text ".\n"
	}
2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723
}

proc save_settings {} {
	set rc_text [get_settings_rcfile]

	set top "#
# This file is based on the current x11vnc settings and can be used as
# as a ~/.x11vncrc defaults file.  If saved to another filename, these
# settings can be passed to x11vnc at startup via \"-rc <filename>\".
#
# The rc file comment character is \"#\".  Use \"\\#\" for the literal char.
# You can continue lines using \"\\\" as the last character of a line.
#
# Lines beginning with \"#d\" indicate the parameter value is at its default
# setting and you probably want to leave it commented out.
#
# Lines beginning with \"#?\" indicate parameters you probably do not
# want to hardwire to the current setting (uncomment if you want that).
# 
# Some parameters are boolean, e.g. -forever, and take no value; while
# the others, e.g. -wait 50, take a string or numerical value.
#
# For booleans, the line will end with comment \"default: on\" or
# \"default: off\" indicating the default setting.  (Note: often
# \"-nofoobar\" corresponds to option \"-foobar\" and the former is
# \"the default\", e.g. -norepeat).
#
# For string or numerical options, the value \"\" in a line below
# means the default is unset and you will need to supply some non-empty
# value to use the parameter.  For reference, if the default differs
# from your value it placed at the end of the line as a comment.
# 
# Feel free to uncomment or comment any of the lines or to change any
# of the values of the parameters.  Don't be surprised that most if not
# all of the lines below are commented out (x11vnc has so many parameters,
# most of them will be at their default values).
#-------------------------------------------------------------------------

"

	set rc_text "$top$rc_text"

	global env save_settings_var save_settings_var_ok
	if {[info exists env(HOME)]} {
		set save_settings_var "$env(HOME)/.x11vncrc"
	} else {
		set save_settings_var ".x11vncrc"
	}
	set save_settings_var_ok 0

	set w [textwin "save_settings" "Save Settings..." $rc_text \
		"save_settings_var+Save as:"]

	tkwait window $w

	if {$save_settings_var_ok == 1} {
		set file $save_settings_var
		if {$file == ""} {
			return
		}
2724
		set file [tilde_expand $file]
2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759
		append_text "\nSaving current settings to $file ...\n" 
		if {[file exists $file]} {
			set backup "${file}~"
			append_text "Backing up $file -> $backup ...\n"
			catch {file delete -force $backup}
			set emsg "*** Backup to $backup failed. ***\n"
			if {![file exists $backup]} {
				catch {file copy -force $file $backup}
				if {![file exists $backup]} {
					append_text $emsg
					bell
				}
			} else {
				append_text $emsg
				bell
			}
		}
		set fh ""
		catch {set fh [open $file "w"]}
		if {$fh != ""} {
			puts $fh $rc_text
			close $fh
			if {![file exists $file]} {
				append_text "*** Saving to $file failed. ***\n"
				bell
			} else {
				append_text "Done.\n"
			}
		} else {
			append_text "*** Open of $file failed. ***\n"
			bell
		}
	}
}

2760 2761 2762 2763 2764 2765 2766 2767 2768 2769
proc clear_all {} {
	global menu_var unset_str

	set debug [in_debug_mode]
	
	foreach item [array names menu_var] {
		if {$item == "debug_gui"} {
			continue
		}
		if {[info exists menu_var($item)]} {
2770
			if {[is_action $item]} {
2771 2772 2773 2774 2775 2776 2777 2778
				set menu_var($item) ""
			} elseif {[value_is_bool $item]} {
				set menu_var($item) 0
			} elseif {[value_is_string $item]} {
				set menu_var($item) $unset_str
			}
		}
	}
2779
	append_text "Cleared all settings.\n"
2780 2781
}

2782 2783 2784 2785 2786
proc defaults_all {} {
	copy_default_vars
	append_text "Reset all variables to default values.\n"
}

2787 2788
proc all_query_vars {} {
	global query_ans_list query_aro_list all_settings
2789
	global cache_all_query_vars
2790
	
2791 2792 2793 2794
	if {$cache_all_query_vars != ""} {
		return $cache_all_query_vars
	}

2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809
	set qry ""
	foreach item $query_ans_list {
		if {$qry == ""} {
			set qry $item
		} else {
			append qry ",$item"
		}
	}
	foreach item $query_aro_list {
		if {$qry == ""} {
			set qry $item
		} else {
			append qry ",$item"
		}
	}
2810 2811
	set cache_all_query_vars $qry

2812 2813 2814 2815 2816
	return $qry
}

proc query_all {{quiet 0}} {
	global query_ans_list query_aro_list all_settings
2817
	global last_query_all_time
2818 2819 2820 2821 2822 2823 2824 2825

	set qry [all_query_vars]

	set qargs [list "-Q" $qry]
	set all [run_remote_cmd $qargs]

	if {[regexp {ans=} $all]} {
		if {! $quiet} {
2826
			append_text "Retrieved all current settings.\n"
2827 2828 2829 2830 2831
		}
		set all_settings $all
		update_menu_vars $all
	} else {
		if {! $quiet} {
2832
			append_text "Failed to retrieve current settings.\n"
2833 2834
		}
	}
2835
	set last_query_all_time [clock seconds]
2836 2837 2838 2839
	return $all
}

proc set_info {str} {
2840 2841 2842 2843 2844
	global info_str info_label
#set w1 [$info_label cget -width]
#set w2 [winfo width $info_label]
#puts "set_info: w=$w1  winfo=$w2"
#append_text "$str\n"
2845 2846 2847 2848 2849
	set info_str "$str"
	update
}

proc append_text {str} {
2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869
	global text_area text_area_str

	if {![info exists text_area_str]} {
		set text_area_str ""
	}
	append text_area_str $str

	if {![info exists text_area]} {
		puts stderr $str
		return
	}
	if {$text_area == ""} {
		puts stderr $str
		return
	}
	if {![winfo exists $text_area]} {
		puts stderr $str
		return
	}
	
2870 2871 2872 2873 2874 2875
	$text_area insert end $str
	$text_area see end
}

proc show_all_settings {} {
	global all_settings
2876 2877 2878 2879
	global client_sock client_tail
	global x11vnc_client_file

	set txt "\nRead-Write settings:\n\n"
2880 2881 2882 2883
	foreach item [split_query $all_settings]  {
		regsub {:} $item {: } item
		append txt "  $item\n"
		if {[regexp {noremote} $item]} {
2884
			append txt "\nRead-Only settings:\n\n"
2885 2886
		}
	}
2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901
	append txt "\nInternal settings:\n\n"
	append txt "x11vnc_client_file: $x11vnc_client_file\n"
	if {[info exists client_tail]} {
		append txt "client_tail: $client_tail\n"
	} else {
		append txt "client_tail: unset\n"
	}
	if {[info exists client_sock]} {
		append txt "client_sock: $client_sock\n"
	} else {
		append txt "client_sock: unset\n"
	}
	set estr ""
	catch {set estr [exec env | grep -i X11VNC]}
	append txt "$estr\n"
2902 2903 2904
	textwin "Settings" "All Current Settings" $txt
}

2905 2906
proc show_logfile {} {
	global menu_var unset_str
2907 2908

	set logfile [tilde_expand $menu_var(logfile)]
2909 2910
	
	if {$logfile == "" || $logfile == $unset_str} {
2911
		set txt "\nNo logfile was specified at x11vnc startup.\n\n"	
2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931
	} elseif {![file exists $logfile]} {
		set txt "\nLogfile \"$logfile\" does not exist.\n\n"
	} else {
		set fh "-3"
		set err ""
		catch {set fh [open $logfile "r"]} err
		if {$fh == "-3"} {
			set txt "\nError opening \"$logfile\" $err.\n\n"
		} else {
			set txt "\nLogfile \"$logfile\" current contents:\n"
			while {[gets $fh line] > -1} {
				append txt "$line\n"
			}
			close $fh
		}
	}
	textwin "Logfile" "Logfile" $txt
}

proc tail_logfile {} {
2932
	global menu_var unset_str ffont
2933 2934 2935 2936
	set logfile $menu_var(logfile)
	
	set txt ""
	if {$logfile == "" || $logfile == $unset_str} {
2937
		set txt "\nNo logfile was specified at x11vnc startup.\n\n"	
2938 2939 2940 2941
	} elseif {![file exists $logfile]} {
		set txt "\nLogfile \"$logfile\" does not exist.\n\n"
	} else {
		set cmd ""
2942
		set xterm_cmd "xterm -sb -fn $ffont -geometry 80x45 -title x11vnc-logfile -e"
2943 2944
		set cmd [split $xterm_cmd]
		lappend cmd "tail"
2945
		lappend cmd "-3000f"
2946 2947 2948 2949 2950 2951 2952 2953 2954
		lappend cmd $logfile
		lappend cmd "&"
		catch {[eval exec $cmd]}
	}
	if {$txt != ""} {
		textwin "Logfile" "Logfile" $txt
	}
}

2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984
proc set_connected {yesno} {
	global connected_to_x11vnc
	set orig $connected_to_x11vnc
	
	if {$yesno == "yes"} {
		set connected_to_x11vnc 1
	} else {
		set connected_to_x11vnc 0
		no_x11_display
		no_vnc_display
	}
	if {$orig != $connected_to_x11vnc} {
		set_widgets
	}
}

proc detach_from_display {} {
	global connected_to_x11vnc reply_xdisplay x11vnc_xdisplay
	set str "Detaching from X display."
	if {$reply_xdisplay != ""} {
		set str "Detaching from $reply_xdisplay."
	} elseif {$x11vnc_xdisplay != ""} {
		set str "Detaching from $x11vnc_xdisplay."
	}
	if {$connected_to_x11vnc} {
		append_text "$str\n"
	}
	set_connected no
}

2985 2986 2987 2988 2989 2990 2991 2992
proc do_stop_quit {} {
	push_new_value "stop" "stop" 1 0
	set_connected no
	update
	after 250
	destroy .
}

2993 2994
# Menu item is an action:
proc do_action {item} {
2995
	global menu_var connected_to_x11vnc beginner_mode
2996 2997 2998 2999

	if {[in_debug_mode]} {
		append_text "action: \"$item\"\n"
	}
3000
#puts "action: \"$item\"\n"
3001 3002

	if {$item == "ping"} {
3003 3004 3005 3006 3007
		if {$beginner_mode} {
			try_connect_and_query_all
		} else {
			try_connect
		}
3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023
		return
	} elseif {$item == "start"} {
		start_x11vnc
		return
	} elseif {$item == "detach"} {
		detach_from_display
		return
	} elseif {$item == "attach"} {
		try_connect_and_query_all
		return
	} elseif {$item == "update-all"} {
		query_all
		return
	} elseif {$item == "clear-all"} {
		clear_all
		return
3024 3025 3026 3027 3028 3029
	} elseif {$item == "defaults-all"} {
		defaults_all
		return
	} elseif {$item == "save-settings"} {
		save_settings
		return
3030 3031 3032
	} elseif {$item == "show-start-cmd"} {
		show_start_cmd
		return
3033 3034 3035
	} elseif {$item == "all-settings"} {
		show_all_settings
		return
3036 3037 3038 3039 3040 3041
	} elseif {$item == "show-logfile"} {
		show_logfile
		return
	} elseif {$item == "tail-logfile"} {
		tail_logfile
		return
3042 3043 3044
	} elseif {$item == "Misc-Tuning:"} {
		menu_help "$item"
		return
3045 3046 3047
	} elseif {$item == "WindowView"} {
		change_view_state
		return
3048 3049 3050
	} elseif {$item == "quit" || $item == "Quit"} {
		destroy .
		exit 0
3051
	} elseif {$item == "stop+quit"} {
3052
		do_stop_quit
3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065
	}

	if {[value_is_string $item]} {
		if {! [entry_dialog $item]} {
			return
		}
		set new $menu_var($item)
		set name $item
	} else {
		set new 1
		set name $item
	}

3066 3067 3068 3069 3070
	if {$item == "load-settings"} {
		load_settings
		return
	}

3071 3072 3073 3074 3075 3076 3077 3078
	if {! $connected_to_x11vnc} {
		;
	} elseif {[regexp {^(stop|quit|exit|shutdown)$} $item]} {
		# just do -R
		append_text "stopping remote x11vnc server...\n"
		push_new_value $item $name $new 0
		set_connected no
		
3079
	} elseif {[opt_match Q $item]} {
3080 3081 3082 3083 3084 3085
		push_new_value $item $name $new 1
	} else {
		push_new_value $item $name $new 0
	}
}

3086 3087 3088 3089 3090 3091
proc ptime {time} {
	set usec [lindex [split $time] 0]
	set sec [format "%.3f" [expr "$usec / 1000000.0"]]
	puts "time: $sec secs."
}

3092 3093 3094
proc do_var {item} {
	global connected_to_x11vnc item_cascade menu_var

3095 3096
	set debug [in_debug_mode]

3097
	set string 0
3098
	if {[is_action $item] || $item == "WindowView"} {
3099
		# Menu item is action:
3100 3101 3102 3103 3104
		if {$debug} {
			ptime [time {do_action $item}]
		} else {
			do_action $item
		}
3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128
		return
	}

	if {[value_is_string $item]} {
		# Menu item is a string:
		if {$item_cascade($item) != ""} {
			# Cascade sets variable automatically
		} else {
			# Otherwise Entry box
			if {![entry_dialog $item]} {
				return
			}
		}
		set new $menu_var($item)
		set name $item
	} else {
		# Menu item is a boolean:
		set name [check_var $item]
		if {$name == ""} {
			return
		}
		set new 1
	}
	if {$connected_to_x11vnc} {
3129 3130 3131 3132 3133
		if {$debug} {
			ptime [time {push_new_value $item $name $new 1}]
		} else {
			push_new_value $item $name $new 1
		}
3134 3135 3136 3137 3138

		if {$item == "http"} {
			global vnc_url
			append_text "  URL: $vnc_url\n"
		}
3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163
	}
}

proc menu_help {item} {
	if ![help_win $item] {
		textwin "nohelp" "No help available" \
			"Sorry, no help avaiable for \"$item\""
	}
}

proc opt_match {c item} {
	global item_opts
	if {[info exists item_opts($item)]} {
		if {[regexp "^\[A-z\]*$c" $item_opts($item)]} {
			return 1
		}
	}
	return 0
}

proc is_action {item} {
	return [opt_match A $item]
}

proc is_gui_internal {item} {
3164 3165 3166 3167 3168 3169
	if {$item == "Properties"} {
		return 1
	}
	if {$item == "Tray"} {
		return 1
	}
3170 3171 3172 3173 3174 3175 3176 3177 3178
	return [opt_match G $item]
}

proc is_browse {item} {
	return [opt_match F $item]
}

proc value_is_string {item} {
	global item_bool
3179 3180 3181
	if {![info exists item_bool($item)]} {
		return 0
	}
3182 3183 3184 3185 3186 3187 3188 3189 3190
	if {! $item_bool($item)} {
		return 1
	} else {
		return 0
	}
}

proc value_is_bool {item} {
	global item_bool
3191 3192 3193
	if {![info exists item_bool($item)]} {
		return 0
	}
3194 3195 3196 3197 3198 3199 3200
	if {$item_bool($item)} {
		return 1
	} else {
		return 0
	}
}

3201 3202
proc split_query0 {query} {
	# original slower way with regexp/regsub
3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221
	regsub -all {aro=} $query {ans=} query
	set items {}
	while {1} {
		if {! [regexp {^ans=(.*)$} $query m0 m1]} {
			break
		}
		set item $m1
		set m2 ""
		regexp {,ans=.*$} $item m2
		regsub {,ans=.*$} $item "" item
		if {$item != ""} {
			lappend items $item
		}
		set query $m2
		regsub {^,} $query "" query
	}
	return $items
}

3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253
proc split_query {query} {
	regsub -all {aro=} $query {ans=} query
	set items {}
	while {1} {
		set n [string first "ans=" $query]
		if {$n < 0} {
			break
		}
		set from [expr $n+4]

		set m [string first ",ans=" $query]
		if {$m < 0} {
			set more 0
			set item [string range $query $from end]
		} else {
			set more 1
			set to   [expr $m-1]
			set item [string range $query $from $to]
		}
		if {$item != ""} {
			lappend items $item
		}
		if {$more} {
			incr m
			set query [string range $query $m end]
		} else {
			set query ""
		}
	}
	return $items
}

3254 3255 3256
proc set_x11_display {name} {
	global x11_display
	set x11_display "x11vnc X display: $name"
3257
	set_name "tkx11vnc - $name"
3258 3259
}
proc set_vnc_display {name} {
3260
	global vnc_display icon_mode
3261
	set vnc_display "VNC display: $name"
3262 3263 3264 3265

	if {$icon_mode} {
		set_icon_label
	}
3266
}
3267 3268 3269 3270
proc set_vnc_url {name} {
	global vnc_url
	set vnc_url $name
}
3271 3272
proc no_x11_display {} {
	set_x11_display "(*none*)"
3273
	set_name "tkx11vnc"
3274 3275 3276 3277
}
proc no_vnc_display {} {
	set_vnc_display "(*none*)"
}
3278 3279 3280
proc no_vnc_url {} {
	set_vnc_url "(*none*)"
}
3281

3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297
proc get_vnc_display_number {} {
	global vnc_display
	if ![info exists vnc_display] {
		return "none"
	}
	if {$vnc_display == ""} {
		return "none"
	}
	set str $vnc_display
	regsub {VNC display: *} $str "" str
	if [regexp {:([0-9][0-9]*)} $str m0 n] {
		return $n
	}
	return "none"
}

3298 3299 3300 3301 3302 3303 3304
proc fetch_displays {} {

	set qargs [list "-Q" "display,vncdisplay"]
	set result [run_remote_cmd $qargs]

	set got_x11 0
	set got_vnc 0
3305
	set got_url 0
3306 3307 3308 3309 3310 3311 3312 3313

	foreach item [split_query $result] {
		if {[regexp {^display:(.*)$} $item m0 m1]} {
			set_x11_display $m1
			set got_x11 1
		} elseif {[regexp {^vncdisplay:(.*)$} $item m0 m1]} {
			set_vnc_display $m1
			set got_vnc 1
3314 3315 3316
		} elseif {[regexp {^http_url:(.*)$} $item m0 m1]} {
			set_vnc_url $m1
			set got_url 1
3317 3318 3319 3320 3321 3322 3323 3324
		}
	}
	if {! $got_x11} {
		no_x11_display
	}
	if {! $got_vnc} {
		no_vnc_display
	}
3325 3326 3327
	if {! $got_url} {
		no_vnc_url
	}
3328 3329
}

3330 3331 3332 3333 3334 3335
proc client_dialog {client} {
	set cid ""
	set host ""
	set ip ""
	global menu_var text_area cleanup_window item_bool

3336 3337 3338 3339 3340 3341
	#<id>:<ip>:<port>:<user>:<unix>:<hostname>:<input>:<loginview>:<time>
	append_text "\nClient info string:\n - $client\n\n"
	if {[regexp {^(.*):(.*):(.*):(.*):(.*):(.*):(.*):(.*):(.*)$} \
	    $client m0 m1 m2 m3 m4 m5 m6 m7 m8 m9]} {
		set cid  $m1
		set ip   $m2
3342
		set port $m3
3343
		set user $m4
3344 3345
		set unix $m5
		set host $m6
3346
		regsub {\..*$} $host "" host
3347 3348 3349 3350 3351 3352 3353 3354
		set input $m7
		set logvo $m8
		set ltime $m9
		append_text "Host: $host, Port: $port, User: $user"
		if {$unix != "" && $unix != "none"} {
			append_text ", Unix: $unix"
		}
		append_text ", IP: $ip, Id: $cid\n"
3355
		append_text " - originally logged in as: "
3356
		if {$logvo == "1" } {
3357
			append_text "View-Only Client"
3358
		} else {
3359 3360 3361 3362 3363
			append_text "Normal Client"
		}
		if {$ltime != ""} {
			set tim [clock format $ltime]
			append_text ",  $tim"
3364
		}
3365
		append_text "\n"
3366
		append_text " - currently allowed input: "
3367 3368 3369
		set sk 0
		set sm 0
		set sb 0
3370
		set sc 0
3371
		if {[regexp -nocase {K} $input]} {
3372
			append_text "Keystrokes"
3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385
			set sk 1
		}
		if {[regexp -nocase {M} $input]} {
			if {$sk} {
				append_text ", "
			}
			append_text "Mouse-Motion"
			set sm 1
		}
		if {[regexp -nocase {B} $input]} {
			if {$sk || $sm} {
				append_text ", "
			}
3386
			append_text "Button-Clicks"
3387 3388
			set sb 1
		}
3389 3390 3391 3392 3393 3394 3395 3396
		if {[regexp -nocase {C} $input]} {
			if {$sk || $sm || $sb} {
				append_text ", "
			}
			append_text "Clipboard"
			set sm 1
		}
		if {! $sk && ! $sm && ! $sb && ! $sm} {
3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422
			append_text "None"
		}
		append_text "\n"
	}
	if {$cid == ""} {
		append_text "Invalid client info string: $client\n"
		return
	}

	regsub -all {_} $input "" input
	set menu_var(client) "$input"
	set item_bool(client) 0

	insert_client_action_window $input
	set rc [entry_dialog client 1]

	cleanup_text_window

	set val $menu_var(client)
	#puts "rc: $rc  val: $val"

	if {! $rc} {
		return;
	} elseif {[regexp -nocase {(disconnect|close)} $val]} {
		disconnect_dialog $client
	} else {
3423
		regsub -all -nocase {[^KMBC]} $val "" val
3424 3425 3426 3427 3428
		set item_bool(client_input) 0
		push_new_value "client_input" "client_input" "$cid:$val" 0
	}
}

3429 3430 3431 3432
proc disconnect_dialog {client} {
	set cid ""
	set host ""
	set msg "\n"
3433 3434 3435 3436 3437
	append msg "*** Client info string:\n    $client\n"
	if {[regexp {^(.*):(.*):(.*):(.*):(.*):(.*):(.*):(.*):(.*)$} \
	    $client m0 m1 m2 m3 m4 m5 m6 m7 m8 m9]} {
		set cid  $m1
		set ip   $m2
3438
		set port $m3
3439 3440 3441
		set user $m4
		set unix $m5
		set host $m6
3442
		regsub {\..*$} $host "" host
3443 3444 3445 3446 3447 3448 3449 3450
		set input $m7
		set logvo $m8
		set ltime $m9
		append_text "Host: $host, Port: $port, IP: $ip, User: $user"
		if {$unix != "" && $unix != "none"} {
			append_text ", Unix: $unix"
		}
		append_text ", Id: $cid\n"
3451 3452 3453 3454 3455
	}
	if {$cid == ""} {
		append_text "Invalid client info string: $client\n"
		return
	}
3456
	append msg "*** To *DISCONNECT* this client press \"OK\" again, otherwise press \"Cancel\"\n"
3457
	bell
3458
	if {[warning_dialog $msg "current"]} {
3459 3460 3461 3462 3463 3464
		push_new_value "disconnect" "disconnect" $cid 1
	} else {
		append_text "disconnect cancelled.\n"
	}
}

3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479
proc update_clients_and_repost {} {
	global item_cascade menu_m menu_b

	append_text "Refreshing connected clients list... "
	query_all 1
	update

	set saw 0
	set casc $item_cascade(current)
	set last [$casc index end]
	for {set i 0} {$i <= $last} {incr i} {
		if {[$casc type $i] == "separator"} {
			continue
		}
		set name [$casc entrycget $i -label]
3480
		if {[regexp {^num-clients} $name]} {
3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496
			continue
		}
		if {[regexp {^refresh-list} $name]} {
			continue
		}
		if {! $saw} {
			append_text "\n"
		}
		set saw 1
		append_text "client: $name\n"
	}
	if {! $saw} {
		append_text "done.\n"
	}
}

3497
proc update_clients_menu {list} {
3498
	global item_cascade ffont
3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509
	global saved_clients_str

	if {![info exists saved_clients_str]} {
		set saved_clients_str ""
	}
	if {$list == "INIT"} {
		set list $saved_clients_str
	} else {
		set saved_clients_str $list
	}

3510 3511
	set subm $item_cascade(current);
	catch {destroy $subm}
3512
	menu $subm -tearoff 0 -font $ffont
3513
	$subm add command
3514 3515
	$subm add command -label "refresh-list" \
		-command "update_clients_and_repost"
3516 3517 3518
	$subm add separator
	set count 0
	foreach client [split $list ","] {
3519
		if {![regexp {^[a-z0-9]*[a-z0-9]:} $client]} {
3520 3521 3522
			#append_text "Skipping client line: "
			#append_text $client
			#append_text "\n"
3523 3524 3525 3526
			continue
		}
		regsub -all {[{}()~!$&*|;'"`{}<>\[\]]} $client "" client
		#'
3527 3528 3529 3530 3531 3532
		if {[regexp {^(.*):(.*):(.*):(.*):(.*):(.*):(.*):(.*):(.*)$} \
		    $client m0 m1 m2 m3 m4 m5 m6 m7 m8 m9]} {
			set id   $m1
			set user $m4
			set unix $m5
			set host $m6
3533
			regsub {\..*$} $host "" host
3534 3535 3536 3537 3538 3539
			set clabel "$host $id"
			if {$unix != "" && $unix != "none"} {
				set clabel "$unix@$clabel"
			} elseif {$user != "unknown-user"} {
				set clabel "$user@$clabel"
			}
3540 3541 3542 3543
		} else {
			regsub {:.*$} $client "" clabel
		}
		$subm add command -label "$clabel" \
3544
			-command "client_dialog \{$client\}"
3545 3546
		incr count
	}
3547
	$subm entryconfigure 0 -label "num-clients: $count"
3548 3549 3550
}

proc set_widgets {} {
3551
	global connected_to_x11vnc item_case item_menu item_entry menu_m
3552 3553

	foreach item [array names item_case] {
3554
		if ![info exists item_case($item)] { continue; }
3555
		set case $item_case($item)
3556
		if ![info exists item_menu($item)] { continue; }
3557
		set menu $item_menu($item)
3558
		if ![info exists item_entry($item)] { continue; }
3559
		set entry $item_entry($item)
3560 3561 3562 3563
		if {$entry < 0} {
			# skip case under beginner_mode 
			continue
		}
3564 3565 3566 3567
		set type [$menu type $entry]
		if {$type == "separator" || $type == "tearoff"} {
			continue
		}
3568 3569 3570
		if {![winfo exists $menu]} {
			continue
		}
3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586
		if {$connected_to_x11vnc} {
			if {[active_when_connected $item]} {
				$menu entryconfigure $entry -state normal
			} else {
				$menu entryconfigure $entry -state disabled
			}
		} else {
			if {[active_when_starting $item]} {
				$menu entryconfigure $entry -state normal
			} else {
				$menu entryconfigure $entry -state disabled
			}
		}
	}
}

3587 3588
proc toggle_simple_gui {} {
	global beginner_mode simple_gui_created
3589
	global connected_to_x11vnc make_gui_count
3590

3591 3592 3593 3594
	if {$beginner_mode} {
		append_text "\nSwitching to simple-gui mode.\n"
	} else {
		append_text "\nSwitching to power-user gui mode.\n"
3595 3596
	}

3597 3598 3599
	if {$make_gui_count == 1} {
		incr make_gui_count
	}
3600 3601 3602 3603 3604 3605 3606
	set simple_gui_created 1
	make_menu_items
	set_widgets
	set_internal_help
	append_text "\n"
}

3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654
proc little_qs {m} {
	global bfont ffont beginner_mode
	global helpremote helptext helplabel
	global tk_version

	if {$tk_version < 8.0} {
		return
	}

	set n [$m index end]

	for {set i 0} {$i <= $n} {incr i} {
		set type [$m type $i]
#puts "$m - $i - $type"
		if {$type == "separator"} {
			$m add separator
		} elseif {$type == "tearoff"} {
			continue;
		} else {
			set label [$m entrycget $i -label]
			set str ""
			if {[info exists helpremote($label)]} {
				set str "(?)"
			} elseif {[info exists helptext($label)]} {
				set str "(?)"
			}
			$m add command -label $str \
				-font $ffont \
				-command "menu_help $label";

			if {$str == ""} {
				$m entryconfigure end -state disabled
			}
			set arg "$m,$i"
#puts "helplabel: $arg -> $label"
			set helplabel($arg) $label
			set j [$m index end]
			set arg "$m,$j"
			set helplabel($arg) $label
		}
		if {$i == 0} {
			$m entryconfigure end -columnbreak 1
		}
	}

	menu_bindings $m
}

3655 3656 3657
proc make_menu_items {} {
	global template 
	global menu_b menu_m menu_count
3658
	global item_opts item_bool item_case item_menu item_entry menu_var unset_str
3659 3660 3661
	global item_cascade
	global bfont ffont beginner_mode simple_gui_created
	global helptext helpremote helplabel
3662

3663 3664 3665 3666 3667
	# some tweaks...
	if {![info exists menu_var(deny)]} {
		set menu_var(deny) 0
	}

3668
	set case "";
3669 3670 3671 3672 3673
	set L_casc ""
	set L_casc_count 0
	set L_menus [list]

	# Extract the menu items:
3674 3675 3676 3677 3678 3679
	foreach line [split $template "\n"] {
		if {[regexp {^Row:} $line]} {
			continue
		}
		if {[regexp {^[A-z]} $line]} {
			set case [string trim $line]
3680 3681 3682

			if {$simple_gui_created} {
				set i0 0
3683 3684 3685
				#if {$case == "Misc"} { # kludge for simple_gui
				#	set i0 1
				#}
3686 3687 3688
				catch {$menu_m($case) delete $i0 end}
			}
			set menu_count($case) 0
3689 3690
			continue;
		}
3691

3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712
		set item [string trim $line]
		regsub -all {  *} $item " " item
		if {$item == ""} {
			continue;
		}
		set opts ""
		if {[regexp {^=} $item]} {
			set opts [lindex [split $item] 0]
			regsub {^=} $opts "" opts
			set item [lindex [split $item] 1]
		}
		if {[regexp {^0} $opts]} {
			continue;
		}
		if {[regexp {:$} $item]} {
			set bool 0
		} else {
			set bool 1
		}
		regsub {:$} $item {} item

3713 3714 3715 3716 3717
		if {$item == "LOFF"} {
			set L_casc ""
			continue
		}

3718 3719 3720 3721 3722 3723 3724
		if {$item == "-- D"} {
			set beginner_sep 1
			set item "--"
		} else {
			set beginner_sep 0
		}

3725 3726 3727 3728
		set item_opts($item) $opts
		set item_case($item) $case
		set item_bool($item) $bool
		set item_cascade($item) ""
3729 3730 3731 3732 3733 3734 3735 3736 3737

		if {$L_casc == ""} {
			set item_entry($item) $menu_count($case)
			set m $menu_m($case)
		} else {
			# hack for cascades for crowded menus.  See =GAL opts.
			set item_entry($item) $L_casc_count
			set m $L_casc
		}
3738 3739 3740

		set mvar 0 

3741 3742 3743 3744 3745
		if {$beginner_mode && ! $beginner_sep && ![opt_match D $item]} {
			set item_entry($item) "-1"
			continue;
		}

3746 3747 3748 3749
		set item_menu($item) $m

		if {0} { puts "ITEM: $item\t- $opts\t- $case\t- \
			$bool\t- $menu_count($case)" }
3750

3751 3752 3753 3754 3755 3756 3757 3758
		# Create the menu items, its variables, etc., etc.

		if {$item == "--"} {
			$m add separator

		} elseif {$item == "Quit"} {
			# Quit item must shut us down:
			$m add command -label "$item" -underline 0 \
3759
				-font $ffont \
3760 3761 3762 3763 3764
				-command {destroy .; exit 0}

		} elseif {$case == "Help"} {
			# Help is simple help:
			$m add command -label "$item" \
3765
				-font $ffont \
3766 3767
				-command "menu_help $item"

3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782
		} elseif {[opt_match L $item]} {
			# Special sub-menu cascade (=GAL ends with LOFF)
			set subm $m.casc_L$menu_count($case)
			catch {destroy $subm}
			menu $subm -tearoff 0 -font $ffont
			set item_cascade($item) $subm
			$m add cascade -label "$item" \
				-font $ffont \
				-menu $subm
			set L_casc $subm
			set L_casc_count -1
			lappend L_menus $L_casc

		} elseif {$item == "current"} {
			# Current clients cascade
3783 3784
			set subm $m.current_cascade
			catch {destroy $subm}
3785
			set item_cascade($item) $subm
3786
			update_clients_menu "INIT"
3787
			$m add cascade -label "$item" \
3788
				-font $ffont \
3789 3790 3791 3792 3793
				-menu $subm

		} elseif {[is_action $item]} {
			# Action
			$m add command -label "$item" \
3794
				-font $ffont \
3795
				-command "do_var $item"
3796 3797 3798
			if {![info exists menu_var($item)]} {
				set menu_var($item) "";	# for convenience
			}
3799 3800 3801 3802 3803

		} elseif {! $item_bool($item)} {
			# String
			if {[regexp -- {-C:(.*)} $item_opts($item) m0 m1]} {
				# Radiobutton select
3804 3805
				set subm $m.radio_cascade$menu_count($case)
				catch {destroy $subm}
3806
				menu $subm -tearoff 0 -font $ffont
3807 3808 3809 3810
				foreach val [split $m1 ","] {
					$subm add radiobutton -label "$val" \
						-command "do_var $item" \
						-value "$val" \
3811
						-font $ffont \
3812 3813 3814
						-variable menu_var($item)
				}
				$m add cascade -label "$item" \
3815
					-font $ffont \
3816 3817 3818 3819 3820
					-menu $subm
				set item_cascade($item) $subm
			} else {
				# Arbitrary_string
				$m add command -label "$item" \
3821
					-font $ffont \
3822 3823 3824 3825
					-command "do_var $item"
			}
			set mvar 1

3826
		} elseif {$item == "simple-gui"} {
3827 3828 3829 3830
			$m add checkbutton -label "$item" \
				-command "toggle_simple_gui" \
				-font $ffont \
				-variable beginner_mode
3831 3832 3833 3834
		} else {
			# Boolean
			$m add checkbutton -label "$item" \
				-command "do_var $item" \
3835
				-font $ffont \
3836
				-variable menu_var($item)
3837 3838 3839
			if {![info exists menu_var($item)]} {
				set menu_var($item) 0
			}
3840 3841
		}

3842 3843 3844 3845 3846 3847 3848 3849
		if {$L_casc_count == -1} {
			incr menu_count($case)
			incr L_casc_count
		} elseif {$L_casc != ""} {
			incr L_casc_count
		} else {
			incr menu_count($case)
		}
3850

3851
		if {$mvar} {
3852 3853 3854
			if {![info exists menu_var($item)]} {
				set menu_var($item) $unset_str
			}
3855 3856 3857
		}
	}

3858
	# Now make the little "(?)" help buttons
3859 3860 3861 3862
	foreach case [array names menu_m] {
		if {$case == "Help"} {
			continue;
		}
3863 3864 3865 3866
		little_qs $menu_m($case);
	}
	foreach m $L_menus {
		little_qs $m
3867
	}
3868 3869
}

3870
proc check_update_vars {} {
3871
	global last_query_all_time query_all_freq icon_mode
3872
	global connected_to_x11vnc client_tail client_sock
3873

3874 3875
	set now [clock seconds]

3876 3877
	set delay $query_all_freq
	if {$client_tail != "" && $client_sock == ""} {
3878 3879
		set delay [expr 2 * $query_all_freq]
	}
3880 3881 3882

	if {$connected_to_x11vnc} {
		set quiet 0
3883
		set refresh [expr "$last_query_all_time + $delay"]
3884 3885 3886 3887 3888

		# puts "menu_posted $now $last_query_all_time"
		# puts "menu_posted $refresh"

		if {$now > $refresh} {
3889
			append_text "Refreshing current settings... "
3890 3891 3892 3893 3894 3895 3896 3897
			query_all $quiet
			if {$quiet} {
				append_text "done\n"
			}
		}
	}
}

3898 3899 3900 3901
proc menu_posted {} {
	check_update_vars
}

3902 3903 3904 3905 3906 3907 3908 3909
proc props_widgets {state} {
	global props_buttons
	foreach w $props_buttons {
		$w configure -state $state	
	}
	update
}

3910 3911 3912 3913 3914 3915
proc props_apply {} {
	global props_accept props_confirm props_viewonly props_shared
	global props_passwd props_viewpasswd
	global prop0_accept prop0_confirm prop0_viewonly prop0_shared
	global prop0_passwd prop0_viewpasswd
	global menu_var
3916
	global client_sock
3917

3918 3919
	props_widgets disabled

3920 3921 3922 3923 3924 3925 3926 3927
	set aft 500
	if {[info exists client_sock]} {
		if {$client_sock != ""} {
			set aft 150
		}
	}
	set did 0

3928
	if {$props_accept != $prop0_accept} {
3929
		if {$did > 0} {after $aft}; incr did
3930 3931 3932 3933 3934 3935 3936 3937 3938
		if {$props_accept} {
			push_new_value "unlock" "unlock" 1 0
		} else {
			push_new_value "lock" "lock" 1 0
		}
		set prop0_accept $props_accept
	}

	if {$props_confirm != $prop0_confirm} {
3939
		if {$did > 0} {after $aft}; incr did
3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953
		if {$props_confirm} {
			push_new_value "accept" "accept" "popup" 1
		} else {
			push_new_value "accept" "accept" "" 1
		}
		if {$menu_var(accept) == "popup"} {
			set props_confirm 1
		} elseif {$menu_var(accept) == ""} {
			set props_confirm 0
		}
		set prop0_confirm $props_confirm
	}

	if {$props_viewonly != $prop0_viewonly} {
3954
		if {$did > 0} {after $aft}; incr did
3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968
		if {$props_viewonly} {
			push_new_value "viewonly" "viewonly" 1 1
		} else {
			push_new_value "viewonly" "noviewonly" 1 1
		}
		if {$menu_var(viewonly)} {
			set props_viewonly 1
		} else {
			set props_viewonly 0
		}
		set prop0_viewonly $props_viewonly
	}

	if {$props_shared != $prop0_shared} {
3969
		if {$did > 0} {after $aft}; incr did
3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982
		if {$props_shared} {
			push_new_value "shared" "shared" 1 1
		} else {
			push_new_value "shared" "noshared" 1 1
		}
		if {$menu_var(shared)} {
			set props_shared 1
		} else {
			set props_shared 0
		}
		set prop0_shared $props_shared
	}

3983
	set fpw 0
3984
	if {$props_passwd != $prop0_passwd} {
3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997
		set fpw 1
	}
	set vpw 0
	if {$props_viewpasswd != $prop0_viewpasswd} {
		set vpw 1
	}

	set pw_ord [list]
	if {!$fpw && !$vpw } {
		# neither change
		;
	} elseif {$fpw && !$vpw} {
		# full password change
3998
		if {$props_passwd == ""} {
3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044
			if {$prop0_viewpasswd != ""} {
				# set view to "" as well and first
				set props_viewpasswd ""
				set pw_ord [list vpw fpw]
			} else {
				set pw_ord [list fpw]
			}
		} else {
			# assume view state OK
			set pw_ord [list fpw]
		}
		
	} elseif {!$fpw && $vpw} {
		# view password change
		if {$props_viewpasswd == ""} {
			# assume full state OK
			set pw_ord [list vpw]
		} else {
			if {$prop0_passwd == ""} {
				# could be trouble, x11vnc makes random
				# full passwd...
				set pw_ord [list vpw]
			} else {
				# OK, full non-null.
				set pw_ord [list vpw]
			}
		}
	} elseif {$fpw && $vpw} {
		# both full and view password change
		if {$props_passwd == "" && $props_viewpasswd == ""} {
			# OK, do view first
			set pw_ord [list vpw fpw]
		} elseif {$props_passwd == "" && $props_viewpasswd != ""} {
			# Not good, do view first anyway x11vnc will fix.
			set pw_ord [list vpw fpw]
		} elseif {$props_passwd != "" && $props_viewpasswd == ""} {
			# OK, view first
			set pw_ord [list vpw fpw]
		} elseif {$props_passwd != "" && $props_viewpasswd != ""} {
			# OK, full first
			set pw_ord [list fpw vpw]
		}
	}

	foreach case $pw_ord {
		if {$case == "fpw"} {
4045
			if {$did > 0} {after $aft}; incr did
4046 4047 4048 4049
			push_new_value "passwd" "passwd" "$props_passwd" 1
			set prop0_passwd $props_passwd
		}
		if {$case == "vpw"} {
4050
			if {$did > 0} {after $aft}; incr did
4051 4052
			push_new_value "viewpasswd" "viewpasswd" "$props_viewpasswd" 1
			set prop0_viewpasswd $props_viewpasswd
4053 4054 4055
		}
	}

4056
	props_widgets normal
4057 4058 4059
}

proc props_advanced {} {
4060
	global icon_mode icon_win props_win full_win
4061 4062 4063 4064 4065 4066 4067 4068 4069
	global props_advanced_first

	if ![info exists props_advanced_first] {
		center_win $full_win
		set props_advanced_first 1
		set first 1
	} else {
		set first 0
	}
4070
	update
4071 4072 4073 4074 4075 4076 4077 4078 4079
	wm deiconify $full_win
	update

	if {$first} {
		set w $full_win
		wm minsize $w [winfo width $w] [winfo height $w]
	}
}

4080
proc do_props {{msg ""}} {
4081 4082 4083 4084 4085 4086
	global props_accept props_confirm props_viewonly props_shared
	global props_passwd props_viewpasswd
	global prop0_accept prop0_confirm prop0_viewonly prop0_shared
	global prop0_passwd prop0_viewpasswd
	global menu_var unset_str
	global have_labelframes ffont bfont
4087
	global props_buttons icon_noadvanced
4088
	global icon_mode icon_mode_at_startup
4089
	global screen_height screen_width
4090

4091 4092
	check_update_vars

4093 4094 4095 4096 4097
	set pady 1m
	if {$screen_height <= 360} {
		set pady 0m
	}

4098 4099 4100 4101 4102 4103 4104 4105
	if [info exists menu_var(deny)] {
		if {$menu_var(deny) == $unset_str || $menu_var(deny) == 0} {
			set props_accept 1
		} else {
			set props_accept 0
		}
	} else {
		set menu_var(deny) 0
4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159
		set props_accept 1
	}
	set prop0_accept $props_accept

	if [info exists menu_var(accept)] {
		if {$menu_var(accept) == $unset_str || $menu_var(accept) == ""} {
			set props_confirm 0
		} else {
			set props_confirm 1
		}
	} else {
		set menu_var(accept) ""
		set props_confirm 0
	}
	set prop0_confirm $props_confirm

	if [info exists menu_var(viewonly)] {
		if {$menu_var(viewonly) == $unset_str || $menu_var(viewonly) == ""} {
			set props_viewonly 0
		} elseif ($menu_var(viewonly)) {
			set props_viewonly 1
		} else {
			set props_viewonly 0
		}
	} else {
		set menu_var(viewonly) 0
		set props_viewonly 0
	}
	set prop0_viewonly $props_viewonly

	if [info exists menu_var(shared)] {
		if {$menu_var(shared) == $unset_str || $menu_var(shared) == ""} {
			set props_shared 0
		} elseif ($menu_var(shared)) {
			set props_shared 1
		} else {
			set props_shared 0
		}
	} else {
		set menu_var(shared) 0
		set props_shared 0
	}
	set prop0_shared $props_shared

	if ![info exists props_passwd] {
		set props_passwd ""
	}
	set prop0_passwd $props_passwd

	if ![info exists props_viewpasswd] {
		set props_viewpasswd ""
	}
	set prop0_viewpasswd $props_viewpasswd

4160 4161 4162 4163 4164
	if [info exists props_buttons] {
		catch {unset props_buttons}
	}
	set props_buttons [list]

4165 4166 4167
	set w .props
	catch {destroy $w}
	toplevel $w
4168
	wm title $w "x11vnc Properties"
4169 4170 4171 4172 4173 4174
	set b1 "$w.buttons1"
	frame $b1
	button $b1.ok -text OK -command "props_apply; destroy $w" -font $bfont
	button $b1.cancel -text Cancel -command "destroy $w" -font $bfont
	button $b1.apply  -text Apply -command "props_apply" -font $bfont

4175 4176
	bind $w <KeyPress-Escape> "destroy $w"

4177
	pack $b1.apply $b1.cancel $b1.ok -side right -expand 1
4178
	lappend props_buttons $b1.apply $b1.cancel $b1.ok
4179 4180 4181 4182 4183 4184

	set b2 "$w.buttons2"
	frame $b2

	button $b2.advanced -text "Advanced ..." \
		-command "destroy $w; props_advanced" -font $bfont
4185 4186 4187 4188 4189
	if {! $icon_noadvanced} {
		lappend props_buttons $b2.advanced
		pack $b2.advanced -side right -expand 1
	}

4190
	button $b2.help -text "Help ..." -command "menu_help Properties" -font $bfont
4191 4192
	lappend props_buttons $b2.help
	pack $b2.help -side right -expand 1
4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203

	set vp "$w.viewpw"
	if {$have_labelframes} {
		labelframe $vp -text "ViewOnly Password" -font $bfont
	} else {
		frame $vp
		set l $vp.l
		label $l -text "ViewOnly Password:" -justify left -anchor w -font $bfont
		pack $vp.l -fill x -expand 1 -padx 1m -pady 0m -side top
	}
	entry $vp.e -show "*" -textvariable props_viewpasswd -font $bfont
4204
	pack $vp.e -fill x -expand 1 -padx 1m -pady $pady -side top
4205

4206

4207 4208
	lappend props_buttons $vp.e

4209 4210 4211 4212 4213 4214 4215 4216 4217 4218
	set pw "$w.passwd"
	if {$have_labelframes} {
		labelframe $pw -text "Password" -font $bfont
	} else {
		frame $pw
		set l $pw.l
		label $l -text "Password:" -justify left -anchor w -font $bfont
		pack $pw.l -fill x -expand 1 -padx 1m -pady 0m -side top
	}
	entry $pw.e -show "*" -textvariable props_passwd -font $bfont
4219
	pack $pw.e -fill x -expand 1 -padx 1m -pady $pady -side top
4220

4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231
	if {! $icon_mode_at_startup} {
		$vp.e configure -state disabled
		catch {$vp.l configure -state disabled}
		catch {$vp configure -state disabled}
		catch {$vp configure -foreground grey60}
		$pw.e configure -state disabled
		catch {$pw.l configure -state disabled}
		catch {$pw configure -state disabled}
		catch {$pw configure -foreground grey60}
	}

4232 4233
	lappend props_buttons $pw.e

4234 4235 4236 4237
	set sh "$w.shared"
	frame $sh
	checkbutton $sh.button -text "Shared" \
		-variable props_shared -anchor w -font $bfont
4238
	pack $sh.button -fill x -expand 1 -padx 1m -pady $pady
4239 4240 4241 4242 4243

	set vo "$w.viewonly"
	frame $vo
	checkbutton $vo.button -text "All Clients ViewOnly" \
		-variable props_viewonly -anchor w -font $bfont
4244
	pack $vo.button -fill x -expand 1 -padx 1m -pady $pady
4245 4246 4247 4248 4249

	set cf "$w.confirm"
	frame $cf
	checkbutton $cf.button -text "Ask for Confirmation" \
		-variable props_confirm -anchor w -font $bfont
4250
	pack $cf.button -fill x -expand 1 -padx 1m -pady $pady
4251 4252 4253 4254 4255

	set ac "$w.accept"
	frame $ac
	checkbutton $ac.button -text "Accept Connections" \
		-variable props_accept -anchor w -font $bfont
4256
	pack $ac.button -fill x -expand 1 -padx 1m -pady $pady
4257

4258
	set px "6m"
4259 4260 4261 4262
	pack $b1 -side bottom -fill x -pady $pady -padx $px
	pack $b2 -side bottom -fill x -pady $pady -padx $px
	pack $vp -side bottom -fill x -pady $pady -padx $px
	pack $pw -side bottom -fill x -pady $pady -padx $px
4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274
	pack $sh -side bottom -fill x -pady 0m -padx $px
	pack $vo -side bottom -fill x -pady 0m -padx $px
	pack $cf -side bottom -fill x -pady 0m -padx $px
	pack $ac -side bottom -fill x -pady 0m -padx $px

	if {$msg != ""} {
		set tw [textwidth $msg]
		set th [textheight $msg]
		set th [expr $th - 1]
		set ms "$w.msg"
		text $ms -font $ffont -relief ridge -width $tw -height $th
		$ms insert 1.0 $msg
4275 4276
		pack $ms -side bottom -fill x -pady $pady -padx $px
		update
4277 4278 4279
	}

	lappend props_buttons $ac.button $cf.button $vo.button $sh.button
4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298

	wm resizable $w 1 0
	center_win $w
	update
	wm minsize $w [winfo width $w] [winfo height $w]

	tkwait window $w
}

proc do_new_client {} {
	global newclient ffont bfont

	set w .newclient
	catch {destroy $w}
	toplevel $w
	label $w.l -text "Hostname: " -font $bfont
	set newclient ""
	entry $w.e -width 16 -textvariable newclient -font $bfont 
	button $w.b -text OK -command "destroy $w" -font $bfont
4299
	button $w.h -text Help -command "menu_help NewClient" -font $bfont
4300 4301
	bind $w.e <Return> "update; after 100; destroy $w"

4302 4303
	wm title $w "New Client"

4304
	pack $w.l $w.e $w.h $w.b -side left -pady 1m -padx 0.5m
4305 4306 4307 4308 4309 4310
	focus $w.e
	center_win $w
	update 
	
	tkwait window $w

4311 4312
	regsub -all {[{}()~!$&*|;'"`{}<>\[\]]} $newclient "" newclient
	#'
4313 4314 4315 4316 4317 4318 4319 4320 4321
	if {$newclient != ""} {
		push_new_value "connect" "connect" "$newclient" 1
	}
}

proc do_disconnect_all {} {
	push_new_value "disconnect" "disconnect" "all" 1
}

4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352
proc do_disconnect_client {id} {
	push_new_value "disconnect" "disconnect" "$id" 1
}

proc popup_post {m} {
	global popup_cascade_posted client_balloon
	global client_id_list

	set popup_cascade_posted 0
	
	set wd "$m.disconnect"

	if {![winfo exists $wd]} {
		return
	}

	catch {$wd delete 0 end}

	$wd add command -label "Disconnect client:"
	$wd add separator
	$wd add command -label "All Clients" -command do_disconnect_all

	if {![info exists client_id_list]} {
		return
	}

	foreach client $client_id_list {
		if {$client == ""} {
			continue
		}
		if {[regexp {^([^:]*):(.*)$} $client mat id lab]} {
4353 4354
			set nid [expr "$id + 0"]
			$wd add command -label "$nid $lab" \
4355 4356 4357 4358 4359
				-command "do_disconnect_client $id"
		}
	}
}

4360
proc pmenu {m x y} {
4361 4362 4363
	if {![winfo exists $m]} {
		return
	}
4364 4365 4366
	set x [expr $x-10]
	set y [expr $y-10]
	$m post $x $y
4367 4368
	# XXX more care needed
	grab set -global $m
4369 4370 4371 4372
}

proc set_client_balloon {str} {
	global client_balloon vnc_display
4373 4374 4375
	global client_id_list

	set client_id_list [list]
4376 4377 4378
	
	set client_balloon "$vnc_display"
	set count 0
4379 4380 4381
	regsub -all {^.*aro=clients:} $str "" str
	regsub -all {aro=.*$} $str "" str
	regsub -all {ans=.*$} $str "" str
4382
	foreach client [split $str ","] {
4383 4384 4385 4386 4387 4388
		#puts "client: $client"
		if [regexp {^[ 	]*$} $client] {
			continue
		}
		if {[regexp {^(.*):(.*):(.*):(.*):(.*):(.*):(.*):(.*):(.*)$} \
		    $client m0 m1 m2 m3 m4 m5 m6 m7 m8 m9]} {
4389
			set id    $m1
4390
			set nid   [expr "$m1 + 0"]
4391 4392 4393
			set ip    $m2
			set port  $m3
			set user  $m4
4394
			set unix  $m5
4395 4396 4397 4398 4399
			if {[string length $user] >= 24} {
				# weird identd hash...
				set user [string range $user 0 8]
				set user "${user}..."
			}
4400 4401 4402 4403 4404 4405 4406
			if {$unix != "" && $unix != "none"} {
				set user $unix
			}
			set host  $m6
			set input $m7
			set vo    $m8
			set ltime $m9
4407 4408 4409
			if [regexp {^[ 	]*$} $host] {
				set host $ip
			}
4410
			set client_balloon "${client_balloon}\n$nid $user\@$host"
4411 4412
			if {$vo == "1"} {
				set client_balloon "${client_balloon} - view"
4413
				lappend client_id_list "$id:$user\@$host - view"
4414 4415
			} else {
				set client_balloon "${client_balloon} - full"
4416
				lappend client_id_list "$id:$user\@$host - full"
4417 4418 4419
			}
		} else {
			set i [expr $count+1]
4420 4421 4422
			if {$i == 1} {
				set client_balloon "${client_balloon}\nunknown-host$i"
			}
4423 4424 4425 4426 4427 4428 4429 4430 4431
		}
		incr count
	}
	if {$count == 0} {
		set client_balloon "${client_balloon}\nNo connections."
	}
	icon_win_cfg $count
}

4432 4433 4434
proc read_client_info {channel} {
	global x11vnc_client_file client_str client_info_read
	global read_client_info_lock
4435 4436
	set db 0

4437 4438 4439 4440 4441 4442 4443 4444 4445 4446
	if {![info exists read_client_info_lock]} {
		set read_client_info_lock 0
	}

	if {$channel != ""} {

		if {$read_client_info_lock} {
			return
		}
		set read_client_info_lock 1
4447 4448
		after 100
		set str ""
4449 4450
		set count [gets $channel str]
		if {$db} {puts stderr "read_client_info-$channel: $str"}
4451

4452 4453
		if {$count == -1 || [eof $channel]} {
			close $channel
4454
			catch {file delete $x11vnc_client_file}
4455
			set read_client_info_lock 0
4456 4457 4458
			clean_icon_exit
		}
		if {$count > 0 && ![regexp {^[ 	]*$} $str]} {
4459
			set client_info_read 1
4460 4461
			if {$str == "quit"} {
				catch {file delete $x11vnc_client_file}
4462
				set read_client_info_lock 0
4463
				clean_icon_exit
4464 4465 4466 4467
			} elseif {$str == "skip"} {
				;
			} elseif [regexp {^clients:} $str] {
				regsub {^clients:} $str "" str
4468 4469 4470 4471 4472 4473 4474 4475
				if {$str == "none"} {
					set str ""
				}
				update_clients_menu $str
				set client_str $str
				set_client_balloon $str
			}
		}
4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492
		set read_client_info_lock 0
	}
}

proc read_client_tail {} {
	global client_tail

	if {$client_tail != ""} {
		read_client_info $client_tail
	}
}

proc read_client_sock {} {
	global client_sock

	if {$client_sock != ""} {
		read_client_info $client_sock
4493 4494 4495 4496
	}
}

proc show_client_balloon {} {
4497
	global icon_mode icon_win props_win full_win
4498
	global client_balloon ffont connected_to_x11vnc
4499

4500 4501
	set noinfo "tkx11vnc: no client information"
	set noinfo "$noinfo\navailable from x11vnc ..."
4502
	if ![info exists client_balloon] {
4503
		set client_balloon $noinfo
4504 4505
	}
	if {$client_balloon == ""} {
4506
		set client_balloon $noinfo
4507 4508 4509 4510 4511
	}

	set x [expr [winfo rootx $icon_win] + ([winfo width $icon_win]/2)]
	set y [expr [winfo rooty $icon_win] + [winfo height $icon_win] + 4]

4512 4513 4514 4515 4516
	set infotext $client_balloon
	if {!$connected_to_x11vnc} {
		set infotext "Not currently attached to x11vnc\nLast available info:\n$infotext"
	}

4517 4518 4519 4520
	set w .client_balloon
	catch {destroy $w}
	toplevel $w -bg black -screen [winfo screen $icon_win]
	wm overrideredirect $w 1
4521
	label $w.l -text "$infotext" -relief flat -bg "#ffffaa" -fg black \
4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553
		-padx 2 -pady 0 -anchor w -justify left -font $ffont
	pack $w.l -side left -padx 1 -pady 1

	set w2 [winfo reqwidth  $w.l]
	set h2 [winfo reqheight $w.l]

	set W [winfo screenwidth  $w]
	set H [winfo screenheight $w]

	if {[expr $x+$w2] > $W} {
		set w3 [winfo width $icon_win]
		set x [expr "$W - $w2 - $w3 - 4"] 
	}
	if {[expr $y+$h2] > $H} {
		set h3 [winfo height $icon_win]
		set y [expr "$H - $h2 - $h3 - 4"] 
	}

	wm geometry $w +${x}+${y}
}

proc kill_client_balloon {} {
	global client_balloon_id client_balloon_win
	if [info exists client_balloon_id] {
		catch {after cancel $client_balloon_id}
	}
	if [winfo exists .client_balloon] {
		destroy .client_balloon
	}
}

proc icon_win_cfg {clients} {
4554 4555 4556 4557 4558 4559 4560 4561
	global icon_win client_tail client_sock client_info_read

	if {![info exists icon_win]} {
		return
	}
	if {$icon_win == ""} {
		return
	}
4562 4563 4564 4565 4566
	if {$clients > 0} {
		$icon_win configure -bg black -fg white
	} else {
		$icon_win configure -bg white -fg black
	}
4567 4568 4569 4570 4571

	if {$client_tail == "" || !$client_info_read} {
		if {$client_sock == ""} {
			$icon_win configure -fg red
		}
4572 4573 4574 4575 4576
	}
}

proc server_accept {sock addr port} {
	global socket_cookie server socket_got_callback
4577
	global client_tail client_sock
4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590
	set db 0

	if {$db} {puts stderr "sock=$sock addr=$addr port=$port"}

	update; update idletasks
	after 50
	update; update idletasks
	set count [gets $sock str]

	if {$count >= 0} {
		set str [string trim $str]
		if {$db} {puts stderr "server_accept: \"$str\""}
		if {$str == "COOKIE:$socket_cookie"} {
4591 4592
			set client_sock $sock
			if {$db} {puts stderr "cookie matched. $client_sock"}
4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603
		} else {
			if {$db} {puts stderr "cookie NO matched."}
		}
	}
	catch {close $server}
	set socket_got_callback 1
	if {$db} {puts stderr "socket_got_callback $socket_got_callback"}
}

proc try_client_info_sock {} {
	global socket_cookie server socket_got_callback
4604 4605 4606 4607
	global x11vnc_started x11vnc_xdisplay hostname client_sock
	global x11vnc_xdisplay0 menu_var

	set db 0
4608
#dtime t1
4609 4610 4611 4612
	set start 13037
	set tries 100
	set socket_got_callback 0

4613 4614 4615 4616 4617 4618 4619 4620 4621 4622
	set xd $x11vnc_xdisplay
	if {$xd == "" && $x11vnc_xdisplay0 != ""} {
		set xd $x11vnc_xdisplay0
	}
	if {$xd == "" && [info exists menu_var(display)]} {
		set xd $menu_var(display)
	}

	set myaddr ""
	regsub {\..*$} $hostname "" shost
4623 4624
	if {$x11vnc_started} {
		set myaddr "127.0.0.1"
4625 4626 4627 4628 4629 4630 4631 4632 4633 4634
	} elseif {$xd != ""} {
		if {[regexp {^:} $xd]} {
			set myaddr "127.0.0.1"
		} elseif {[regexp -nocase "^$shost" $xd]} {
			set myaddr "127.0.0.1"
		} elseif {[regexp -nocase "^localhost" $xd]} {
			set myaddr "127.0.0.1"
		} else {
			set myaddr $hostname
		}
4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658
	} else {
		set myaddr $hostname
	}
	
	for {set i 0} {$i <= $tries} {incr i} {
		set port [expr $start + $i]
		set server [socket -server server_accept -myaddr $myaddr $port]
		if {$server == ""} {
			continue
		}
		if {[eof $server]} {
			continue
		}
		set err ""
		catch {set err [fconfigure $server -error]}
		#puts "err: $server: $err"
		if {$err == ""} {
			break
		}
	}
	if {$server == ""} {
		append_text "try_client_info_sock: server socket failed.\n"
		return
	}
4659 4660 4661 4662 4663 4664
	if {! $x11vnc_started} {
		run_remote_cmd [list "-nosync" "-R" "noop"]
		if {$db} {dtime A}
		after 250
		if {$db} {dtime A}
	}
4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680

	# set the cookie to some obscured randomness
	set socket_cookie [clock clicks]
	set r [expr rand()]
	if {$r != ""} {
		append socket_cookie $r
	}
	set r ""
	catch {set r [winfo id .]}
	if {$r != ""} {
		append socket_cookie $r
	}
	if {[regexp {([0-9])([0-9])$} [clock clicks] m m1 m2]} {
		regsub -all {\.} $socket_cookie $m1 socket_cookie
		regsub -all {x}  $socket_cookie $m2 socket_cookie
	}
4681 4682
	run_remote_cmd [list "-nosync" "-R" \
		"client_info_sock:$myaddr:$port:$socket_cookie"]
4683
#dtime t2
4684
	if {$db} {puts "client_info_sock:$myaddr:$port:$socket_cookie"}
4685 4686 4687 4688 4689 4690 4691 4692 4693 4694
	for {set i 0} {$i < 10} {incr i} {
		after 50
		update; update idletasks
#dtime aa
		if {$socket_got_callback != 0} {
#puts "break-"
			break
		}
	}
#dtime t3
4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709

	set aftid ""
	if {$socket_got_callback == 0} {
		set aftid [after 10000 {set socket_got_callback 2}]
		tkwait variable socket_got_callback
	}

	if {$aftid != ""} {
		catch {after cancel $aftid}
	}

	if {$socket_got_callback != 1} {
		puts stderr "try_client_info_sock failed: no callback\n"
		catch {close $server}
	} else {
4710
		setup_client_sock 1
4711
	}
4712
#dtime t4
4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740
}

proc set_icon_label {} {
	global icon_win

	set lab [get_icon_label]
	
	if {[info exists icon_win]} {
		$icon_win configure -text $lab
	}
}

proc get_icon_label {{set 0}} {
	global icon_minimal 

	set lab0 "x11\nvnc"
	
	if {$icon_minimal} {
		set lab [get_vnc_display_number]
		if {$lab != "none"} {
			set lab "  :$lab"
		}
	} else {
		set lab $lab0
	}
	return $lab
}

4741
# currently unused
4742
proc lmenu {menu} {
4743
	global popup_cascade_posted
4744 4745
	global left_iconwin_menu
	set left_iconwin_menu 1
4746
	after 100
4747 4748 4749 4750 4751 4752 4753
	update
	if {!$popup_cascade_posted && $left_iconwin_menu} {
		for {set i 0} {$i < 3} {incr i} {
			after 100
			update
		}
		if {!$popup_cascade_posted && $left_iconwin_menu} {
4754 4755 4756 4757 4758
			$menu unpost
			return
		}
	}
	# kludge for WindowView
4759 4760 4761
	if {$popup_cascade_posted} {
		focus $menu
	}
4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779
}

proc old_balloon {} {
	global client_str saved_client_str
	set str ""
	if {[info exists client_str]} {
		if {$client_str != ""} {
			set str $client_str
		}
	}
	if {$str == ""} {
		if {[info exists saved_client_str]} {
			set str $saved_client_str
		}
	}
	if {$str != ""} {
		set_client_balloon $str
	}
4780 4781
}

4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853
proc get_custom_menu_items {} {
	global env custom_last_read

	if {![info exists custom_last_read]} {
		set custom_last_read 0
	}
	if {[info exists env(X11VNC_CUSTOM_GUI)]} {
		set custom "$env(X11VNC_CUSTOM_GUI)"
	} elseif {![info exists env(HOME)]} {
		return [list "none"]
	} else {
		set custom "$env(HOME)/.x11vnc.gui"
	}
	if {![file exists $custom]} {
		return [list "none"]
	}

#	if {[file mtime $custom] <= $custom_last_read} {
#		return [list "nochange"]
#	}

	set in ""
	catch {set in [open $custom "r"]} 
	if {$in == ""} {
		return [list "none"]
	}

	set custom_last_read [clock seconds]

	set count 0
	while {[gets $in line] > -1} {
		if {[regexp {^[ \t]*#} $line]} {
			continue
		}
		set line [string trim $line]
		if {$line != ""} {
			lappend items $line
			incr count
		}
	}
	close $in
	
	if {$count > 0} {
		return $items
	} else {
		return [list "none"]
	}
}

proc make_custom_menu {menu font} {
	set items [get_custom_menu_items]
	set i0 [lindex $items 0]
	catch {$menu delete 0 end}
	if {$i0 != "none"} {
		$menu add command -font $font -label "Custom items:"
		$menu add separator
		foreach item $items {
			if {$item == "sep" || $item == "separator"} {
				$menu add separator
				continue
			}
			if {[regexp {^action:(.*)$} $item m action]} {
				$menu add command -font $font -label "$action" \
				    -command "do_var $action"
				continue
			}
			$menu add command -font $font -label "$item" \
		 	    -command "run_remote_cmd \[list \"-R\" \"$item\"\]"
		}
	}
}

4854
proc make_icon {} {
4855 4856
	global icon_mode icon_embed_id icon_win props_win full_win
	global tray_embed tray_running env
4857
	global x11vnc_client_file client_tail client_sock client_str saved_clients_str
4858
	global client_balloon_id
4859
	global bfont sfont snfont ffont
4860
	global icon_minimal gui_start_mode
4861
	global popup_cascade_posted menu_var x11vnc_gui_geom
4862 4863
	set min_x 24
	set min_y 24
4864
	
4865
	set font $bfont
4866 4867
	set mfont $font

4868 4869
	if {$tray_embed} {
		set font $sfont
4870
		set mfont $snfont
4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883
	}
	if {[info exists env(X11VNC_ICON_FONT)]} {
		set font $env(X11VNC_ICON_FONT)
	}
	if {[regexp {([0-9][0-9]*)x([0-9][0-9]*)} $x11vnc_gui_geom m mx my]} {
		if {$mx < $min_x} {
			set min_x $mx
		}
		if {$my < $min_y} {
			set min_y $my
		}
	}
	wm minsize . $min_x $min_y
4884

4885 4886 4887 4888 4889
	if {$tray_embed && $tray_running} {
		wm withdraw .
	}

	set l .icon
4890
	set icon_win $l
4891 4892 4893 4894 4895 4896 4897 4898
	catch destroy {$icon_win}
	if {$icon_minimal} {
		set bw 1
	} else {
		set bw 5
	}
	set lab [get_icon_label]
	label $l -text $lab -borderwidth $bw -font $font
4899 4900
	icon_win_cfg 0

4901

4902
	set popup_cascade_posted 0
4903
	pack $l -fill both -expand 1
4904
	set menu "$l.menu"
4905
	menu $menu -tearoff 0 -postcommand "popup_post $menu"
4906 4907
	$menu add command -font $mfont -label "Properties" -command do_props
	$menu add command -font $mfont -label "Help" -command "menu_help Tray"
4908
	$menu add separator
4909
	$menu add command -font $mfont -label "New Client" -command do_new_client
4910 4911 4912 4913 4914 4915 4916 4917 4918 4919

	set wd "$menu.disconnect"
	catch {destroy $wd}
	menu $wd -tearoff 0 -font $ffont \
		-postcommand {set popup_cascade_posted 1}
	$wd add command -label "Disconnect client:"
	$wd add separator
	$wd add command -label "All Clients" -command do_disconnect_all
	$menu add cascade -font $mfont -label "Disconnect:" -menu $wd

4920 4921
	$menu add separator

4922
	set wv "$menu.windowview"
4923 4924
	catch {destroy $wv}
	menu $wv -tearoff 0 -font $ffont \
4925
		-postcommand {set popup_cascade_posted 1}
4926 4927 4928 4929 4930
	foreach val {full icon tray} {
		$wv add radiobutton -label "$val" \
			-value "$val" -font $ffont \
			-command "do_var WindowView" \
			-variable menu_var(WindowView)
4931
	}
4932
	$menu add cascade -font $mfont -label "Window View:" -menu $wv
4933

4934
	$menu add command -font $mfont -label "Stop x11vnc" -command clean_icon_exit
4935

4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948
	set items [get_custom_menu_items]
	set i0 [lindex $items 0]
	if {$i0 != "none" && $i0 != "nochange"} {
		$menu add separator
		set cm "$menu.custom"
		catch {destroy $cm}
		menu $cm -tearoff 0 -font $ffont \
			-postcommand "set popup_cascade_posted 1; make_custom_menu $cm $ffont"
		$menu add cascade -font $mfont -label "Custom:" -menu $cm
	}

	bind $icon_win <ButtonRelease-1> "pmenu $menu %X %Y"
	bind $icon_win <ButtonRelease-3> "pmenu $menu %X %Y"
4949 4950 4951
	bind $icon_win <Enter> {set client_balloon_id [after 500 show_client_balloon]}
	bind $icon_win <Button> {kill_client_balloon}
	bind $icon_win <Leave>  {kill_client_balloon}
4952
	bind $icon_win <ButtonPress-2> {kill_client_balloon; show_client_balloon}
4953 4954
#	bind $menu <Leave> "lmenu $menu"
#	bind $menu <Enter> "set left_iconwin_menu 0"
4955 4956 4957
##	bind $menu <KeyPress-Escape> "$menu unpost"

	bind . <Control-KeyPress-c> {destroy .; exit 0}
4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972

	if {!$tray_embed || !$tray_running} {
		global x11vnc_gui_geom
		if {$x11vnc_gui_geom != ""} {
			set doit 1
			if {[regexp {x} $x11vnc_gui_geom]} {
				if {$gui_start_mode == "full"} {
					set doit 0
				}
			} 
			if {$doit} {
				wm geometry . $x11vnc_gui_geom
			}
		}
	}
4973 4974
	wm iconname . "tkx11vnc"
	wm title . "tkx11vnc"
4975
	update
4976
	wm deiconify .
4977
	update
4978

4979 4980 4981 4982 4983 4984 4985 4986
	old_balloon
}

proc setup_client_channel {} {
	global client_sock client_tail

# XXX/setup_client_channel
	if {$client_sock == "" } {
4987 4988
		stop_watch on
		try_client_info_sock
4989
		if {$client_sock == "" } {
4990 4991 4992 4993 4994
			after 500
			try_client_info_sock
		}
		stop_watch off
	}
4995
	if {$client_tail == "" && $client_sock == ""} {
4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009
		set m "\n"
		set m "${m}tkx11vnc:\n"
		set m "${m}\n"
		set m "${m}    Warning -- running in icon/tray mode but the\n"
		set m "${m}    connected client info channel from x11vnc is\n"
		set m "${m}    not working.  The viewer client list and icon\n"
		set m "${m}    color indicator will not be accurate.\n"
		set m "${m}\n"
		set m "${m}    You may need to restart \"x11vnc -gui tray ...\"\n"
		set m "${m}    for this to work properly.\n"
		set m "${m}\n"
		textwin "Warning" "Warning" $m
		update
	}
5010 5011
}

5012
proc clean_client_tail {} {
5013
	global client_tail client_info_read
5014 5015
	if [info exists client_tail] {
		if {$client_tail != ""} {
5016 5017
			set p ""
			catch {set p [pid $client_tail]}
5018 5019 5020 5021 5022 5023 5024
			if {$p != ""} {
				catch {exec kill -TERM $p >/dev/null 2>/dev/null}
			}
			catch {close $client_tail}
			set client_tail ""
		}
	}
5025
	set client_info_read 0
5026 5027 5028 5029
}

proc clean_icon_exit {} {
	clean_client_tail
5030 5031 5032 5033 5034 5035 5036
	push_new_value "stop" "stop" 1 0
	set_connected no
	update
	destroy .
	exit
}

5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066
proc make_gui {mode} {
	global icon_mode tray_embed full_win icon_win
	global top_widget_names x11vnc_gui_geom
	global gui_current_state make_gui_count
	global x11vnc_connect connected_to_x11vnc
	global x11_display
	global gui_start_mode

	incr make_gui_count

	if {$gui_start_mode == ""} {
		set gui_start_mode $mode
	}

	wm withdraw .

	set full_geom ""
	if {[winfo exists .full]} {
		catch {set full_geom [wm geometry .full]}
	}

	set fw .full
	set full_win $fw
	catch {pack forget $full_win}
	catch {pack forget $icon_win}
	catch {destroy $full_win}
	catch {destroy $icon_win}

	wm minsize . 1 1

5067 5068
	set gui_current_state ""

5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116
	if {$mode == "full"} {
		frame $fw
		set icon_mode 0

		wm protocol .     WM_DELETE_WINDOW "destroy .; exit"
		make_widgets $fw

		set w "."
		wm geometry $w ""
		if {$x11vnc_gui_geom != ""} {
			set doit 1
			if {[regexp {x} $x11vnc_gui_geom]} {
				if {$gui_start_mode != $mode} {
					set doit 0
				}
			}
			if {$doit} {
				wm geometry $w $x11vnc_gui_geom
			}
		}
		pack $fw -fill both -expand 1

	} elseif {$mode == "icon" || $mode == "tray"} {

		toplevel $fw
		wm withdraw $fw

		wm protocol $fw WM_DELETE_WINDOW "wm withdraw .full"
		wm protocol .   WM_DELETE_WINDOW "clean_icon_exit"
		
		if {$mode == "icon"} {
			set tray_embed 0
		} elseif {$mode == "tray"} {
			set tray_embed 1
		}
		set icon_mode 1
		make_widgets $fw
		set w $fw
		make_icon
		wm geometry $fw ""
		wm geometry .   ""
	} else {
		return
	}
	set_view_variable $mode
	set gui_current_state $mode


5117
	update
5118 5119 5120 5121 5122 5123 5124
	wm deiconify .
	update idletasks
	wm minsize $w [winfo width $w] [winfo height $w]
	if {$mode == "full" && $make_gui_count > 1} {
		center_win .
	}

5125

5126
	if {$make_gui_count == 1} {
5127
		copy_default_vars
5128 5129
		if {$x11vnc_connect} {
			try_connect_and_query_all
5130 5131
		} else {
			insert_cmdline_vars
5132 5133 5134 5135
		}
	} else {
		set_name "RESTORE"
	}
5136 5137 5138

	setup_client_tail

5139 5140
	set_widgets

5141 5142
	if {$mode == "tray"} {
		setup_tray_embed
5143 5144 5145 5146 5147
	}
}

proc make_widgets {top} {
	global template make_gui_count
5148
	global menu_b menu_m menu_count
5149
	global item_opts item_bool item_case item_menu item_entry menu_var unset_str
5150 5151
	global item_cascade
	global info_label info_str x11_display vnc_display
5152
	global text_area text_area_str
5153 5154 5155 5156
	global entry_box entry_str entry_set entry_label entry_ok entry_browse
	global entry_help entry_skip
	global bfont ffont beginner_mode
	global helptext helpremote helplabel
5157 5158
	global icon_mode icon_win props_win full_win
	global top_widget_names
5159
	global screen_height screen_width
5160

5161 5162 5163

	# Make the top label
	set label_width 80
5164 5165 5166
	if {$screen_width <= 400} {
		set label_width 64
	}
5167
	set info_label "$top.info"
5168 5169 5170 5171
	label $info_label -textvariable info_str -bd 2 -relief groove \
		-anchor w -width $label_width -font $ffont
	pack $info_label -side top -fill x -expand 0

5172 5173
	set top_widget_names(info) $info_label

5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205
	# Extract the Rows:
	set row 0;
	set colmax 0;
	foreach line [split $template "\n"] {
		if {[regexp {^Row: (.*)} $line rest]} {
			set col 0
			foreach case [split $rest] {
				if {$case == "" || $case == "Row:"} {
					continue
				}
				set menu_row($case) $row
				set menu_col($case) $col

				lappend cases($col) $case;
				set len [string length $case]
				if {[info exists max_len($col)]} {
					if {$len > $max_len($col)} {
						set max_len($col) $len
					}
				} else {
					set max_len($col) $len
				}
				incr col
				if {$col > $colmax} {
					set colmax $col
				}
			}
			incr row;
		}
	}

	# Make frames for the rows and make the menu buttons.
5206
	set f "$top.menuframe"
5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230
	frame $f
	for {set c 0} {$c < $colmax} {incr c} {
		set colf "$f.menuframe$c"
		frame $colf
		pack $colf -side left -fill y
		set fbg [$colf cget -background]
		foreach case $cases($c) {
			set menub "$colf.menu$case";
			set menu "$colf.menu$case.menu";
			set menu_b($case) $menub
			set menu_m($case) $menu
			set ul 0
			foreach char [split $case ""] {
				set char [string tolower $char]
				if {![info exists underlined($char)]} {
					set underlined($char) 1
					break
				}
				incr ul
			}
			menubutton $menub -text "$case" -underline $ul \
				-anchor w -menu $menu -background $fbg \
				-font $bfont
			pack $menub -side top -fill x
5231
			menu $menu -tearoff 0 -postcommand menu_posted
5232 5233 5234
		}
	}
	pack $f -side top -fill x
5235
	set top_widget_names(menuframe) $f
5236 5237

	make_menu_items
5238 5239

	# Make the x11 and vnc display label bar:
5240
	set df "$top.displayframe"
5241
	frame $df -bd 1 -relief groove
5242
	set top_widget_names(displayframe) $df
5243 5244

	set df_x11 "$df.xdisplay"
5245

5246 5247 5248
	if {$make_gui_count == 1} {
		no_x11_display
	}
5249
	set lw [expr {$label_width / 2}]
5250 5251
	label $df_x11 -textvariable x11_display -width $lw -anchor w \
		-font $ffont
5252 5253

	set df_vnc "$df.vdisplay"
5254 5255 5256 5257

	if {$make_gui_count == 1} {
		no_vnc_display
	}
5258 5259
	label $df_vnc -textvariable vnc_display -width $lw -anchor w \
		-font $ffont
5260 5261 5262 5263 5264

	pack $df_x11 $df_vnc -side left 
	pack $df -side top -fill x

	# text area
5265
	global text_height
5266
	set text_area "$top.text"
5267 5268 5269 5270 5271 5272
	if {$screen_width <= 400} {
		text $text_area -height $text_height -width $label_width \
			-relief ridge -font $ffont
	} else {
		text $text_area -height $text_height -relief ridge -font $ffont
	}
5273
	pack $text_area -side top -fill both -expand 1
5274
	set top_widget_names(text) $text_area
5275 5276


5277 5278 5279 5280 5281 5282
	if {$text_area_str == ""} {
		set str "Click Help -> gui for overview."
		append_text "\n$str\n\n"
	} else {
		append_text $text_area_str
	}
5283 5284

	# Make entry box stuff
5285
	set ef "$top.entryframe"
5286
	frame $ef -bd 1 -relief groove
5287
	set top_widget_names(entryframe) $ef
5288

5289
	# Entry Label
5290 5291 5292 5293 5294
	set ef_label "$ef.label"
	label $ef_label -textvariable entry_str -anchor w -font $bfont

	set entry_str "Set... : "
	set ef_entry "$ef.entry"
5295
	entry $ef_entry -relief sunken -font $ffont
5296 5297 5298
	bind $ef_entry <KeyPress-Return> {set entry_set 1}
	bind $ef_entry <KeyPress-Escape> {set entry_set 0}

5299
	# Entry OK button
5300 5301 5302
	set bpx "1m"
	set bpy "1"
	set hlt "0"
5303
	set ef_ok "$ef.ok"
5304 5305
	button $ef_ok -text OK -pady $bpy -padx $bpx -command {set entry_set 1} \
		-highlightthickness $hlt \
5306 5307
		-font $bfont

5308
	# Entry Skip button
5309
	set ef_skip "$ef.skip"
5310
	button $ef_skip -text Cancel -pady $bpy -padx $bpx -command {set entry_set 0} \
5311
		-highlightthickness $hlt \
5312 5313
		-font $bfont

5314
	# Entry Help button
5315
	set ef_help "$ef.help"
5316 5317 5318
	button $ef_help -text Help -pady $bpy -padx $bpx -command \
		{menu_help $entry_dialog_item} -font $bfont \
		-highlightthickness $hlt
5319

5320
	# Entry Browse button
5321
	set ef_browse "$ef.browse"
5322 5323
	button $ef_browse -text "Browse..." -pady $bpy -padx $bpx -font $bfont \
		-highlightthickness $hlt \
5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342
		-command {entry_insert [tk_getOpenFile]} 

	pack $ef_label -side left
	pack $ef_entry -side left -fill x -expand 1
	pack $ef_ok   -side right
	pack $ef_skip -side right
	pack $ef_help -side right
	pack $ef -side bottom -fill x

	set entry_ok $ef_ok
	set entry_skip $ef_skip
	set entry_help $ef_help
	set entry_box $ef_entry
	set entry_browse $ef_browse
	set entry_label $ef_label
	entry_disable

}

5343 5344 5345 5346 5347
proc menu_bindings {m} {
	set db 0
	if {$db} {puts "menu_bindings $m"}

	bind $m <<MenuSelect>> {
5348 5349 5350
#syntax hilite bug \
MenuSelect>>
		set n [%W index active]
5351 5352
		set db 0
		if {$db} {puts stderr "menu_bindings %W $n"}
5353 5354 5355 5356
		set label "    "
		if {$n != "none"} {
			set str %W,$n
			set which ""
5357 5358

			if {$db} {puts "menu_bindings $str"}
5359 5360 5361 5362 5363 5364 5365
			if {[info exists helplabel($str)]} {
				set vname [format %%-16s $helplabel($str)]
				set label "Click (?) for help on: $vname"
				set which $helplabel($str)
			}
			if {$which == ""} {
				;
5366 5367
			} elseif {$which == "passwd" || $which == "viewpasswd"} {
				;
5368 5369 5370 5371 5372 5373 5374 5375 5376
			} elseif {[is_action $which]} {
				if {[info exists menu_var($which)] 
				    && $menu_var($which) != ""} {
					set label "$label value: $menu_var($which)"
				} else {
					set label "$label (is action)"
				}
			} elseif {[info exists menu_var($which)]} {
				set label "$label value: $menu_var($which)"
5377 5378 5379 5380
				if {$which == "http"} {
					global vnc_url
					set label "$label  URL: $vnc_url"
				}
5381 5382 5383 5384 5385 5386 5387
			}
		}
		set_info $label
	}
}

proc key_bindings {} {
5388
	global env menus_disabled
5389 5390
	if {[info exists env(USER)] && $env(USER) == "runge"} {
		# quick restart
5391
		bind . <Control-KeyPress-k> {exec $argv0 $argv &; destroy .}
5392
	}
5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412
	bind . <Control-KeyPress-p> { \
		global menus_disabled; \
		if {!$menus_disabled} {try_connect_and_query_all} \
	}
	bind . <Control-KeyPress-u> { \
		global menus_disabled; \
		if {!$menus_disabled} {query_all 0} \
	}
	bind . <Control-KeyPress-r> { \
		global menus_disabled; \
		if {!$menus_disabled} {query_all 0} \
	}
	bind . <Control-KeyPress-d> { \
		global menus_disabled; \
		if {!$menus_disabled} {detach_from_display} \
	}
	bind . <Control-KeyPress-a> { \
		global menus_disabled; \
		if {!$menus_disabled} {try_connect_and_query_all} \
	}
5413 5414 5415 5416 5417
}

proc stop_watch {onoff} {
	global orig_cursor text_area entry_box

5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428
	set widgets [list .]
	if [info exists text_area] {
		if {$text_area != ""} {
			lappend widgets $text_area
		}
	}
	if [info exists entry_box] {
		if {$entry_box != ""} {
			lappend widgets $entry_box
		}
	}
5429 5430 5431

	if {$onoff == "on"} {
		foreach item $widgets {
5432 5433 5434
			if {![winfo exists $item]} {
				continue
			}
5435 5436 5437 5438
			$item config -cursor {watch}
		}
	} else {
		foreach item $widgets {
5439 5440 5441
			if {![winfo exists $item]} {
				continue
			}
5442 5443 5444 5445 5446 5447 5448 5449
			$item config -cursor {}
		}
	}
	update
}

proc double_check_noremote {} {
	set msg "\n\n"
5450 5451
	append msg "*** WARNING: setting \"noremote\" will disable ALL remote control commands (i.e.\n"
	append msg "*** WARNING: *this* gui will be locked out). Do you really want to do this?\n"
5452
	append msg "*** WARNING: If so, press \"OK\", otherwise press \"Cancel\"\n"
5453 5454 5455 5456 5457
	append msg "\n"
	bell
	return [warning_dialog $msg "noremote"]
}

5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475
proc get_settings_rcfile {} {
	global menu_var default_var unset_str
	global x11vnc_gui_params

	set rc_txt ""

	set menu_var(gui) $x11vnc_gui_params

	foreach item [lsort [array names menu_var]] {
		if {$item == "gui"} {
			;
		} elseif {![active_when_starting $item]} {
			continue
		} elseif {[is_action $item]} {
			continue
		}
		if {$item == "debug_gui"} {
			continue
5476
		} elseif {$item == "WindowView"} {
5477
			continue
5478
		} elseif {$item == "rc" || $item == "norc"} {
5479 5480
			continue
		}
5481

5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511
		set def ""
		if {[info exists default_var($item)]} {
			set def $default_var($item)
		}

		set qst ""
		set hmm "#? "
		if {$item == "display"} {
			set qst $hmm
		} elseif {$item == "desktop"} {
			set qst $hmm
		} elseif {$item == "dontdisconnect"} {
			set qst $hmm
		} elseif {$item == "alwaysshared"} {
			set qst $hmm
		} elseif {$item == "nevershared"} {
			set qst $hmm
		}

		if {![info exists menu_var($item)]} {
			set mv $def
		} else {
			set mv $menu_var($item)
		}
		if {$mv == $unset_str} {
			set mv ""
		}
		set ntab 3

		if {$item == "gui" || [value_is_string $item]} {
5512
			set nitem [get_nitem $item]
5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580

			if {$mv == "" && $def != ""}  {
				set qst $hmm
			}
			set n 0
			if {$qst != ""} {
				append rc_txt $qst
				incr n [string length $qst]
			} elseif {$mv == $def} {
				append rc_txt "#d "
				incr n [string length "#d "]
			}
			set mt $mv
			regsub -all {#} $mt {\#} mt
			if {$mt == ""} {
				set mt {""}
			}
			append rc_txt "-$nitem $mt"

			if {$mv != $def} {
				set m [string length "-$nitem $mt"]
				incr n $m
				set n [expr $n / 8]
				set c 0
				for {set i $n} {$i <= $ntab} {incr i} {
					append rc_txt "\t"
					incr c
				}
				if {$c == 0} {
					append rc_txt "\t"
				}
				regsub -all {#} $def {\#} def
				if {$def == ""} {
					set def {""}
				}
				append rc_txt "# default:  $def"
			}
			append rc_txt "\n"

		} elseif {[value_is_bool $item]} {
			set n 0
			if {$qst != ""} {
				append rc_txt $qst
				incr n [string length $qst]
			} elseif {$mv == $def} {
				append rc_txt "#d "
				incr n [string length "#d "]
			}
			if {$def == 1} {
				set dv "on"
			} else {
				set dv "off"
			}
			append rc_txt "-$item"
			set m [string length "-$item"]
			incr n $m
			set n [expr $n / 8]
			for {set i $n} {$i <= $ntab} {incr i} {
				append rc_txt "\t"
			}
			append rc_txt "# default: $dv"
			append rc_txt "\n"

		}
	}
	return $rc_txt
}

5581 5582 5583
proc double_check_start_x11vnc {} {
	global hostname
	set msg [get_start_x11vnc_txt]
5584
	bell
5585
	append msg "\n"
5586 5587
	append msg "*** To run the above command on machine \"$hostname\" (thereby\n"
	append msg "*** starting x11vnc) press \"OK\", otherwise press \"Cancel\".\n"
5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601
	return [warning_dialog $msg "start"]
}

proc get_start_x11vnc_txt {} {
	set cmd [get_start_x11vnc_cmd]
	set str [join $cmd]
	set msg ""
	append msg "\n"
	append msg "==== The command built so far is: ====\n";
	append msg "\n"
	append msg "$str\n"
	return $msg
}

5602 5603 5604 5605 5606
proc show_start_cmd {} {
	set msg [get_start_x11vnc_txt]
	append_text "$msg\n"
}

5607 5608 5609 5610 5611 5612
proc get_nitem {item} {
	set nitem $item
	if {$nitem == "screen_blank"} {
		set nitem "sb"
	} elseif {$nitem == "xrandr_mode"} {
		set nitem "xrandr"
5613 5614
	} elseif {$nitem == "unixpw_list"} {
		set nitem "unixpw"
5615 5616
	} elseif {$nitem == "unixpw_nis_list"} {
		set nitem "unixpw_nis"
5617 5618
	} elseif {$nitem == "stunnel_pem"} {
		set nitem "stunnel"
5619 5620
	} elseif {$nitem == "ssl_pem"} {
		set nitem "ssl"
5621 5622 5623 5624 5625 5626 5627 5628
	} elseif {$nitem == "wireframe_mode"} {
		set nitem "wireframe"
	} elseif {$nitem == "solid_color"} {
		set nitem "solid"
	}
	return $nitem
}

5629
proc get_start_x11vnc_cmd {{show_rc 0}} {
5630
	global cmd_var menu_var default_var unset_str x11vnc_prog
5631 5632 5633 5634 5635 5636 5637

	set xterm_cmd "xterm -iconic -geometry 80x35 -title x11vnc-console -e"

	set cmd [split $xterm_cmd]

	lappend cmd $x11vnc_prog

5638 5639 5640
	lappend cmd "-gui"
	lappend cmd "none"

5641 5642
	set rc_txt ""

5643 5644
	set saw_id 0

5645
	foreach item [lsort [array names menu_var]] {
5646
		if {$item == "gui"} {
5647
			continue
5648
		} elseif {![active_when_starting $item]} {
5649
			continue
5650
		} elseif {[is_action $item]} {
5651
			continue
5652
		} elseif {$item == "debug_gui"} {
5653
			continue
5654
		} elseif {$item == "WindowView"} {
5655 5656
			continue
		}
5657

5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668
		if {$item == "id" || $item == "sid"} {
			set val $menu_var($item);
			if {$val == "0x0" || $val == "root"} {
				continue
			}
		}
		if {$item == "sid" && $saw_id} {
			continue
		}
		if {$item == "id"} {
			set saw_id 1
5669
		} elseif {$item == "httpport" && $menu_var($item) == "0"} {
5670
			continue
5671
		} elseif {$item == "progressive" && $menu_var($item) == "0"} {
5672
			continue
5673
		} elseif {$item == "dontdisconnect" && $menu_var($item) == "-1"} {
5674
			continue
5675
		} elseif {$item == "alwaysshared" && $menu_var($item) == "-1"} {
5676 5677
			continue
		}
5678 5679 5680

		if {[value_is_bool $item]} {
			if {[info exists menu_var($item)]} {
5681 5682 5683 5684 5685 5686 5687 5688 5689
				set add 1
				if {[info exists default_var($item)]} {
					if {$menu_var($item) == $default_var($item)} {
						set add 0;
					}
				} elseif {! $menu_var($item)} {
					set add 0
				}
				if {$add} {
5690
					lappend cmd "-$item"
5691
					append rc_txt "-$item\n"
5692 5693 5694
				}
			}
		} elseif {[value_is_string $item]} {
5695 5696 5697 5698 5699 5700 5701 5702 5703 5704
			if {![info exists menu_var($item)]} {
				continue
			}
			if {$menu_var($item) != "" && $menu_var($item) != $unset_str} {
				set add 1
				set nitem [get_nitem $item]

				if {[info exists default_var($item)]} {
					if {$menu_var($item) == $default_var($item)} {
						set add 0;
5705
					}
5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722
				}
				if {$add} {
					lappend cmd "-$nitem"
					set mv $menu_var($item)

					if {[regexp {^~} $mv]}  {
						if {$item == "auth" ||
						    $item == "rc" ||
						    $item == "accept" || 
						    $item == "connect" || 
						    $item == "allow" || 
						    $item == "passwdfile" || 
						    $item == "o" || 
						    $item == "logfile" || 
						    $item == "remap" || 
						    $item == "httpdir"} { 
							set mv [tilde_expand $mv]
5723 5724
						}
					}
5725 5726 5727 5728 5729
					
					lappend cmd $mv
					set mt $mv
					regsub -all {#} $mt {\#} mt
					append rc_txt "-$nitem $mt\n"
5730 5731 5732 5733 5734 5735 5736 5737
				}
			}
		}
	}
	lappend cmd "2>"
	lappend cmd "/dev/null"
	lappend cmd "&"
	
5738 5739 5740 5741 5742
	if {$show_rc} {
		return $rc_txt
	} else {
		return $cmd
	}
5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784
}

proc start_x11vnc {} {
	global menu_var unset_str
	global x11vnc_prog x11vnc_xdisplay
	global connected_to_x11vnc

	if {$connected_to_x11vnc} {
		append_text "\n"
		append_text "WARNING: Still connected to an x11vnc server.\n"
		append_text "WARNING: Use \"stop\" or \"detach\" first.\n"
		return 0
	}

	if {![double_check_start_x11vnc]} {
		return
	}

	set x11vnc_xdisplay ""
	if {[info exists menu_var(display)]} {
		if {$menu_var(display) != "" && $menu_var(display) != $unset_str} {
			set x11vnc_xdisplay $menu_var(display)
		}
	}

	set cmd [get_start_x11vnc_cmd]

	set str [join $cmd]
	regsub { -e} $str " -e \\\n   " str

	if {0} {
		puts "running: $str"
		foreach word $cmd {
			puts "   word: $word"
		}
	}

	append_text "Starting x11vnc in an iconified xterm with command:\n"
	append_text "  $str\n\n"
	catch {[eval exec $cmd]}
	after 500
	try_connect_and_query_all 3
5785 5786 5787 5788 5789 5790 5791 5792 5793
	if {!$connected_to_x11vnc} {
		append_text "\nStarting x11vnc seems to have failed.\n"
		if {[regexp -- {-o } $str] || [regexp -- {-logfile} $str]} {
			append_text "Examine the logfile (Debugging -> show-logfile) for error messages.\n"
		} else {
			append_text "Rerun with a logfile (if needed) and examine the logfile\n"
			append_text "(Debugging -> show-logfile) for error messages.\n"
		}
	}
5794 5795
}

5796 5797 5798 5799
proc run_remote_cmd_via_sock {opts} {
	global client_sock

	set db 0
5800 5801 5802 5803
	if {[file channels $client_sock] == ""} {
		set client_sock ""
		return "fail"
	}
5804
	if {[eof $client_sock]} {
5805
		catch {close $client_sock}
5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842
		set client_sock ""
		return "fail"
	}
	set result ""
		
	setup_client_sock 0

	set docmd ""
	foreach opt $opts {
		if {$opt == "-R"} {
			set docmd "-R"
			continue
		} elseif {$opt == "-Q"} {
			set docmd "-Q"
			continue
		}

		if {$docmd == ""} {
			continue
		} elseif {$docmd == "-R"} {
			set str "cmd=$opt"
		} elseif {$docmd == "-Q"} {
			set str "qry=$opt"
		} else {
			set docmd ""
			continue
		}

		if {$db} {puts stderr "run_remote_cmd_via_sock: $docmd \"$str\""}
		puts $client_sock $str
		if {$db} {puts stderr "run_remote_cmd_via_sock: flush"}
		flush $client_sock
		if {$db} {puts stderr "run_remote_cmd_via_sock: gets"}
		gets $client_sock res
		if {$db} {puts stderr "run_remote_cmd_via_sock: \"$res\""}
		set res [string trim $res]

5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860
		if [regexp {^clients:} $res] {
			regsub {^clients:} $res "" tmp
			if {$tmp == "none"} {
				set tmp ""
			}
			update_clients_menu $tmp
			set client_str $tmp
			set_client_balloon $tmp

			if ![regexp {^clients} $opt] {
				# we could block here...
				if {$db} {puts stderr "run_remote_cmd_via_sock: gets"}
				gets $client_sock res
				if {$db} {puts stderr "run_remote_cmd_via_sock: \"$res\""}
				set res [string trim $res]
			}
		}

5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874
		set docmd ""

		if {$res != ""} {
			append result "$res\n"
		}
	}
	
	setup_client_sock 1

	set result [string trim $result]

	return $result
}

5875 5876
proc run_remote_cmd {opts} {
	global menu_var x11vnc_prog x11vnc_cmdline x11vnc_xdisplay
5877
	global x11vnc_auth_file x11vnc_connect_file
5878
	global client_sock
5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892

	set debug [in_debug_mode]

	if {[lindex $opts 0] == "-R" && [lindex $opts 1] == "noremote"} {
		set str [join $opts]
		if ![double_check_noremote] {
			append_text "skipping: x11vnc $str"
			return ""
		} else {
			append_text "running: x11vnc $str (please do \"Actions -> detach\" to clean things up)\n"
			append_text "subsequent -R/-Q commands should fail..."
		}
	}

5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903
	if {$client_sock != ""} {
		menus_disable
		stop_watch on
		set result [run_remote_cmd_via_sock $opts]
		stop_watch off
		menus_enable
		if {$result != "fail"} {
			return $result
		}
	}

5904 5905 5906 5907
	set cmd ""

	lappend cmd $x11vnc_prog;

5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919
	if {$x11vnc_connect_file != ""} {
		lappend cmd "-connect"
		lappend cmd $x11vnc_connect_file
	} else {
		if {$x11vnc_xdisplay != ""} {
			lappend cmd "-display"
			lappend cmd $x11vnc_xdisplay
		}
		if {$x11vnc_auth_file != ""} {
			lappend cmd "-auth"
			lappend cmd $x11vnc_auth_file
		}
5920
	}
5921
	lappend cmd "-sync"
5922 5923 5924 5925 5926 5927
	foreach word $opts {
		lappend cmd $word
	}
	lappend cmd "2>"
	lappend cmd "/dev/null"

5928
	if {0 || $debug} {
5929 5930 5931 5932 5933
		set str [join $cmd]
		puts "running: $str"
		foreach word $cmd {
			puts "   word: $word"
		}
5934 5935 5936
	}

	set output ""
5937
	menus_disable
5938

5939 5940 5941
	stop_watch on
	catch {set output [eval exec $cmd]}
	stop_watch off
5942

5943
	menus_enable
5944
	if {$debug} {
5945 5946 5947 5948 5949 5950
		if {[string length $output] > 100} {
			set str [string range $output 0 100]
			append_text "output: $str ...\n"
		} else {
			append_text "output: $output\n"
		}
5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971
	}
	return $output
}

proc try_connect_and_query_all {{n 2}} {
	for {set i 0} {$i < $n} {incr i} {
		if {$i > 0} {
			after 500
			append_text "trying again ...\n"
		}
		if {[try_connect]} {
			query_all
			break
		}
	}
}

proc try_connect {} {
	global x11vnc_xdisplay connected_to_x11vnc reply_xdisplay
	global menu_var unset_str

5972
	set db 0
5973
#dtime c1
5974

5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987
	if {! $connected_to_x11vnc} {
		if {[info exists menu_var(display)]} {
			set d $menu_var(display)
			if {$d != "" && $d != $unset_str && $d != $x11vnc_xdisplay} {
				set x11vnc_xdisplay $menu_var(display)
				append_text "Setting X display to: $x11vnc_xdisplay\n"
			}
		}
	}

	set_info "Pinging $x11vnc_xdisplay ..."
	set rargs [list "-Q" "ping"]
	set result [run_remote_cmd $rargs]
5988
#dtime c2a
5989

5990 5991
	if {$db} {puts "try_connect: \"$result\""}

5992 5993 5994 5995 5996 5997
	if {[regexp {^ans=ping:} $result]} {
		regsub {^ans=ping:} $result {} reply_xdisplay
		set msg "Connected to $reply_xdisplay"
		set_info $msg
		append_text "$msg\n"
		set_connected yes
5998 5999

		setup_client_channel
6000
#dtime c2b
6001 6002 6003
		setup_client_sock 1
		setup_client_tail

6004
		fetch_displays
6005
#dtime c3a
6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019
		return 1
	} else {
		set str "x11vnc server."
		if {$x11vnc_xdisplay != ""} {
			set str $x11vnc_xdisplay
		}
		set msg "No reply from $str"
		set_info $msg
		append_text "$msg\n"
		set_connected no
		return 0
	}
}

6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036
proc set_view_variable {val} {
	global menu_var
	set menu_var(WindowView) $val
}
proc get_view_variable {} {
	global menu_var
	if {![info exists menu_var(WindowView)]} {
		set menu_var(WindowView) "none"
	}
	return $menu_var(WindowView)
}

proc change_view_state {} {
	global menu_var gui_current_state

	set new [get_view_variable]

6037 6038 6039
	if {![info exists gui_current_state]} {
		set gui_current_state ""
	}
6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069
	set old $gui_current_state
	#puts "$old -> $new"

	if {$old == $new} {
		return
	}

	if {$old == "full" || $old == "icon" || $old == "tray"} {
		;
	} else {
		set old "none"
	}

	if {$new == "full" || $new == "icon" || $new == "tray"} {
		if {$old == "tray"} {
			# sigh XReparentWindow would be too easy...
			# undo_tray_embed
			restart_everything $new
			destroy .
			exit
		}
		make_gui $new
	} else {
		set_view_variable $old
	}
}

proc setup_client_tail {} {
	global client_tail
	if {$client_tail != ""} {
6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081
		fileevent $client_tail readable read_client_tail
	}
}

proc setup_client_sock {{enable 1}} {
	global client_sock
	if {$client_sock != ""} {
		if {$enable} {
			fileevent $client_sock readable read_client_sock
		} else {
			fileevent $client_sock readable ""
		}
6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102
	}
}

proc setup_tray_embed {} {
	global icon_win
	update
	set w [winfo width .]
	set h [winfo height .]
	if {$w < 24} {
		set w 24
	}
	if {$h < 24} {
		set h 24
	}
	wm minsize . $w $h
	set wid [winfo id .]	
	push_new_value "remote-cmd" "remote-cmd" "trayembed:$wid" 0
}

proc restart_everything {gui_mode} {
	global env gui_argv0 x11vnc_prog full_win
6103 6104
	global icon_mode_at_startup
	global tray_embed tray_running
6105 6106 6107 6108 6109
	if {$gui_mode == "full"} {
		set env(X11VNC_ICON_MODE) 0
	} elseif {$gui_mode == "icon"} {
		set env(X11VNC_ICON_MODE) 1
	} elseif {$gui_mode == "tray"} {
6110 6111 6112
		if {$tray_running} {
			set env(X11VNC_ICON_MODE) "RUNNING"
		} else {
6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174
			set env(X11VNC_ICON_MODE) "TRAY"
		}
	}
	puts stderr ""
	puts stderr "tkx11vnc: restarting gui to leave tray mode."
	puts stderr "  new gui will be running in the background."
	puts stderr "  use kill(1) rather than Ctrl-C to kill it."
	puts stderr ""
	if {[info exists env(X11VNC_RESTART_DEPTH)]} {
		set n $env(X11VNC_RESTART_DEPTH)
		incr n
		set env(X11VNC_RESTART_DEPTH) $n
	} else {
		set env(X11VNC_RESTART_DEPTH) 0
	}
	set env(X11VNC_ICON_SETPASS) ""

	if {![info exists env(X11VNC_WISHCMD)]} {
		puts stderr "failure in restart_everything."
		exit 1;
	}

	set code [exec $x11vnc_prog -printgui]
	if {[string length $code] < 20000} {
		puts stderr "failure in restart_everything."
		exit 1;
	}
	set tmp "/tmp/x11vnc[pid]"
	file delete -force $tmp
	if {[file exists $tmp]} {
		puts stderr "failure in restart_everything."
		exit 1;
	}
	set fh [open $tmp "a"]
	if {![file owned $tmp]}  {
		puts stderr "failure in restart_everything."
		exit 1;
	}
	file attributes $tmp -permissions "0400"
	puts $fh $code
	close $fh

	#puts stderr [exec ls -l $tmp]

	wm withdraw .
	catch {wm withdraw $full_win}
	update

	exec $env(X11VNC_WISHCMD) $tmp &
	after 2000
	file delete -force $tmp
	
	destroy .
	exit
}

proc undo_tray_embed {} {
	global icon_win
	set wid [winfo id .]	
	push_new_value "remote-cmd" "remote-cmd" "trayunembed:$wid" 0
}

6175 6176 6177
############################################################################
# main:

6178 6179 6180 6181
if [info exists env(X11VNC_GUI_TIME)] {
	dtime M
}

6182 6183
wm withdraw .

6184
global env x11vnc_prog x11vnc_cmdline x11vnc_xdisplay x11vnc_connect;
6185
global x11vnc_xdisplay0
6186
global x11vnc_client_file x11vnc_gui_geom x11vnc_started vnc_url
6187
global x11vnc_gui_params
6188
global x11vnc_auth_file x11vnc_connect_file beginner_mode simple_gui_created
6189
global helpall helptext helpremote helplabel hostname osname
6190 6191
global all_settings reply_xdisplay always_update
global max_text_height max_text_width
6192
global text_height
6193
global menu_var unset_str menus_disabled
6194
global bfont ffont sfont snfont old_labels have_labelframes
6195
global connected_to_x11vnc
6196
global cache_all_query_vars
6197
global last_query_all_time query_all_freq client_tail client_sock client_info_read
6198 6199
global icon_mode icon_mode_at_startup
global tray_embed tray_running icon_setpasswd icon_embed_id
6200 6201 6202
global icon_noadvanced icon_minimal
global make_gui_count text_area_str
global gui_argv0 gui_start_mode
6203
global screen_height screen_width
6204 6205

set unset_str "(unset)"
6206
set vnc_url $unset_str
6207
set connected_to_x11vnc 0
6208
set menus_disabled 0
6209 6210
set max_text_height 40
set max_text_width 90
6211
set text_height 14
6212
set bfont "-adobe-helvetica-bold-r-*-*-*-120-*-*-*-*-*-*"
6213 6214
set sfont "-adobe-helvetica-bold-r-*-*-*-100-*-*-*-*-*-*"
set snfont "-adobe-helvetica-medium-r-*-*-*-100-*-*-*-*-*-*"
6215
set ffont "fixed"
6216 6217 6218 6219
set help_indent 24;
set reply_xdisplay ""
set all_settings "None so far."
set always_update 1
6220
set cache_all_query_vars ""
6221 6222
set query_all_freq 120
set last_query_all_time [clock seconds]
6223
set client_tail ""
6224 6225
set client_sock ""
set client_info_read 0
6226 6227 6228 6229
set make_gui_count 0
set text_area_str ""
set gui_argv0 $argv0
set gui_start_mode ""
6230

6231 6232 6233 6234 6235 6236
if {$tk_version < 8.0} {
	puts stderr ""
	puts stderr "*** tkx11vnc: tk version is old $tk_version, please use 8.0 or higher."
	puts stderr "***           will try to continue with reduced functionality..."
	puts stderr ""
}
6237 6238 6239 6240 6241
if {[regexp {^[34]} $tk_version] || $tk_version == "8.0"} {
	set old_labels 1
} else {
	set old_labels 0
}
6242 6243 6244 6245
set have_labelframes 1
if {$tk_version < 8.4} {
	set have_labelframes 0
}
6246

6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259
set screen_height [winfo screenheight .]
set screen_width  [winfo screenwidth  .]
if {$screen_height < 500} {
	# short screen, PDA?
	set max_text_height 22
	set text_height 13
	if {$screen_height <= 360} {
		# very short.
		set max_text_height 16
		set max_text_width  60
		set text_height 11
	}
}
6260 6261 6262 6263 6264 6265 6266
if {[info exists env(X11VNC_GUI_TEXT_HEIGHT)]} {
	set max_text_height $env(X11VNC_GUI_TEXT_HEIGHT)
}
if {[info exists env(X11VNC_GUI_TEXT_WIDTH)]} {
	set max_text_width  $env(X11VNC_GUI_TEXT_WIDTH)
}

6267 6268
if {"$argv" == "-spit"} {
	set fh [open $argv0 r]
runge's avatar
runge committed
6269 6270 6271
	puts "#ifndef _TKX11VNC_H"
	puts "#define _TKX11VNC_H"
	puts "#ifdef NOGUI"
6272
	puts "char gui_code\[\] = \"\";"
runge's avatar
runge committed
6273
	puts "#else"
6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284
	puts "/*"
	puts " * tkx11vnc.h: generated by 'tkx11vnc -spit'"
	puts " * Abandon all hope, ye who enter here..."
	puts " * ...edit tkx11vnc instead."
	puts " */"
	puts "	char gui_code\[\] ="
	while {[gets $fh line] > -1} {
		regsub -all {\\} $line {\\\\} line
		regsub -all {"} $line {\\"} line
		puts "\"$line\\n\""
	}
runge's avatar
runge committed
6285 6286 6287 6288
	puts "#endif"
	puts "/* ifdef NOGUI */"
	puts "#endif"
	puts "/* ifndef _TKX11VNC_H */"
6289 6290 6291 6292 6293
	close $fh
	puts ";"
	exit 0
}

6294 6295 6296 6297 6298

set_view_variable "full"

#puts [exec env | grep X11VNC]

6299
# Read environment for clues:
6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314

set x11vnc_client_file "";
if {[info exists env(X11VNC_CLIENT_FILE)]} {
	set x11vnc_client_file $env(X11VNC_CLIENT_FILE);
	set file $x11vnc_client_file

	set client_tail ""
	if {[file exists $file] && [file isfile $file]} {
		if {[file readable $file] && [file owned $file]} {
			set client_tail [open "|tail -f $x11vnc_client_file" "r"]
		}
	}
	if {$client_tail != ""} {
		gets $client_tail tmp
		if [eof $client_tail] {
6315
#puts "eof $client_tail"
6316 6317 6318 6319 6320 6321 6322
			clean_client_tail
			set client_tail ""
		}
	}
	catch {file delete -force $x11vnc_client_file}
}

6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340
if {[info exists env(X11VNC_PROG)]} {
	set x11vnc_prog $env(X11VNC_PROG);
} else {
	set x11vnc_prog "x11vnc";
}

if {[info exists env(X11VNC_CMDLINE)]} {
	set x11vnc_cmdline $env(X11VNC_CMDLINE);
} else {
	set x11vnc_cmdline "";
}

if {[info exists env(X11VNC_CONNECT)]} {
	set x11vnc_connect 1
} else {
	set x11vnc_connect 0;
}

6341 6342 6343 6344 6345
if {[info exists env(X11VNC_GUI_GEOM)]} {
	set x11vnc_gui_geom $env(X11VNC_GUI_GEOM);
} else {
	set x11vnc_gui_geom ""
}
6346 6347 6348 6349 6350
if {[info exists env(X11VNC_GUI_PARAMS)]} {
	set x11vnc_gui_params $env(X11VNC_GUI_PARAMS);
} else {
	set x11vnc_gui_params ""
}
6351

6352 6353 6354 6355 6356 6357
if {[info exists env(X11VNC_CONNECT_FILE)]} {
	set x11vnc_connect_file $env(X11VNC_CONNECT_FILE);
} else {
	set x11vnc_connect_file "";
}

6358 6359 6360
set x11vnc_started 0
if {[info exists env(X11VNC_STARTED)]} {
	set x11vnc_started 1
6361 6362
}

6363
set x11vnc_xdisplay ""
6364 6365 6366 6367 6368
if {[info exists env(X11VNC_XDISPLAY)]} {
	set x11vnc_xdisplay $env(X11VNC_XDISPLAY);
	set x11vnc_connect 1

} elseif {$argv != "" && [regexp {:[0-9]} $argv]} {
6369
	set env(X11VNC_XDISPLAY) "$argv"
6370 6371 6372 6373 6374 6375 6376 6377
	set x11vnc_xdisplay "$argv"
	set x11vnc_connect 1

} elseif {[info exists env(DISPLAY)]} {
	set x11vnc_xdisplay $env(DISPLAY);
} else {
	set x11vnc_xdisplay ":0";
}
6378
set x11vnc_xdisplay0 $x11vnc_xdisplay
6379

6380 6381 6382 6383 6384 6385
if {[info exists env(X11VNC_AUTH_FILE)]} {
	set x11vnc_auth_file $env(X11VNC_AUTH_FILE)
} else {
	set x11vnc_auth_file ""
}

6386 6387 6388 6389 6390 6391 6392
set simple_gui_created 0
if {[info exists env(X11VNC_SIMPLE_GUI)]} {
	set beginner_mode 1
} else {
	set beginner_mode 0
}

6393 6394 6395
set icon_mode 0
set tray_embed 0
set tray_running 0
6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409

if {![info exists env(X11VNC_ICON_MODE_AT_STARTUP)]} {
	if {[info exists env(X11VNC_ICON_MODE)]} {
		if {$env(X11VNC_ICON_MODE) != 0} {
			set env(X11VNC_ICON_MODE_AT_STARTUP) 1
		} else {
			set env(X11VNC_ICON_MODE_AT_STARTUP) 0
		}
	} else {
		set env(X11VNC_ICON_MODE_AT_STARTUP) 0
	}
}
set icon_mode_at_startup $env(X11VNC_ICON_MODE_AT_STARTUP)

6410 6411 6412 6413
if {![info exists env(X11VNC_ICON_MODE)]} {
	set icon_mode 0
} elseif {$env(X11VNC_ICON_MODE) == "" || $env(X11VNC_ICON_MODE) == "0"} {
	set icon_mode 0
6414
} else {
6415 6416 6417 6418 6419 6420 6421 6422 6423
	set icon_mode 1
	set_view_variable "icon"
	if [regexp -nocase {TRAY} $env(X11VNC_ICON_MODE)] {
		set tray_embed 1
	}
	if [regexp -nocase {RUNNING} $env(X11VNC_ICON_MODE)] {
		set tray_running 1
	}
}
6424

6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439
set icon_setpasswd 0
if {[info exists env(X11VNC_ICON_SETPASS)]} {
	if {$env(X11VNC_ICON_SETPASS) != ""} {
		set icon_setpasswd 1
	}
}

set icon_noadvanced 0
if {[info exists env(X11VNC_ICON_NOADVANCED)]} {
	set icon_noadvanced 1
}

set icon_minimal 0
if {[info exists env(X11VNC_ICON_MINIMAL)]} {
	set icon_minimal 1
6440 6441
}

6442 6443
if {[info exists env(X11VNC_ICON_EMBED_ID)]} {
	set icon_embed_id $env(X11VNC_ICON_EMBED_ID)
6444
} else {
6445
	set icon_embed_id ""
6446
}
6447

6448

6449
set hostname [exec uname -n]
6450 6451 6452 6453 6454 6455 6456
set osname [exec uname]

if {[regexp -nocase {IRIX} $osname]} {
	# IRIX "fixed" font is huge and doublespaced... 
	set ffont $snfont
}

6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477
#puts [exec env]
#puts "x11vnc_xdisplay: $x11vnc_xdisplay"

set env(X11VNC_STD_HELP) 1

# scrape the help output for the text and remote control vars:
parse_help;
parse_remote_help;
parse_query_help;

# tweaks to duplicate help text:
tweak_remote_help lock deny
tweak_remote_help unlock deny

tweak_both quiet q
tweak_help logfile o
tweak_both xwarppointer xwarp
tweak_both screen_blank sb

set_template

6478
set_name "tkx11vnc"
6479 6480 6481

key_bindings;

6482 6483
get_default_vars

6484 6485
dtime D

6486 6487 6488 6489 6490 6491
if {$icon_mode} {
	if {$tray_embed} {
		make_gui "tray"
	} else {
		make_gui "icon"
	}
6492
	dtime G
6493 6494
	old_balloon
	if {$icon_setpasswd} {
6495 6496 6497 6498 6499
		set m "You must specify a Session Password\n" 
		set m "${m}before VNC clients can connect.\n" 
		set m "${m}Enter one in the Password field\n" 
		set m "${m}and Press \"OK\". The password(s) is\n" 
		set m "${m}only for this x11vnc session.\n" 
6500
		do_props $m
6501
		#push_new_value "unlock" "unlock" 1 0
6502 6503 6504
	}
} else {
	make_gui "full"
6505
	dtime G
6506 6507
}

6508

6509
# main loop.