tkx11vnc 157 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
#       The =GAL ... =GAL LOFF stuff is to provide submenus.
#
60

61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
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"
}

85 86 87 88 89 90 91 92 93
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
94 95
	--
	=DSA attach
96
	=DRA detach
97 98 99
	--
	=RA ping
	=RA update-all
100
	=GAL Settings::
101 102 103 104
	=GA save-settings
	=SFA load-settings:
	=SA defaults-all
	=0SA clear-all
105 106 107 108
	--
	=F rc:
	norc
	=GAL LOFF
109 110 111
	-- D
	=DRA stop+quit 
	=DGA Quit 
112 113

Help
114
	=DGA gui
115
	=DGA all
116 117

Clients
118 119 120
	=DRQA current:
	=DF   connect:
	=DRQA disconnect:
121 122
	--
	accept:
runge's avatar
runge committed
123
	afteraccept:
124 125
	gone:
	vncconnect
126
	avahi
127
	-- D
128 129
	tightfilexfer
	ultrafilexfer
130
	=GAL Java-applet::
131
	=D http
runge's avatar
runge committed
132
	httpdir:
133
	httpport:
134 135
	https:
	httpsredir:
136
	enablehttpproxy
137
	=GAL LOFF
138 139

Displays
140
	=D display:
141
	=F auth:
142
	=S reflect:
143 144
	=D desktop:
	=D rfbport:
145 146 147 148
	=0 gui:

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

Keyboard
196 197
	=D norepeat
	=D add_keysyms
198 199 200
	modtweak
	xkb
	--
201 202
	capslock
	skip_lockkeys
203
	--
204 205
	skip_keycodes:
	skip_dups
206
	sloppy_keys
207
	--
208
	=FP remap:
209 210 211 212
	clear_mods
	clear_keys

Pointer
213
	=D-C:none,arrow,X,some,most cursor:
214
	=-C:1,2,3,4,5,6 arrow:
215 216
	--
	cursorpos
217
	=D nocursorshape
218
	--
219
	noxfixes
220
	cursor_drag
221
	=GAL AlphaBlending::
222 223 224 225
	noalphablend
	alphacut:
	alphafrac:
	alpharemove
226
	=GAL LOFF
227
	--
228 229 230 231 232
	buttonmap:
	--
	xwarppointer

Misc
233
	=GD-C:full,icon,tray WindowView:
234 235
	=GD simple-gui
	-- D
236 237 238
	=GA all-settings
	=RA remote-cmd:
	=GAL Selection::
239
	=D nosel
240
	noprimary
241 242 243
	nosetprimary
	noclipboard
	nosetclipboard
244
	seldir:
245
	=GAL LOFF
246
	=GAL X-ext::
247
	xtrap
248
	xrecord
249
	=RQA reset_record
250
	=GAL LOFF
runge's avatar
runge committed
251 252 253 254 255 256 257 258 259
	=GAL MacOSX::
	macnosaver
	macnowait
	macwheel:
	macnoswap
	macnoresize
	maciconanim:
	macmenu
	=GAL LOFF
260
	--
261 262 263
	nofb
	=D nobell
	nolookup
264
	rfbversion:
265
	bg
266 267
	=S loop
	=S loopbg
268 269 270 271 272 273 274
	=-C:ignore,exit sigpipe:
	=0 inetd

Debugging
	debug_pointer
	debug_keyboard
	=F logfile:
275 276
	=GA show-logfile
	=GA tail-logfile
277 278
	quiet
	--
279 280
	=GA show-start-cmd
	=DG debug_gui
281
	=GAL Misc-Debug::
282 283
	debug_xevents
	debug_xdamage
284
	=-C:0,1,2,3 debug_wireframe:
285
	debug_scroll
286
	debug_tiles
287
	debug_grabs
288
	debug_sel
289
	debug_ncache
290
	dbg
291
	=GAL LOFF
292 293

Permissions
294 295
	=DRQA lock
	=DRQA unlock
296 297
	=D shared
	=D forever
298
	--
299
	=DFP allow:
runge's avatar
runge committed
300
	=D localhost
301
	=RA allowonce:
runge's avatar
runge committed
302
	listen:
303
	-- D
304
	=D viewonly
305 306
	input:
	--
307 308
	=GAL Passwords::
	passwd:
309 310 311
	viewpasswd:
	=F passwdfile:
	=F rfbauth:
312 313
	usepw
	--
314 315
	unixpw
	unixpw_list:
316 317
	unixpw_nis
	unixpw_nis_list:
318 319
	=0 storepasswd
	=GAL LOFF
320 321 322 323 324
	=GAL SSL::
	ssl
	=F ssl_pem:
	stunnel
	=F stunnel_pem:
325
	=F ssldir:
326
	=F sslverify:
327
	ssltimeout:
328 329
	=GAL LOFF
	=GAL Misc-Perms::
330 331 332
	safer
	unsafe
	=RA noremote
333 334 335
	=0S alwaysshared
	=0S nevershared
	=0S dontdisconnect
336
	=SQA deny_all
337
	timeout:
338 339
	grabkbd
	grabptr
340 341 342 343
	grabalways
	forcedpms
	clientdpms
	noserverdpms
344
	noultraext
345
	=GAL LOFF
346 347

Tuning
348
	=D-C:0,1,2,3,4 pointer_mode:
349
	input_skip:
350
	allinput
351
	=D nodragging
352 353 354 355 356 357
	-- D
	speeds:
	=D wait:
	defer:
	=D nap
	screen_blank:
358
	--
359
	=GAL WireFrame::
360 361 362
	wireframe
	wireframe_mode:
	=-C:never,top,always wirecopyrect:
363 364
	=GAL LOFF
	=GAL ScrollCopyRect::
365 366
	=-C:never,keys,mouse,always scrollcopyrect:
	scr_area:
367 368 369
	scr_skip:
	scr_inc:
	scr_keys:
370
	scr_term:
371
	scr_keyrepeat:
372
	scr_parms:
373 374 375 376 377 378
	=GAL LOFF
	=GAL XDAMAGE::
	xdamage
	xd_area:
	xd_mem:
	=GAL LOFF
379 380 381 382 383 384
	=GAL Ncache::
	ncache
	ncache_size:
	ncache_cr
	ncache_no_moveraise
	ncache_no_dtchange
385
	ncache_old_wm
386
	ncache_no_rootpixmap
387
	ncache_keep_anims
388
	ncache_pad:
389
	=RA ncache_reset_rootpixmap
390
	=GAL LOFF
391
	--
392 393 394 395 396 397
	=GAL SharedMemory::
	noshm
	flipbyteorder
	onetile
	=GAL LOFF
	=GAL Misc-Tuning::
398
	progressive:
399 400 401 402 403 404
	fs:
	gaps:
	grow:
	fuzz:
	wait_ui:
	nowait_bog
405 406
	slow_fb:
	xrefresh:
407 408 409 410
	readtimeout:
	snapfb
	threads
	wmdt:
411
	rfbwait:
runge's avatar
runge committed
412
	nodpms
413
	nofbpm
414
	=GAL LOFF
415 416 417 418 419 420 421 422 423 424 425
"
}

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.
426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441

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
442 443
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.
444 445 446 447 448 449 450 451
"

	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.
452

453 454 455 456
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.
457 458 459 460 461 462 463
"

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

	set helptext(detach) "
464 465 466 467 468
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\".
469 470 471
"

	set helptext(attach) "
472 473 474 475 476 477 478 479
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).
480 481 482 483 484 485 486 487 488
"

	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.
489

490 491 492 493 494
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).
495 496 497
"

	set helptext(clear-all) "
498 499 500 501 502
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
503 504 505
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\".
506 507 508 509 510 511 512 513
"

	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
514 515 516
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\".
517 518 519 520 521 522 523 524 525 526 527 528 529
"

	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
530 531 532
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\".
533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549
"

	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. 
550 551 552 553 554 555 556 557 558 559 560 561 562 563
"

	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\"  
564 565 566 567
"

	set helptext(stop+quit) "
Send the stop command to the x11vnc server, then terminate the tkx11vnc gui.
568 569 570 571 572 573 574 575 576
"

	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.
577
(if it exists and is accessible by the gui process).
578 579 580
"

	set helptext(Quit) "
581
Terminate the tkx11vnc gui.  Any x11vnc server will be left running.
582 583 584 585 586
"

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

587 588 589
Allows you to find more information about them, change their input
permissions, or disconnect them.

590 591 592
Note that the File transfer permission only applies to UltraVNC
file transfer, not TightVNC file transfer.

593
You will be prompted to confirm any disconnections.
594 595 596 597 598 599 600
"

	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.

601
You can choose to disconnect the client by clicking on the 
602 603 604 605
\"Disconnect\" checkbox and pressing \"OK\".  There will be a
confirmation dialog to doublecheck.

Alternatively, you can fine tune the VNC client's input permissions
606 607 608
by selecting any of the Keystrokes, Mouse-Motion, Button-Click,
Clipboard-Input, or Files checkboxes and pressing \"OK\".  This is like
the \"-input\" option but on a per-client basis.
609

610
To not change any aspects of the VNC client press \"Cancel\".
611 612 613 614
"

	set helptext(solid_color) "
Set the -solid color value.
615 616 617 618
"

	set helptext(xrandr_mode) "
Set the -xrandr mode value.
619 620 621
"

	set helptext(unixpw_list) "
622 623 624 625 626
Set the -unixpw usernames list value.
"

	set helptext(unixpw_nis_list) "
Set the -unixpw_nis usernames list value.
627 628 629 630
"

	set helptext(stunnel_pem) "
Set the -stunnel pem filename value.
631 632 633 634
"

	set helptext(ssl_pem) "
Set the -ssl pem filename value.
635 636 637 638
"

	set helptext(wireframe_mode) "
Set the -wireframe mode string value.
639 640 641 642 643 644
"

	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.
645 646
"

647
	set helptext(Tray) "
648 649
The tray/icon mode (started with \"x11vnc -gui tray ...\", etc.) presents
a small icon that indicates the status of the running x11vnc server.
650 651

Depending on your environment, this icon may be embedded in a system
652 653 654 655
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.
656 657

When the icon has a light background, that means no VNC viewers are
658
currently connected to the VNC display.
659 660

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

Moving the mouse pointer over the icon will popup a \"status balloon\"
664 665
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.
666

667 668
Clicking the left or right mouse button on the icon displays a menu
of actions:
669

670 671 672 673
    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.
674 675 676 677 678 679 680
    
    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\".
681

682 683 684
                      Pressing \"OK\" will initiate the reverse
                      connection.  Use a blank hostname to skip it.
    
685 686 687
    Disconnect      - Shows a popup menu of connected clients.  Click on
                      one to disconnect it, or click on \"All Clients\"
                      disconnect all clients.
688 689 690 691 692 693

    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\".
694 695 696 697
    
    Stop x11vnc     - Directs the x11vnc server to disconnect all vncviewers
                      and then exit.  The tray/icon GUI then exits as well.

698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713
    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
714

715 716
Termination:

717 718 719
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
720
as the \"Stop x11vnc\" action in the menu. (This will disconnect any
721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737
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.
    
738 739 740 741 742 743 744
"

	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.

745 746 747 748 749
 - \"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
750 751
   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
752 753 754 755 756 757 758 759 760 761 762 763 764
   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
765 766
   access to the display.  This will only work if x11vnc was started with 
   the -gui icon or -gui tray mode.
767 768
   
 - \"ViewOnly Password\" lets you set the session password viewers may
769 770
   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.
771 772 773 774

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).
775 776 777 778 779 780 781

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.

782 783 784 785
 - 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.
786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818


--------------------------------------------------------------------
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.
"
819

820 821
	set helptext(all) $helpall

822
	set helptext(Misc-Tuning:) "
823
x11vnc has what seems like hundreds of tuning parameters!  In this
824
sub-menu we place some lesser used ones.  Most likely you'll want to
825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852
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.
853 854 855 856 857 858 859 860 861 862 863
"

	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.

864 865 866 867
"

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

869 870 871 872 873
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).
"
874
#'
875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896

	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.
"
897
#'
898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922
	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
923
   actual recipe.  This may sound wasteful (i.e. not using some of the
924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942
   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
943
immediately reexposed without having the application redraw it.
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 971 972 973 974 975 976 977 978

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)
979
for this mode to be usable.
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 1013
"
	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).
1014 1015 1016 1017 1018 1019 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 1049 1050 1051 1052 1053 1054 1055
"
#'"

	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.
1056 1057 1058 1059 1060 1061
"

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

1062
For this mode, x11vnc \"spies\" on communication between the X server and
1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085
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.
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096
"

	set helptext(Ncache:) "
A simple client-side (viewer) caching scheme is enabled with the
\"-ncache n\" option.  It simply uses \"n\" framebuffer sized areas
below the actual display for caching window pixel data.  

Drawbacks are it uses a lot of RAM (roughly n times more), and the
pixels cache area is visible in the viewers.

The items in the sub-menu allow tweaking x11vnc's -ncache algorithm.
1097 1098 1099 1100 1101 1102
"

	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
1103 1104
is running on.  SharedMemory gives a performance speedup.  However, if you
need to modify this scenario for special usage these options allow you to.
1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117
"

	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.
1118
You can adjust that behavior with these options.
1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143
"

	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
1144
window both the gui *and* the x11vnc server terminate.
1145 1146
"

1147 1148 1149 1150 1151
	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.

1152 1153 1154 1155 1156 1157
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)

1158
All menu items have a (?) button one can click on to get more information
1159
about the option or command.
1160 1161 1162 1163

There are two states tkx11vnc can be in:

	1) Available to control a running x11vnc process.
1164

1165 1166
	2) Getting ready to start a x11vnc process.

1167 1168
Most people will just use state 1).

1169 1170 1171 1172
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,
1173
thereby changing to state 2).  There are other actions available too.
1174

1175
In state 2) the Menu items available in the menus (\"Actions\", \"Clients\",
1176 1177 1178 1179 1180 1181 1182 1183 1184
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).
1185
(update: simple password setting is now allowed in \"tray\" or \"icon\" mode).
1186

1187

1188 1189 1190
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.
1191

1192
For example, one might use ssh to access the remote machine where the
1193 1194 1195 1196
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.
1197 1198 1199 1200 1201


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

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

1206 1207 1208 1209 1210
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).
1211

1212 1213 1214
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.
1215

1216 1217 1218
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.
1219

1220
5) At the bottom is an entry area.  When one selects a menu item that
1221 1222 1223 1224
   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.
1225

1226 1227 1228 1229
   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.
1230

1231 1232

CASCADES BUG: There is a bug not yet worked around for the cascade menus
1233 1234
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
1235 1236 1237
you can click on its items.  Dragging with a mouse button held down will
not work (sorry!).

1238 1239 1240 1241 1242 1243 1244 1245

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\"
1246
"
1247

1248
set under_wally "
1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262
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.

1263
"
1264 1265 1266 1267 1268 1269

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
1270
mode by toggling \"Misc -> simple_gui\".
1271 1272 1273 1274 1275 1276 1277 1278

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
1279 1280
   be posted, e.g. when traversing menu items text indicating how to get
   help on the item and its current value will be displayed.
1281

1282 1283 1284 1285 1286
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).
1287

1288 1289 1290
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.
1291

1292 1293 1294
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.
1295 1296

5) At the bottom is an entry area.  When one selects a menu item that
1297 1298 1299 1300
   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.
1301

1302 1303 1304 1305
   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.
1306

1307
CASCADES BUG: There is a bug not yet worked around for the cascade menus
1308 1309 1310 1311 1312 1313 1314 1315
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!).

"
}

1316 1317 1318 1319 1320 1321
}

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];
1322
	wm geometry $w +$x+$y
1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345
	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
}

1346
proc set_name {name} {
1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360
	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
	}
1361
	set w "."
1362
	if {$icon_mode} {
1363 1364
		wm title    $w "$name"
		wm iconname $w "$name"
1365 1366 1367 1368
		set w $full_win
	}
	wm title    $w "$name"
	wm iconname $w "$name"
1369 1370
}

1371 1372 1373 1374 1375
proc make_toplevel {w {title ""}} {
	catch {destroy $w}
	toplevel  $w;
	bind $w <Escape> "destroy $w"
	if {$title != ""} {
1376 1377
		wm title    $w $title
		wm iconname $w $title
1378 1379 1380
	}
}

1381
proc textwin {name title text {entry ""}} {
1382
	global max_text_height max_text_width
1383
	global bfont ffont
1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400

	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 \
1401 1402
			-yscrollcommand "$w.f.y set" -relief ridge \
			-font $ffont;
1403
	scrollbar $w.f.y -orient v -relief sunken -command "$w.f.t yview";
1404 1405
	button    $w.f.b -text "Dismiss" -command "destroy $w" -font $bfont \
			-pady 2
1406 1407 1408 1409 1410

	$w.f.t insert 1.0 $text;

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

1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428
	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
	}

1429 1430
	wm withdraw $w
	pack $w.f.b -side bottom -fill x 
1431 1432 1433 1434 1435 1436 1437
	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"
	}
1438 1439 1440 1441 1442
	pack $w.f.y -side right -fill y;
	pack $w.f.t -side top -fill both -expand 1;
	update

	center_win $w
1443 1444

	return $w
1445 1446 1447 1448
}

proc active_when_connected {item} {
	global helpremote helptext
1449 1450 1451 1452 1453 1454 1455 1456 1457 1458
	global icon_mode

	if {$icon_mode} {
		if {$item == "passwd"} {
			return 1
		}
		if {$item == "viewpasswd"} {
			return 1
		}
	}
1459 1460 1461

	if {[opt_match G $item]} {
		return 1
1462 1463 1464 1465
	} elseif {[opt_match R $item]} {
		return 1
	} elseif {[opt_match S $item]} {
		return 0
1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479
	} 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} {
1480 1481 1482 1483 1484 1485 1486 1487 1488
	global helpremote helptext beginner_mode

	if {$beginner_mode} {
		if {[opt_match G $item]} {
			return 1
		}
		if {$item == "display"} {
			return 1
		}
1489 1490 1491
		if {$item == "attach"} {
			return 1
		}
1492 1493 1494 1495 1496
		if {$item == "debug_gui"} {
			return 1
		}
		return 0
	}
1497 1498 1499

	if {[opt_match G $item]} {
		return 1
1500 1501 1502 1503
	} elseif {[opt_match S $item]} {
		return 1
	} elseif {[opt_match R $item]} {
		return 0
1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517
	} 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} {
1518 1519
	global helptext helpremote menu_var
	global query_ans query_aro
1520
	global beginner_mode
1521 1522 1523 1524

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

1525 1526 1527
	if {$item == "NewClient"} {
		;
	} elseif {[is_gui_internal $item]} {
1528 1529
		if {$item != "gui" && $item != "all" && $item != "Misc-Tuning:" \
		    && $item != "Properties" && $item != "Tray"} {
1530 1531
			append text "    + Is a gui internal Action (cannot be set).\n";
		}
1532 1533 1534 1535 1536 1537 1538
	} 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";
	}
1539 1540 1541
	if {$item == "NewClient"} {
		;
	} elseif {[is_gui_internal $item]} {
1542 1543 1544 1545
		;
	} elseif {[active_when_starting $item]} {
		append text "    + Can be set at x11vnc startup.\n";
	} else {
1546 1547 1548
		if {! $beginner_mode} {
			append text "    - Cannot be set at x11vnc startup.\n";
		}
1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572
	}
	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
	}

1573 1574 1575 1576 1577
	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"
1578 1579 1580 1581

		if {$item == "passwd" || $item == "viewpasswd"} {
			;
		} elseif {$menu_var($item) == ""} {
1582 1583 1584 1585
			append text "$unset_str\n"
		} else {
			append text "$menu_var($item)\n"
		}
1586 1587 1588 1589
		if {$item == "http" || $item == "httpdir" || $item == "httpport"} {
			global vnc_url;
			append text "\nURL: $vnc_url\n"
		}
1590 1591
	}

1592 1593 1594
	if {$item == "start"} {
		set str [get_start_x11vnc_txt]
		append_text "$str\n"
1595 1596 1597
#		append text "\nPossible \$HOME/.x11vncrc settings for this command:\n\n"
#		set rctxt [get_start_x11vnc_cmd 1]
#		append text "$rctxt\n"
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
	}

	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;
		}
1636
		if {[regexp {^-([0-9A-z_][0-9A-z_]*)} $line match name]} {
1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 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
			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;
		}
1715
		if {[regexp {^([0-9A-z_][0-9A-z_:]*)} $line match name]} {
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 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817
			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)
1818 1819 1820
		if {![winfo exists $menu_button]} {
			continue
		}
1821 1822 1823 1824 1825
		$menu_button configure -state $state
	}
}

proc menus_enable {} {
1826 1827
	global menus_disabled

1828
	menus_state "normal"
1829
	set menus_disabled 0
1830 1831 1832
}

proc menus_disable {} {
1833 1834 1835
	global menus_disabled

	set menus_disabled 1
1836 1837 1838 1839 1840 1841
	menus_state "disabled"
}

# Entry box utilities:
proc entry_state {x state} {
	global entry_box entry_label entry_ok entry_help entry_skip entry_browse
1842
	global old_labels
1843
	if {$x == "all"} {
1844 1845 1846
		if {!$old_labels} {
			$entry_label configure -state $state
		}
1847 1848 1849 1850 1851 1852
		$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"} {
1853 1854 1855
		if {!$old_labels} {
			$entry_label configure -state $state
		}
1856 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
	} 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.

1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 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
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} {
1976 1977 1978 1979 1980
		if [regexp {passwd} $rargs] {
			append_text "x11vnc ..."
		} else {
			append_text "x11vnc $rargs ..."
		}
1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994
	}

	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]
1995 1996 1997

		global last_query_all_time
		set last_query_all_time [clock seconds]
1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035
	}

	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
		}
	}
}

2036
proc set_kmbc_str {} {
2037
	global vl_bk vl_bm vl_bb vl_bc vl_bf vr_bk vr_bm vr_bb vr_bc vr_bf
2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048

	set str ""
	if {$vl_bk} {
		append str "K"
	}
	if {$vl_bm} {
		append str "M"
	}
	if {$vl_bb} {
		append str "B"
	}
2049 2050 2051
	if {$vl_bc} {
		append str "C"
	}
2052 2053 2054 2055
	if {$vl_bf} {
		append str "F"
	}
	if {$vr_bk || $vr_bm || $vr_bb || $vr_bc || $vr_bf} {
2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066
		append str ","
	}
	if {$vr_bk} {
		append str "K"
	}
	if {$vr_bm} {
		append str "M"
	}
	if {$vr_bb} {
		append str "B"
	}
2067 2068 2069
	if {$vr_bc} {
		append str "C"
	}
2070 2071 2072
	if {$vr_bf} {
		append str "F"
	}
2073 2074 2075 2076 2077 2078
	entry_insert $str
}

proc insert_input_window {} {
	global text_area cleanup_window
	global ffont menu_var
2079
	global vl_bk vl_bm vl_bb vl_bc vl_bf vr_bk vr_bm vr_bb vr_bc vr_bf
2080 2081

	append_text "\nUse these checkboxes to set the input permissions, "
2082
	append_text "or type in the \"KMBCF...\"\n"
2083
	append_text "-input string manually.  Then press \"OK\" or \"Cancel\".\n"
2084 2085
	append_text "(note: an empty setting means use the default behavior, "
	append_text "see viewonly)\n\n"
2086 2087 2088 2089 2090 2091 2092 2093 2094
	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 \
2095
		-pady 1 -command set_kmbc_str -text "Keystrokes" 
2096
	checkbutton $fl.bm -font $ffont -anchor w -variable vl_bm \
2097
		-pady 1 -command set_kmbc_str -text "Mouse-Motion" 
2098
	checkbutton $fl.bb -font $ffont -anchor w -variable vl_bb \
2099
		-pady 1 -command set_kmbc_str -text "Button-Click"
2100 2101
	checkbutton $fl.bc -font $ffont -anchor w -variable vl_bc \
		-pady 1 -command set_kmbc_str -text "Clipboard-Input"
2102 2103
	checkbutton $fl.bf -font $ffont -anchor w -variable vl_bf \
		-pady 1 -command set_kmbc_str -text "Files"
2104
	label $fr.l -pady 1 -font $ffont -text "View-Only clients:"
2105
	checkbutton $fr.bk -font $ffont -anchor w -variable vr_bk \
2106
		-pady 1 -command set_kmbc_str -text "Keystrokes" 
2107
	checkbutton $fr.bm -font $ffont -anchor w -variable vr_bm \
2108
		-pady 1 -command set_kmbc_str -text "Mouse-Motion" 
2109
	checkbutton $fr.bb -font $ffont -anchor w -variable vr_bb \
2110
		-pady 1 -command set_kmbc_str -text "Button-Click"
2111 2112
	checkbutton $fr.bc -font $ffont -anchor w -variable vr_bc \
		-pady 1 -command set_kmbc_str -text "Clipboard-Input"
2113 2114
	checkbutton $fr.bf -font $ffont -anchor w -variable vr_bf \
		-pady 1 -command set_kmbc_str -text "Files"
2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130

	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
2131
	set vl_bc 0
2132 2133
	set vl_bf 0

2134 2135 2136
	set vr_bk 0
	set vr_bm 0
	set vr_bb 0
2137
	set vr_bc 0
2138
	set vr_bf 0
2139 2140 2141 2142 2143 2144 2145 2146 2147 2148

	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
	}
2149 2150 2151
	if {[regexp -nocase {C} $normal]} {
		set vl_bc 1
	}
2152 2153 2154
	if {[regexp -nocase {F} $normal]} {
		set vl_bf 1
	}
2155 2156 2157 2158 2159 2160 2161 2162 2163
	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
	}
2164 2165 2166
	if {[regexp -nocase {C} $viewonly]} {
		set vr_bc 1
	}
2167 2168 2169
	if {[regexp -nocase {F} $viewonly]} {
		set vr_bf 1
	}
2170

2171 2172
	pack $fl.l $fl.bk $fl.bm $fl.bb $fl.bc $fl.bf -side top -fill x
	pack $fr.l $fr.bk $fr.bm $fr.bb $fr.bc $fr.bf -side top -fill x
2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184
	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} {
2185
	global ca_bk ca_bm ca_bb ca_bc ca_bf ca_di
2186 2187 2188 2189 2190 2191

	if {$ca_di} {
		entry_insert "disconnect"
		$w.bk configure -state disabled
		$w.bm configure -state disabled
		$w.bb configure -state disabled
2192
		$w.bc configure -state disabled
2193
		$w.bf configure -state disabled
2194 2195 2196 2197 2198 2199
		return
	}

	$w.bk configure -state normal
	$w.bm configure -state normal
	$w.bb configure -state normal
2200
	$w.bc configure -state normal
2201
	$w.bf configure -state normal
2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212

	set str ""
	if {$ca_bk} {
		append str "K"
	}
	if {$ca_bm} {
		append str "M"
	}
	if {$ca_bb} {
		append str "B"
	}
2213 2214 2215
	if {$ca_bc} {
		append str "C"
	}
2216 2217 2218
	if {$ca_bf} {
		append str "F"
	}
2219 2220 2221 2222 2223 2224
	entry_insert $str
}

proc insert_client_action_window {input} {
	global text_area cleanup_window
	global ffont menu_var
2225
	global ca_bk ca_bm ca_bb ca_bc ca_bf ca_di
2226 2227

	append_text "\nUse these checkboxes to set the input permissions "
2228
	append_text "for this client\n-OR- whether to disconnect it instead.  "
2229
	append_text "Then press \"OK\" or \"Cancel\".\n\n"
2230 2231 2232 2233
	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 \
2234
		-pady 1 -command "set_ca_str $w" -text "Disconnect  " 
2235 2236 2237
	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 \
2238
		-pady 1 -command "set_ca_str $w" -text "Mouse-Motion" 
2239
	checkbutton $w.bb -font $ffont -anchor w -variable ca_bb \
2240
		-pady 1 -command "set_ca_str $w" -text "Button-Click"
2241 2242
	checkbutton $w.bc -font $ffont -anchor w -variable ca_bc \
		-pady 1 -command "set_ca_str $w" -text "Clipboard"
2243 2244
	checkbutton $w.bf -font $ffont -anchor w -variable ca_bf \
		-pady 1 -command "set_ca_str $w" -text "Files"
2245 2246 2247 2248 2249

	set ca_di 0
	set ca_bk 0
	set ca_bm 0
	set ca_bb 0
2250
	set ca_bf 0
2251
	set ca_bc 0
2252 2253 2254 2255 2256 2257 2258 2259 2260 2261

	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
	}
2262 2263 2264
	if {[regexp -nocase {C} $input]} {
		set ca_bc 1
	}
2265 2266 2267
	if {[regexp -nocase {F} $input]} {
		set ca_bf 1
	}
2268

2269
	pack $w.di $w.bk $w.bm $w.bb $w.bc $w.bf -side left
2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285
	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}
	}
}

2286
# For updating a string variable.   Also used for simple OK/Cancel dialogs
2287 2288 2289
# with entry = 0.
proc entry_dialog {item {entry 1}} {
	global menu_var entry_str entry_set entry_dialog_item
2290
	global unset_str connected_to_x11vnc entry_box
2291 2292 2293 2294 2295 2296 2297 2298

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

	entry_enable
	menus_disable

2299 2300 2301 2302
	if {$item == "passwd" || $item == "viewpasswd"} {
		$entry_box configure -show "*"
	}

2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319
	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
	}

2320 2321 2322 2323 2324 2325 2326
	set clean_text_window 0;

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

2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343
	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
2344 2345 2346 2347 2348

	if {$clean_text_window} {
		cleanup_text_window;
	}

2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359
	update

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

	$entry_box configure -show ""

2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393
	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} {
2394 2395
	global query_result_list

2396 2397
	set ok 0
	set found ""
2398 2399 2400 2401

	set query_result_list [split_query $query]

	foreach q $query_result_list {
2402 2403
		# XXX following will crash if $item is not a good regexp
		# need to protect it \Q$item\E style...
2404 2405 2406 2407
#		if {[regexp "^$item:" $q]} {
#			set found $q
#		}
		if {[string first "$item:" $q] == 0} {
2408 2409 2410 2411
			set found $q
		}
		if {$q == $expected} {
			set ok 1
2412 2413 2414
			if {$found != ""} {
				break;
			}
2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425
		}
	}
	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
	}
2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444
	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
				}
			}
		}
	}
2445 2446 2447 2448 2449 2450 2451 2452
	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
2453 2454 2455
	} elseif {[regexp {:[0-9]\.[0-9]} $expected]} {
		append_text "\t($msg)\n"
		return 1
2456 2457
	} elseif {$item == "connect" || $item == "disconnect"
	    || $item == "client" || $item == "client_input"} {
2458 2459
		append_text "\t($msg)\n"
		return 1
2460 2461 2462
	} elseif {$item == "passwd" || $item == "viewpasswd"} {
		append_text "\t($msg)\n"
		return 1
2463 2464 2465 2466 2467 2468
	} else {
		append_text "\t*FAILED* $msg\n"
		return 0
	}
}

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
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 ""
2504 2505
			} elseif {$item == "gui"} {
				continue
2506 2507 2508 2509 2510 2511 2512 2513
			} 
			# 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"
2514 2515
#			} elseif {$item == "overlay_nocursor" && $val == 0} {
#				set val 1
2516 2517 2518 2519 2520 2521 2522 2523
			}

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

2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611
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)
			}
		}
	}
}

2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627
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)
		}
	}
}

2628
proc update_menu_vars {{query ""}} {
2629
	global all_settings menu_var query_result_list
2630 2631 2632

	set debug [in_debug_mode]

2633 2634 2635 2636
	if {$query == "USE_LIST"} {
		;
	} elseif {$query == ""} {
		set query_result_list [split_query $all_settings]
2637
	} else {
2638
		set query_result_list [split_query $query]
2639
	}
2640 2641

	foreach piece $query_result_list {
2642
#puts stderr "UMV: $piece"
2643 2644 2645
		if {[regexp {^([^:][^:]*):(.*)$} $piece m0 item val]} {
			if {[info exists menu_var($item)]} {
				set old $menu_var($item)
2646
#puts stderr "     $old"
2647 2648 2649 2650 2651 2652 2653
				if {$val == "N/A"} {
					continue
				}
				set menu_var($item) $val
			}
			if {$item == "clients"} {
				update_clients_menu $val
2654 2655 2656 2657
			} elseif {$item == "display"} {
				set_x11_display $val
			} elseif {$item == "vncdisplay"} {
				set_vnc_display $val
2658 2659
			} elseif {$item == "http_url"} {
				set_vnc_url $val
2660 2661 2662 2663 2664
			}
		}
	}
}

2665 2666
proc load_settings {{file ""}} {
	global menu_var default_var env
2667

2668 2669 2670 2671 2672
	if {$file == ""} {
		if {![info exists menu_var(load-settings)]} {
			return
		}
		set file $menu_var(load-settings)
2673 2674 2675 2676 2677 2678
	}
	if {$file == ""} {
		return
	}

	set fh ""
2679 2680
	set filex [tilde_expand $file]
	catch {set fh [open $filex "r"]}
2681 2682

	if {$fh == ""} {
2683
		append_text "load_settings: *** failed to open $filex ***\n"
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
		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

2710 2711 2712
	set count 0
	set parms ""

2713 2714 2715 2716 2717 2718 2719 2720 2721 2722
	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
		}
2723 2724 2725
		if {$item == "gui"} {
			continue
		}
2726 2727 2728
		if {[info exists menu_var($item)]} {
			if {[value_is_bool $item]} {
				set menu_var($item) 1
2729 2730
				incr count
				append parms "  -$item\n"
2731 2732 2733
			} elseif {[value_is_string $item]} {
				if {$value != ""} {
					set menu_var($item) $value
2734 2735 2736
					set nitem [get_nitem $item]
					append parms "  -$nitem $value\n"
					incr count
2737 2738 2739 2740
				}
			}
		}
	}
2741 2742 2743 2744 2745 2746 2747
	append_text "loaded $count parameter settings from $filex"
	if {$count > 0} {
		append_text ":\n"
		append_text $parms
	} else {
		append_text ".\n"
	}
2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807
}

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
		}
2808
		set file [tilde_expand $file]
2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843
		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
		}
	}
}

2844 2845 2846 2847 2848 2849 2850 2851 2852 2853
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)]} {
2854
			if {[is_action $item]} {
2855 2856 2857 2858 2859 2860 2861 2862
				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
			}
		}
	}
2863
	append_text "Cleared all settings.\n"
2864 2865
}

2866 2867 2868 2869 2870
proc defaults_all {} {
	copy_default_vars
	append_text "Reset all variables to default values.\n"
}

2871 2872
proc all_query_vars {} {
	global query_ans_list query_aro_list all_settings
2873
	global cache_all_query_vars
2874
	
2875 2876 2877 2878
	if {$cache_all_query_vars != ""} {
		return $cache_all_query_vars
	}

2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893
	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"
		}
	}
2894 2895
	set cache_all_query_vars $qry

2896 2897 2898 2899 2900
	return $qry
}

proc query_all {{quiet 0}} {
	global query_ans_list query_aro_list all_settings
2901
	global last_query_all_time
2902 2903 2904 2905 2906 2907 2908 2909

	set qry [all_query_vars]

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

	if {[regexp {ans=} $all]} {
		if {! $quiet} {
2910
			append_text "Retrieved all current settings.\n"
2911 2912 2913 2914 2915
		}
		set all_settings $all
		update_menu_vars $all
	} else {
		if {! $quiet} {
2916
			append_text "Failed to retrieve current settings.\n"
2917 2918
		}
	}
2919
	set last_query_all_time [clock seconds]
2920 2921 2922 2923
	return $all
}

proc set_info {str} {
2924 2925 2926 2927 2928
	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"
2929 2930 2931 2932 2933
	set info_str "$str"
	update
}

proc append_text {str} {
2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953
	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
	}
	
2954 2955 2956 2957 2958 2959
	$text_area insert end $str
	$text_area see end
}

proc show_all_settings {} {
	global all_settings
2960 2961 2962 2963
	global client_sock client_tail
	global x11vnc_client_file

	set txt "\nRead-Write settings:\n\n"
2964 2965 2966 2967
	foreach item [split_query $all_settings]  {
		regsub {:} $item {: } item
		append txt "  $item\n"
		if {[regexp {noremote} $item]} {
2968
			append txt "\nRead-Only settings:\n\n"
2969 2970
		}
	}
2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985
	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"
2986 2987 2988
	textwin "Settings" "All Current Settings" $txt
}

2989 2990
proc show_logfile {} {
	global menu_var unset_str
2991 2992

	set logfile [tilde_expand $menu_var(logfile)]
2993 2994
	
	if {$logfile == "" || $logfile == $unset_str} {
2995
		set txt "\nNo logfile was specified at x11vnc startup.\n\n"	
2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015
	} 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 {} {
3016
	global menu_var unset_str ffont
3017 3018 3019 3020
	set logfile $menu_var(logfile)
	
	set txt ""
	if {$logfile == "" || $logfile == $unset_str} {
3021
		set txt "\nNo logfile was specified at x11vnc startup.\n\n"	
3022 3023 3024 3025
	} elseif {![file exists $logfile]} {
		set txt "\nLogfile \"$logfile\" does not exist.\n\n"
	} else {
		set cmd ""
3026
		set xterm_cmd "xterm -sb -fn $ffont -geometry 80x45 -title x11vnc-logfile -e"
3027 3028
		set cmd [split $xterm_cmd]
		lappend cmd "tail"
3029
		lappend cmd "-3000f"
3030 3031 3032 3033 3034 3035 3036 3037 3038
		lappend cmd $logfile
		lappend cmd "&"
		catch {[eval exec $cmd]}
	}
	if {$txt != ""} {
		textwin "Logfile" "Logfile" $txt
	}
}

3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068
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
}

3069 3070 3071 3072 3073 3074 3075 3076
proc do_stop_quit {} {
	push_new_value "stop" "stop" 1 0
	set_connected no
	update
	after 250
	destroy .
}

3077 3078
# Menu item is an action:
proc do_action {item} {
3079
	global menu_var connected_to_x11vnc beginner_mode
3080 3081 3082 3083

	if {[in_debug_mode]} {
		append_text "action: \"$item\"\n"
	}
3084
#puts "action: \"$item\"\n"
3085 3086

	if {$item == "ping"} {
3087 3088 3089 3090 3091
		if {$beginner_mode} {
			try_connect_and_query_all
		} else {
			try_connect
		}
3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107
		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
3108 3109 3110 3111 3112 3113
	} elseif {$item == "defaults-all"} {
		defaults_all
		return
	} elseif {$item == "save-settings"} {
		save_settings
		return
3114 3115 3116
	} elseif {$item == "show-start-cmd"} {
		show_start_cmd
		return
3117 3118 3119
	} elseif {$item == "all-settings"} {
		show_all_settings
		return
3120 3121 3122 3123 3124 3125
	} elseif {$item == "show-logfile"} {
		show_logfile
		return
	} elseif {$item == "tail-logfile"} {
		tail_logfile
		return
3126 3127 3128
	} elseif {$item == "Misc-Tuning:"} {
		menu_help "$item"
		return
3129 3130 3131
	} elseif {$item == "WindowView"} {
		change_view_state
		return
3132 3133 3134
	} elseif {$item == "quit" || $item == "Quit"} {
		destroy .
		exit 0
3135
	} elseif {$item == "stop+quit"} {
3136
		do_stop_quit
3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149
	}

	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
	}

3150 3151 3152 3153 3154
	if {$item == "load-settings"} {
		load_settings
		return
	}

3155 3156 3157 3158 3159 3160 3161 3162
	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
		
3163
	} elseif {[opt_match Q $item]} {
3164 3165 3166 3167 3168 3169
		push_new_value $item $name $new 1
	} else {
		push_new_value $item $name $new 0
	}
}

3170 3171 3172 3173 3174 3175
proc ptime {time} {
	set usec [lindex [split $time] 0]
	set sec [format "%.3f" [expr "$usec / 1000000.0"]]
	puts "time: $sec secs."
}

3176 3177 3178
proc do_var {item} {
	global connected_to_x11vnc item_cascade menu_var

3179 3180
	set debug [in_debug_mode]

3181
	set string 0
3182
	if {[is_action $item] || $item == "WindowView"} {
3183
		# Menu item is action:
3184 3185 3186 3187 3188
		if {$debug} {
			ptime [time {do_action $item}]
		} else {
			do_action $item
		}
3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212
		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} {
3213 3214 3215 3216 3217
		if {$debug} {
			ptime [time {push_new_value $item $name $new 1}]
		} else {
			push_new_value $item $name $new 1
		}
3218 3219 3220 3221 3222

		if {$item == "http"} {
			global vnc_url
			append_text "  URL: $vnc_url\n"
		}
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
	}
}

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} {
3248 3249 3250 3251 3252 3253
	if {$item == "Properties"} {
		return 1
	}
	if {$item == "Tray"} {
		return 1
	}
3254 3255 3256 3257 3258 3259 3260 3261 3262
	return [opt_match G $item]
}

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

proc value_is_string {item} {
	global item_bool
3263 3264 3265
	if {![info exists item_bool($item)]} {
		return 0
	}
3266 3267 3268 3269 3270 3271 3272 3273 3274
	if {! $item_bool($item)} {
		return 1
	} else {
		return 0
	}
}

proc value_is_bool {item} {
	global item_bool
3275 3276 3277
	if {![info exists item_bool($item)]} {
		return 0
	}
3278 3279 3280 3281 3282 3283 3284
	if {$item_bool($item)} {
		return 1
	} else {
		return 0
	}
}

3285 3286
proc split_query0 {query} {
	# original slower way with regexp/regsub
3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305
	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
}

3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337
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
}

3338 3339 3340
proc set_x11_display {name} {
	global x11_display
	set x11_display "x11vnc X display: $name"
3341
	set_name "tkx11vnc - $name"
3342 3343
}
proc set_vnc_display {name} {
3344
	global vnc_display icon_mode
3345
	set vnc_display "VNC display: $name"
3346 3347 3348 3349

	if {$icon_mode} {
		set_icon_label
	}
3350
}
3351 3352 3353 3354
proc set_vnc_url {name} {
	global vnc_url
	set vnc_url $name
}
3355 3356
proc no_x11_display {} {
	set_x11_display "(*none*)"
3357
	set_name "tkx11vnc"
3358 3359 3360 3361
}
proc no_vnc_display {} {
	set_vnc_display "(*none*)"
}
3362 3363 3364
proc no_vnc_url {} {
	set_vnc_url "(*none*)"
}
3365

3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381
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"
}

3382 3383 3384 3385 3386 3387 3388
proc fetch_displays {} {

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

	set got_x11 0
	set got_vnc 0
3389
	set got_url 0
3390 3391 3392 3393 3394 3395 3396 3397

	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
3398 3399 3400
		} elseif {[regexp {^http_url:(.*)$} $item m0 m1]} {
			set_vnc_url $m1
			set got_url 1
3401 3402 3403 3404 3405 3406 3407 3408
		}
	}
	if {! $got_x11} {
		no_x11_display
	}
	if {! $got_vnc} {
		no_vnc_display
	}
3409 3410 3411
	if {! $got_url} {
		no_vnc_url
	}
3412 3413
}

3414 3415 3416 3417 3418 3419
proc client_dialog {client} {
	set cid ""
	set host ""
	set ip ""
	global menu_var text_area cleanup_window item_bool

3420 3421 3422 3423 3424 3425
	#<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
3426
		set port $m3
3427
		set user $m4
3428 3429
		set unix $m5
		set host $m6
3430
		regsub {\..*$} $host "" host
3431 3432 3433 3434 3435 3436 3437 3438
		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"
3439
		append_text " - originally logged in as: "
3440
		if {$logvo == "1" } {
3441
			append_text "View-Only Client"
3442
		} else {
3443 3444 3445 3446 3447
			append_text "Normal Client"
		}
		if {$ltime != ""} {
			set tim [clock format $ltime]
			append_text ",  $tim"
3448
		}
3449
		append_text "\n"
3450
		append_text " - currently allowed input: "
3451 3452 3453
		set sk 0
		set sm 0
		set sb 0
3454
		set sc 0
3455
		set sf 0
3456
		if {[regexp -nocase {K} $input]} {
3457
			append_text "Keystrokes"
3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470
			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 ", "
			}
3471
			append_text "Button-Click"
3472 3473
			set sb 1
		}
3474 3475 3476 3477 3478 3479 3480
		if {[regexp -nocase {C} $input]} {
			if {$sk || $sm || $sb} {
				append_text ", "
			}
			append_text "Clipboard"
			set sm 1
		}
3481 3482 3483 3484 3485 3486 3487 3488
		if {[regexp -nocase {F} $input]} {
			if {$sk || $sm || $sb || $sf} {
				append_text ", "
			}
			append_text "Files"
			set sf 1
		}
		if {! $sk && ! $sm && ! $sb && ! $sm && ! $sf} {
3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514
			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 {
3515
		regsub -all -nocase {[^KMBCF]} $val "" val
3516 3517 3518 3519 3520
		set item_bool(client_input) 0
		push_new_value "client_input" "client_input" "$cid:$val" 0
	}
}

3521 3522 3523 3524
proc disconnect_dialog {client} {
	set cid ""
	set host ""
	set msg "\n"
3525 3526 3527 3528 3529
	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
3530
		set port $m3
3531 3532 3533
		set user $m4
		set unix $m5
		set host $m6
3534
		regsub {\..*$} $host "" host
3535 3536 3537 3538 3539 3540 3541 3542
		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"
3543 3544 3545 3546 3547
	}
	if {$cid == ""} {
		append_text "Invalid client info string: $client\n"
		return
	}
3548
	append msg "*** To *DISCONNECT* this client press \"OK\" again, otherwise press \"Cancel\"\n"
3549
	bell
3550
	if {[warning_dialog $msg "current"]} {
3551 3552 3553 3554 3555 3556
		push_new_value "disconnect" "disconnect" $cid 1
	} else {
		append_text "disconnect cancelled.\n"
	}
}

3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571
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]
3572
		if {[regexp {^num-clients} $name]} {
3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588
			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"
	}
}

3589
proc update_clients_menu {list} {
3590
	global item_cascade ffont
3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601
	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
	}

3602 3603
	set subm $item_cascade(current);
	catch {destroy $subm}
3604
	menu $subm -tearoff 0 -font $ffont
3605
	$subm add command
3606 3607
	$subm add command -label "refresh-list" \
		-command "update_clients_and_repost"
3608 3609 3610
	$subm add separator
	set count 0
	foreach client [split $list ","] {
3611
		if {![regexp {^[a-z0-9]*[a-z0-9]:} $client]} {
3612 3613 3614
			#append_text "Skipping client line: "
			#append_text $client
			#append_text "\n"
3615 3616 3617 3618
			continue
		}
		regsub -all {[{}()~!$&*|;'"`{}<>\[\]]} $client "" client
		#'
3619 3620 3621 3622 3623 3624
		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
3625
			regsub {\..*$} $host "" host
3626 3627 3628 3629 3630 3631
			set clabel "$host $id"
			if {$unix != "" && $unix != "none"} {
				set clabel "$unix@$clabel"
			} elseif {$user != "unknown-user"} {
				set clabel "$user@$clabel"
			}
3632 3633 3634 3635
		} else {
			regsub {:.*$} $client "" clabel
		}
		$subm add command -label "$clabel" \
3636
			-command "client_dialog \{$client\}"
3637 3638
		incr count
	}
3639
	$subm entryconfigure 0 -label "num-clients: $count"
3640 3641 3642
}

proc set_widgets {} {
3643
	global connected_to_x11vnc item_case item_menu item_entry menu_m
3644 3645

	foreach item [array names item_case] {
3646
		if ![info exists item_case($item)] { continue; }
3647
		set case $item_case($item)
3648
		if ![info exists item_menu($item)] { continue; }
3649
		set menu $item_menu($item)
3650
		if ![info exists item_entry($item)] { continue; }
3651
		set entry $item_entry($item)
3652 3653 3654 3655
		if {$entry < 0} {
			# skip case under beginner_mode 
			continue
		}
3656 3657 3658 3659
		set type [$menu type $entry]
		if {$type == "separator" || $type == "tearoff"} {
			continue
		}
3660 3661 3662
		if {![winfo exists $menu]} {
			continue
		}
3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678
		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
			}
		}
	}
}

3679 3680
proc toggle_simple_gui {} {
	global beginner_mode simple_gui_created
3681
	global connected_to_x11vnc make_gui_count
3682

3683 3684 3685 3686
	if {$beginner_mode} {
		append_text "\nSwitching to simple-gui mode.\n"
	} else {
		append_text "\nSwitching to power-user gui mode.\n"
3687 3688
	}

3689 3690 3691
	if {$make_gui_count == 1} {
		incr make_gui_count
	}
3692 3693 3694 3695 3696 3697 3698
	set simple_gui_created 1
	make_menu_items
	set_widgets
	set_internal_help
	append_text "\n"
}

3699 3700 3701
proc little_qs {m} {
	global bfont ffont beginner_mode
	global helpremote helptext helplabel
runge's avatar
runge committed
3702
	global tk_version osname
3703 3704 3705 3706

	if {$tk_version < 8.0} {
		return
	}
runge's avatar
runge committed
3707 3708 3709
	if {$osname == "Darwin"} {
		return
	}
3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749

	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
}

3750 3751 3752
proc make_menu_items {} {
	global template 
	global menu_b menu_m menu_count
3753
	global item_opts item_bool item_case item_menu item_entry menu_var unset_str
3754 3755 3756
	global item_cascade
	global bfont ffont beginner_mode simple_gui_created
	global helptext helpremote helplabel
3757

3758 3759 3760 3761 3762
	# some tweaks...
	if {![info exists menu_var(deny)]} {
		set menu_var(deny) 0
	}

3763
	set case "";
3764 3765 3766 3767 3768
	set L_casc ""
	set L_casc_count 0
	set L_menus [list]

	# Extract the menu items:
3769 3770 3771 3772 3773 3774
	foreach line [split $template "\n"] {
		if {[regexp {^Row:} $line]} {
			continue
		}
		if {[regexp {^[A-z]} $line]} {
			set case [string trim $line]
3775 3776 3777

			if {$simple_gui_created} {
				set i0 0
3778 3779 3780
				#if {$case == "Misc"} { # kludge for simple_gui
				#	set i0 1
				#}
3781 3782 3783
				catch {$menu_m($case) delete $i0 end}
			}
			set menu_count($case) 0
3784 3785
			continue;
		}
3786

3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807
		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

3808 3809 3810 3811 3812
		if {$item == "LOFF"} {
			set L_casc ""
			continue
		}

3813 3814 3815 3816 3817 3818 3819
		if {$item == "-- D"} {
			set beginner_sep 1
			set item "--"
		} else {
			set beginner_sep 0
		}

3820 3821 3822 3823
		set item_opts($item) $opts
		set item_case($item) $case
		set item_bool($item) $bool
		set item_cascade($item) ""
3824 3825 3826 3827 3828 3829 3830 3831 3832

		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
		}
3833 3834 3835

		set mvar 0 

3836 3837 3838 3839 3840
		if {$beginner_mode && ! $beginner_sep && ![opt_match D $item]} {
			set item_entry($item) "-1"
			continue;
		}

3841 3842 3843 3844
		set item_menu($item) $m

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

3846 3847 3848 3849 3850 3851 3852 3853
		# 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 \
3854
				-font $ffont \
3855 3856 3857 3858 3859
				-command {destroy .; exit 0}

		} elseif {$case == "Help"} {
			# Help is simple help:
			$m add command -label "$item" \
3860
				-font $ffont \
3861 3862
				-command "menu_help $item"

3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877
		} 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
3878 3879
			set subm $m.current_cascade
			catch {destroy $subm}
3880
			set item_cascade($item) $subm
3881
			update_clients_menu "INIT"
3882
			$m add cascade -label "$item" \
3883
				-font $ffont \
3884 3885 3886 3887 3888
				-menu $subm

		} elseif {[is_action $item]} {
			# Action
			$m add command -label "$item" \
3889
				-font $ffont \
3890
				-command "do_var $item"
3891 3892 3893
			if {![info exists menu_var($item)]} {
				set menu_var($item) "";	# for convenience
			}
3894 3895 3896 3897 3898

		} elseif {! $item_bool($item)} {
			# String
			if {[regexp -- {-C:(.*)} $item_opts($item) m0 m1]} {
				# Radiobutton select
3899 3900
				set subm $m.radio_cascade$menu_count($case)
				catch {destroy $subm}
3901
				menu $subm -tearoff 0 -font $ffont
3902 3903 3904 3905
				foreach val [split $m1 ","] {
					$subm add radiobutton -label "$val" \
						-command "do_var $item" \
						-value "$val" \
3906
						-font $ffont \
3907 3908 3909
						-variable menu_var($item)
				}
				$m add cascade -label "$item" \
3910
					-font $ffont \
3911 3912 3913 3914 3915
					-menu $subm
				set item_cascade($item) $subm
			} else {
				# Arbitrary_string
				$m add command -label "$item" \
3916
					-font $ffont \
3917 3918 3919 3920
					-command "do_var $item"
			}
			set mvar 1

3921
		} elseif {$item == "simple-gui"} {
3922 3923 3924 3925
			$m add checkbutton -label "$item" \
				-command "toggle_simple_gui" \
				-font $ffont \
				-variable beginner_mode
3926 3927 3928 3929
		} else {
			# Boolean
			$m add checkbutton -label "$item" \
				-command "do_var $item" \
3930
				-font $ffont \
3931
				-variable menu_var($item)
3932 3933 3934
			if {![info exists menu_var($item)]} {
				set menu_var($item) 0
			}
3935 3936
		}

3937 3938 3939 3940 3941 3942 3943 3944
		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)
		}
3945

3946
		if {$mvar} {
3947 3948 3949
			if {![info exists menu_var($item)]} {
				set menu_var($item) $unset_str
			}
3950 3951 3952
		}
	}

3953
	# Now make the little "(?)" help buttons
runge's avatar
runge committed
3954
	global osname
3955 3956 3957 3958
	foreach case [array names menu_m] {
		if {$case == "Help"} {
			continue;
		}
3959 3960 3961 3962
		little_qs $menu_m($case);
	}
	foreach m $L_menus {
		little_qs $m
3963
	}
3964 3965
}

3966
proc check_update_vars {} {
3967
	global last_query_all_time query_all_freq icon_mode
3968
	global connected_to_x11vnc client_tail client_sock
3969

3970 3971
	set now [clock seconds]

3972 3973
	set delay $query_all_freq
	if {$client_tail != "" && $client_sock == ""} {
3974 3975
		set delay [expr 2 * $query_all_freq]
	}
3976 3977 3978

	if {$connected_to_x11vnc} {
		set quiet 0
3979
		set refresh [expr "$last_query_all_time + $delay"]
3980 3981 3982 3983 3984

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

		if {$now > $refresh} {
3985
			append_text "Refreshing current settings... "
3986 3987 3988 3989 3990 3991 3992 3993
			query_all $quiet
			if {$quiet} {
				append_text "done\n"
			}
		}
	}
}

3994 3995 3996 3997
proc menu_posted {} {
	check_update_vars
}

3998 3999 4000 4001 4002 4003 4004 4005
proc props_widgets {state} {
	global props_buttons
	foreach w $props_buttons {
		$w configure -state $state	
	}
	update
}

4006 4007 4008 4009 4010 4011
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
4012
	global client_sock
4013

4014 4015
	props_widgets disabled

4016 4017 4018 4019 4020 4021 4022 4023
	set aft 500
	if {[info exists client_sock]} {
		if {$client_sock != ""} {
			set aft 150
		}
	}
	set did 0

4024
	if {$props_accept != $prop0_accept} {
4025
		if {$did > 0} {after $aft}; incr did
4026 4027 4028 4029 4030 4031 4032 4033 4034
		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} {
4035
		if {$did > 0} {after $aft}; incr did
4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049
		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} {
4050
		if {$did > 0} {after $aft}; incr did
4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064
		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} {
4065
		if {$did > 0} {after $aft}; incr did
4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078
		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
	}

4079
	set fpw 0
4080
	if {$props_passwd != $prop0_passwd} {
4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093
		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
4094
		if {$props_passwd == ""} {
4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 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
			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"} {
4141
			if {$did > 0} {after $aft}; incr did
4142 4143 4144 4145
			push_new_value "passwd" "passwd" "$props_passwd" 1
			set prop0_passwd $props_passwd
		}
		if {$case == "vpw"} {
4146
			if {$did > 0} {after $aft}; incr did
4147 4148
			push_new_value "viewpasswd" "viewpasswd" "$props_viewpasswd" 1
			set prop0_viewpasswd $props_viewpasswd
4149 4150 4151
		}
	}

4152
	props_widgets normal
4153 4154 4155
}

proc props_advanced {} {
4156
	global icon_mode icon_win props_win full_win
4157 4158 4159 4160 4161 4162 4163 4164 4165
	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
	}
4166
	update
4167 4168 4169 4170 4171 4172 4173 4174 4175
	wm deiconify $full_win
	update

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

4176
proc do_props {{msg ""}} {
4177 4178 4179 4180 4181 4182
	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
4183
	global props_buttons icon_noadvanced
4184
	global icon_mode icon_mode_at_startup
4185
	global screen_height screen_width
4186

4187 4188
	check_update_vars

4189 4190 4191 4192 4193
	set pady 1m
	if {$screen_height <= 360} {
		set pady 0m
	}

4194 4195 4196 4197 4198 4199 4200 4201
	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
4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255
		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

4256 4257 4258 4259 4260
	if [info exists props_buttons] {
		catch {unset props_buttons}
	}
	set props_buttons [list]

4261 4262 4263
	set w .props
	catch {destroy $w}
	toplevel $w
4264
	wm title $w "x11vnc Properties"
4265 4266 4267 4268 4269 4270
	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

4271 4272
	bind $w <KeyPress-Escape> "destroy $w"

4273
	pack $b1.apply $b1.cancel $b1.ok -side right -expand 1
4274
	lappend props_buttons $b1.apply $b1.cancel $b1.ok
4275 4276 4277 4278 4279 4280

	set b2 "$w.buttons2"
	frame $b2

	button $b2.advanced -text "Advanced ..." \
		-command "destroy $w; props_advanced" -font $bfont
4281 4282 4283 4284 4285
	if {! $icon_noadvanced} {
		lappend props_buttons $b2.advanced
		pack $b2.advanced -side right -expand 1
	}

4286
	button $b2.help -text "Help ..." -command "menu_help Properties" -font $bfont
4287 4288
	lappend props_buttons $b2.help
	pack $b2.help -side right -expand 1
4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299

	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
4300
	pack $vp.e -fill x -expand 1 -padx 1m -pady $pady -side top
4301

4302

4303 4304
	lappend props_buttons $vp.e

4305 4306 4307 4308 4309 4310 4311 4312 4313 4314
	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
4315
	pack $pw.e -fill x -expand 1 -padx 1m -pady $pady -side top
4316

4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327
	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}
	}

4328 4329
	lappend props_buttons $pw.e

4330 4331 4332 4333
	set sh "$w.shared"
	frame $sh
	checkbutton $sh.button -text "Shared" \
		-variable props_shared -anchor w -font $bfont
4334
	pack $sh.button -fill x -expand 1 -padx 1m -pady $pady
4335 4336 4337 4338 4339

	set vo "$w.viewonly"
	frame $vo
	checkbutton $vo.button -text "All Clients ViewOnly" \
		-variable props_viewonly -anchor w -font $bfont
4340
	pack $vo.button -fill x -expand 1 -padx 1m -pady $pady
4341 4342 4343 4344 4345

	set cf "$w.confirm"
	frame $cf
	checkbutton $cf.button -text "Ask for Confirmation" \
		-variable props_confirm -anchor w -font $bfont
4346
	pack $cf.button -fill x -expand 1 -padx 1m -pady $pady
4347 4348 4349 4350 4351

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

4354
	set px "6m"
4355 4356 4357 4358
	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
4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370
	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
4371 4372
		pack $ms -side bottom -fill x -pady $pady -padx $px
		update
4373 4374 4375
	}

	lappend props_buttons $ac.button $cf.button $vo.button $sh.button
4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394

	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
4395
	button $w.h -text Help -command "menu_help NewClient" -font $bfont
4396 4397
	bind $w.e <Return> "update; after 100; destroy $w"

4398 4399
	wm title $w "New Client"

4400
	pack $w.l $w.e $w.h $w.b -side left -pady 1m -padx 0.5m
4401 4402 4403 4404 4405 4406
	focus $w.e
	center_win $w
	update 
	
	tkwait window $w

4407 4408
	regsub -all {[{}()~!$&*|;'"`{}<>\[\]]} $newclient "" newclient
	#'
4409 4410 4411 4412 4413 4414 4415 4416 4417
	if {$newclient != ""} {
		push_new_value "connect" "connect" "$newclient" 1
	}
}

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

4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448
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]} {
4449 4450
			set nid [expr "$id + 0"]
			$wd add command -label "$nid $lab" \
4451 4452 4453 4454 4455
				-command "do_disconnect_client $id"
		}
	}
}

4456
proc pmenu {m x y} {
4457 4458 4459
	if {![winfo exists $m]} {
		return
	}
4460 4461 4462
	set x [expr $x-10]
	set y [expr $y-10]
	$m post $x $y
4463 4464
	# XXX more care needed
	grab set -global $m
4465 4466 4467 4468
}

proc set_client_balloon {str} {
	global client_balloon vnc_display
4469 4470 4471
	global client_id_list

	set client_id_list [list]
4472 4473 4474
	
	set client_balloon "$vnc_display"
	set count 0
4475 4476 4477
	regsub -all {^.*aro=clients:} $str "" str
	regsub -all {aro=.*$} $str "" str
	regsub -all {ans=.*$} $str "" str
4478
	foreach client [split $str ","] {
4479 4480 4481 4482 4483 4484
		#puts "client: $client"
		if [regexp {^[ 	]*$} $client] {
			continue
		}
		if {[regexp {^(.*):(.*):(.*):(.*):(.*):(.*):(.*):(.*):(.*)$} \
		    $client m0 m1 m2 m3 m4 m5 m6 m7 m8 m9]} {
4485
			set id    $m1
4486
			set nid   [expr "$m1 + 0"]
4487 4488 4489
			set ip    $m2
			set port  $m3
			set user  $m4
4490
			set unix  $m5
4491 4492 4493 4494 4495
			if {[string length $user] >= 24} {
				# weird identd hash...
				set user [string range $user 0 8]
				set user "${user}..."
			}
4496 4497 4498 4499 4500 4501 4502
			if {$unix != "" && $unix != "none"} {
				set user $unix
			}
			set host  $m6
			set input $m7
			set vo    $m8
			set ltime $m9
4503 4504 4505
			if [regexp {^[ 	]*$} $host] {
				set host $ip
			}
4506
			set client_balloon "${client_balloon}\n$nid $user\@$host"
4507 4508
			if {$vo == "1"} {
				set client_balloon "${client_balloon} - view"
4509
				lappend client_id_list "$id:$user\@$host - view"
4510 4511
			} else {
				set client_balloon "${client_balloon} - full"
4512
				lappend client_id_list "$id:$user\@$host - full"
4513 4514 4515
			}
		} else {
			set i [expr $count+1]
4516 4517 4518
			if {$i == 1} {
				set client_balloon "${client_balloon}\nunknown-host$i"
			}
4519 4520 4521 4522 4523 4524 4525 4526 4527
		}
		incr count
	}
	if {$count == 0} {
		set client_balloon "${client_balloon}\nNo connections."
	}
	icon_win_cfg $count
}

4528 4529 4530
proc read_client_info {channel} {
	global x11vnc_client_file client_str client_info_read
	global read_client_info_lock
4531 4532
	set db 0

4533 4534 4535 4536 4537 4538 4539 4540 4541 4542
	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
4543 4544
		after 100
		set str ""
4545 4546
		set count [gets $channel str]
		if {$db} {puts stderr "read_client_info-$channel: $str"}
4547

4548 4549
		if {$count == -1 || [eof $channel]} {
			close $channel
4550
			catch {file delete $x11vnc_client_file}
4551
			set read_client_info_lock 0
4552 4553 4554
			clean_icon_exit
		}
		if {$count > 0 && ![regexp {^[ 	]*$} $str]} {
4555
			set client_info_read 1
4556 4557
			if {$str == "quit"} {
				catch {file delete $x11vnc_client_file}
4558
				set read_client_info_lock 0
4559
				clean_icon_exit
4560 4561 4562 4563
			} elseif {$str == "skip"} {
				;
			} elseif [regexp {^clients:} $str] {
				regsub {^clients:} $str "" str
4564 4565 4566 4567 4568 4569 4570 4571
				if {$str == "none"} {
					set str ""
				}
				update_clients_menu $str
				set client_str $str
				set_client_balloon $str
			}
		}
4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588
		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
4589 4590 4591 4592
	}
}

proc show_client_balloon {} {
4593
	global icon_mode icon_win props_win full_win
4594
	global client_balloon ffont connected_to_x11vnc
4595

4596 4597
	set noinfo "tkx11vnc: no client information"
	set noinfo "$noinfo\navailable from x11vnc ..."
4598
	if ![info exists client_balloon] {
4599
		set client_balloon $noinfo
4600 4601
	}
	if {$client_balloon == ""} {
4602
		set client_balloon $noinfo
4603 4604 4605 4606 4607
	}

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

4608 4609 4610 4611 4612
	set infotext $client_balloon
	if {!$connected_to_x11vnc} {
		set infotext "Not currently attached to x11vnc\nLast available info:\n$infotext"
	}

4613 4614 4615 4616
	set w .client_balloon
	catch {destroy $w}
	toplevel $w -bg black -screen [winfo screen $icon_win]
	wm overrideredirect $w 1
4617
	label $w.l -text "$infotext" -relief flat -bg "#ffffaa" -fg black \
4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649
		-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} {
4650 4651 4652 4653 4654 4655 4656 4657
	global icon_win client_tail client_sock client_info_read

	if {![info exists icon_win]} {
		return
	}
	if {$icon_win == ""} {
		return
	}
4658 4659 4660 4661 4662
	if {$clients > 0} {
		$icon_win configure -bg black -fg white
	} else {
		$icon_win configure -bg white -fg black
	}
4663 4664 4665 4666 4667

	if {$client_tail == "" || !$client_info_read} {
		if {$client_sock == ""} {
			$icon_win configure -fg red
		}
4668 4669 4670 4671 4672
	}
}

proc server_accept {sock addr port} {
	global socket_cookie server socket_got_callback
4673
	global client_tail client_sock
4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686
	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"} {
4687 4688
			set client_sock $sock
			if {$db} {puts stderr "cookie matched. $client_sock"}
4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699
		} 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
4700 4701 4702 4703
	global x11vnc_started x11vnc_xdisplay hostname client_sock
	global x11vnc_xdisplay0 menu_var

	set db 0
4704
#dtime t1
4705 4706 4707 4708
	set start 13037
	set tries 100
	set socket_got_callback 0

4709 4710 4711 4712 4713 4714 4715 4716 4717 4718
	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
4719 4720
	if {$x11vnc_started} {
		set myaddr "127.0.0.1"
4721 4722 4723 4724 4725 4726 4727 4728 4729 4730
	} 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
		}
4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754
	} 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
	}
4755 4756 4757 4758 4759 4760
	if {! $x11vnc_started} {
		run_remote_cmd [list "-nosync" "-R" "noop"]
		if {$db} {dtime A}
		after 250
		if {$db} {dtime A}
	}
4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776

	# 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
	}
4777 4778
	run_remote_cmd [list "-nosync" "-R" \
		"client_info_sock:$myaddr:$port:$socket_cookie"]
4779
#dtime t2
4780
	if {$db} {puts "client_info_sock:$myaddr:$port:$socket_cookie"}
4781 4782 4783 4784 4785 4786 4787 4788 4789 4790
	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
4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805

	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 {
4806
		setup_client_sock 1
4807
	}
4808
#dtime t4
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
}

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
}

4837
# currently unused
4838
proc lmenu {menu} {
4839
	global popup_cascade_posted
4840 4841
	global left_iconwin_menu
	set left_iconwin_menu 1
4842
	after 100
4843 4844 4845 4846 4847 4848 4849
	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} {
4850 4851 4852 4853 4854
			$menu unpost
			return
		}
	}
	# kludge for WindowView
4855 4856 4857
	if {$popup_cascade_posted} {
		focus $menu
	}
4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875
}

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
	}
4876 4877
}

4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949
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\"\]"
		}
	}
}

4950
proc make_icon {} {
4951 4952
	global icon_mode icon_embed_id icon_win props_win full_win
	global tray_embed tray_running env
4953
	global x11vnc_client_file client_tail client_sock client_str saved_clients_str
4954
	global client_balloon_id
4955
	global bfont sfont snfont ffont
4956
	global icon_minimal gui_start_mode
4957
	global popup_cascade_posted menu_var x11vnc_gui_geom
4958 4959
	set min_x 24
	set min_y 24
4960
	
4961
	set font $bfont
4962 4963
	set mfont $font

4964 4965
	if {$tray_embed} {
		set font $sfont
4966
		set mfont $snfont
4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979
	}
	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
4980

4981 4982 4983 4984 4985
	if {$tray_embed && $tray_running} {
		wm withdraw .
	}

	set l .icon
4986
	set icon_win $l
4987 4988 4989 4990 4991 4992 4993 4994
	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
4995 4996
	icon_win_cfg 0

4997

4998
	set popup_cascade_posted 0
4999
	pack $l -fill both -expand 1
5000
	set menu "$l.menu"
5001
	menu $menu -tearoff 0 -postcommand "popup_post $menu"
5002 5003
	$menu add command -font $mfont -label "Properties" -command do_props
	$menu add command -font $mfont -label "Help" -command "menu_help Tray"
5004
	$menu add separator
5005
	$menu add command -font $mfont -label "New Client" -command do_new_client
5006 5007 5008 5009 5010 5011 5012 5013 5014 5015

	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

5016 5017
	$menu add separator

5018
	set wv "$menu.windowview"
5019 5020
	catch {destroy $wv}
	menu $wv -tearoff 0 -font $ffont \
5021
		-postcommand {set popup_cascade_posted 1}
5022 5023 5024 5025 5026
	foreach val {full icon tray} {
		$wv add radiobutton -label "$val" \
			-value "$val" -font $ffont \
			-command "do_var WindowView" \
			-variable menu_var(WindowView)
5027
	}
5028
	$menu add cascade -font $mfont -label "Window View:" -menu $wv
5029

5030
	$menu add command -font $mfont -label "Stop x11vnc" -command clean_icon_exit
5031

5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044
	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"
5045 5046 5047
	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}
5048
	bind $icon_win <ButtonPress-2> {kill_client_balloon; show_client_balloon}
5049 5050
#	bind $menu <Leave> "lmenu $menu"
#	bind $menu <Enter> "set left_iconwin_menu 0"
5051 5052 5053
##	bind $menu <KeyPress-Escape> "$menu unpost"

	bind . <Control-KeyPress-c> {destroy .; exit 0}
5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068

	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
			}
		}
	}
5069 5070
	wm iconname . "tkx11vnc"
	wm title . "tkx11vnc"
5071
	update
5072
	wm deiconify .
5073
	update
5074

5075 5076 5077 5078 5079 5080 5081 5082
	old_balloon
}

proc setup_client_channel {} {
	global client_sock client_tail

# XXX/setup_client_channel
	if {$client_sock == "" } {
5083 5084
		stop_watch on
		try_client_info_sock
5085
		if {$client_sock == "" } {
5086 5087 5088 5089 5090
			after 500
			try_client_info_sock
		}
		stop_watch off
	}
5091
	if {$client_tail == "" && $client_sock == ""} {
5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105
		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
	}
5106 5107
}

5108
proc clean_client_tail {} {
5109
	global client_tail client_info_read
5110 5111
	if [info exists client_tail] {
		if {$client_tail != ""} {
5112 5113
			set p ""
			catch {set p [pid $client_tail]}
5114 5115 5116 5117 5118 5119 5120
			if {$p != ""} {
				catch {exec kill -TERM $p >/dev/null 2>/dev/null}
			}
			catch {close $client_tail}
			set client_tail ""
		}
	}
5121
	set client_info_read 0
5122 5123 5124 5125
}

proc clean_icon_exit {} {
	clean_client_tail
5126 5127 5128 5129 5130 5131 5132
	push_new_value "stop" "stop" 1 0
	set_connected no
	update
	destroy .
	exit
}

5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162
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

5163 5164
	set gui_current_state ""

5165 5166 5167 5168 5169 5170 5171 5172 5173 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 5206 5207 5208 5209 5210 5211 5212
	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


5213
	update
5214 5215 5216 5217 5218 5219 5220
	wm deiconify .
	update idletasks
	wm minsize $w [winfo width $w] [winfo height $w]
	if {$mode == "full" && $make_gui_count > 1} {
		center_win .
	}

5221

5222
	if {$make_gui_count == 1} {
5223
		copy_default_vars
5224 5225
		if {$x11vnc_connect} {
			try_connect_and_query_all
5226 5227
		} else {
			insert_cmdline_vars
5228 5229 5230 5231
		}
	} else {
		set_name "RESTORE"
	}
5232 5233 5234

	setup_client_tail

5235 5236
	set_widgets

5237 5238
	if {$mode == "tray"} {
		setup_tray_embed
5239 5240 5241 5242 5243
	}
}

proc make_widgets {top} {
	global template make_gui_count
5244
	global menu_b menu_m menu_count
5245
	global item_opts item_bool item_case item_menu item_entry menu_var unset_str
5246 5247
	global item_cascade
	global info_label info_str x11_display vnc_display
5248
	global text_area text_area_str
5249 5250 5251 5252
	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
5253 5254
	global icon_mode icon_win props_win full_win
	global top_widget_names
5255
	global screen_height screen_width
5256

5257 5258

	# Make the top label
5259
	set label_width 84
5260 5261 5262
	if {$screen_width <= 400} {
		set label_width 64
	}
5263
	set info_label "$top.info"
5264 5265 5266 5267
	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

5268 5269
	set top_widget_names(info) $info_label

5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301
	# 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.
5302
	set f "$top.menuframe"
5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322
	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
			}
runge's avatar
runge committed
5323 5324 5325 5326 5327 5328
			global osname
			set tstr "$case"
			if {$osname == "Darwin"} {
				#set tstr " $case   "
			}
			menubutton $menub -text "$tstr" -underline $ul \
5329 5330 5331
				-anchor w -menu $menu -background $fbg \
				-font $bfont
			pack $menub -side top -fill x
5332
			menu $menu -tearoff 0 -postcommand menu_posted
5333 5334 5335
		}
	}
	pack $f -side top -fill x
5336
	set top_widget_names(menuframe) $f
5337 5338

	make_menu_items
5339 5340

	# Make the x11 and vnc display label bar:
5341
	set df "$top.displayframe"
5342
	frame $df -bd 1 -relief groove
5343
	set top_widget_names(displayframe) $df
5344 5345

	set df_x11 "$df.xdisplay"
5346

5347 5348 5349
	if {$make_gui_count == 1} {
		no_x11_display
	}
5350
	set lw [expr {$label_width / 2}]
5351 5352
	label $df_x11 -textvariable x11_display -width $lw -anchor w \
		-font $ffont
5353 5354

	set df_vnc "$df.vdisplay"
5355 5356 5357 5358

	if {$make_gui_count == 1} {
		no_vnc_display
	}
5359 5360
	label $df_vnc -textvariable vnc_display -width $lw -anchor w \
		-font $ffont
5361 5362 5363 5364 5365

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

	# text area
5366
	global text_height
5367
	set text_area "$top.text"
5368 5369 5370 5371 5372 5373
	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
	}
5374
	pack $text_area -side top -fill both -expand 1
5375
	set top_widget_names(text) $text_area
5376 5377


5378 5379 5380 5381 5382 5383
	if {$text_area_str == ""} {
		set str "Click Help -> gui for overview."
		append_text "\n$str\n\n"
	} else {
		append_text $text_area_str
	}
5384 5385

	# Make entry box stuff
5386
	set ef "$top.entryframe"
5387
	frame $ef -bd 1 -relief groove
5388
	set top_widget_names(entryframe) $ef
5389

5390
	# Entry Label
5391 5392 5393 5394 5395
	set ef_label "$ef.label"
	label $ef_label -textvariable entry_str -anchor w -font $bfont

	set entry_str "Set... : "
	set ef_entry "$ef.entry"
5396
	entry $ef_entry -relief sunken -font $ffont
5397 5398 5399
	bind $ef_entry <KeyPress-Return> {set entry_set 1}
	bind $ef_entry <KeyPress-Escape> {set entry_set 0}

runge's avatar
runge committed
5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411
	set ok_s "OK"
	set cancel_s "Cancel"
	set help_s "Help"
	set browse_s "Browse..."
	global osname
	if {$osname == "Darwin"} {
		set ok_s " OK   "
		set cancel_s " Cancel   "
		set help_s " Help   "
		set browse_s " Browse...   "
	}

5412
	# Entry OK button
5413 5414 5415
	set bpx "1m"
	set bpy "1"
	set hlt "0"
5416
	set ef_ok "$ef.ok"
runge's avatar
runge committed
5417
	button $ef_ok -text $ok_s -pady $bpy -padx $bpx -command {set entry_set 1} \
5418
		-highlightthickness $hlt \
5419 5420
		-font $bfont

5421
	# Entry Skip button
5422
	set ef_skip "$ef.skip"
runge's avatar
runge committed
5423
	button $ef_skip -text $cancel_s -pady $bpy -padx $bpx -command {set entry_set 0} \
5424
		-highlightthickness $hlt \
5425 5426
		-font $bfont

5427
	# Entry Help button
5428
	set ef_help "$ef.help"
runge's avatar
runge committed
5429
	button $ef_help -text $help_s -pady $bpy -padx $bpx -command \
5430 5431
		{menu_help $entry_dialog_item} -font $bfont \
		-highlightthickness $hlt
5432

5433
	# Entry Browse button
5434
	set ef_browse "$ef.browse"
runge's avatar
runge committed
5435
	button $ef_browse -text $browse_s -pady $bpy -padx $bpx -font $bfont \
5436
		-highlightthickness $hlt \
5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455
		-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

}

5456 5457 5458 5459 5460
proc menu_bindings {m} {
	set db 0
	if {$db} {puts "menu_bindings $m"}

	bind $m <<MenuSelect>> {
5461 5462 5463
#syntax hilite bug \
MenuSelect>>
		set n [%W index active]
5464 5465
		set db 0
		if {$db} {puts stderr "menu_bindings %W $n"}
5466 5467 5468 5469
		set label "    "
		if {$n != "none"} {
			set str %W,$n
			set which ""
5470 5471

			if {$db} {puts "menu_bindings $str"}
5472 5473 5474 5475 5476 5477 5478
			if {[info exists helplabel($str)]} {
				set vname [format %%-16s $helplabel($str)]
				set label "Click (?) for help on: $vname"
				set which $helplabel($str)
			}
			if {$which == ""} {
				;
5479 5480
			} elseif {$which == "passwd" || $which == "viewpasswd"} {
				;
5481 5482 5483 5484 5485 5486 5487 5488 5489
			} 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)"
5490 5491 5492 5493
				if {$which == "http"} {
					global vnc_url
					set label "$label  URL: $vnc_url"
				}
5494 5495 5496 5497 5498 5499 5500
			}
		}
		set_info $label
	}
}

proc key_bindings {} {
5501
	global env menus_disabled
5502 5503
	if {[info exists env(USER)] && $env(USER) == "runge"} {
		# quick restart
5504
		bind . <Control-KeyPress-k> {exec $argv0 $argv &; destroy .}
5505
	}
5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525
	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} \
	}
5526 5527 5528 5529 5530
}

proc stop_watch {onoff} {
	global orig_cursor text_area entry_box

5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541
	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
		}
	}
5542 5543 5544

	if {$onoff == "on"} {
		foreach item $widgets {
5545 5546 5547
			if {![winfo exists $item]} {
				continue
			}
5548 5549 5550 5551
			$item config -cursor {watch}
		}
	} else {
		foreach item $widgets {
5552 5553 5554
			if {![winfo exists $item]} {
				continue
			}
5555 5556 5557 5558 5559 5560 5561 5562
			$item config -cursor {}
		}
	}
	update
}

proc double_check_noremote {} {
	set msg "\n\n"
5563 5564
	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"
5565
	append msg "*** WARNING: If so, press \"OK\", otherwise press \"Cancel\"\n"
5566 5567 5568 5569 5570
	append msg "\n"
	bell
	return [warning_dialog $msg "noremote"]
}

5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588
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
5589
		} elseif {$item == "WindowView"} {
5590
			continue
5591
		} elseif {$item == "rc" || $item == "norc"} {
5592 5593
			continue
		}
5594

5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624
		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]} {
5625
			set nitem [get_nitem $item]
5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693

			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
}

5694 5695 5696
proc double_check_start_x11vnc {} {
	global hostname
	set msg [get_start_x11vnc_txt]
5697
	bell
5698
	append msg "\n"
5699 5700
	append msg "*** To run the above command on machine \"$hostname\" (thereby\n"
	append msg "*** starting x11vnc) press \"OK\", otherwise press \"Cancel\".\n"
5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714
	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
}

5715 5716 5717 5718 5719
proc show_start_cmd {} {
	set msg [get_start_x11vnc_txt]
	append_text "$msg\n"
}

5720 5721 5722 5723 5724 5725
proc get_nitem {item} {
	set nitem $item
	if {$nitem == "screen_blank"} {
		set nitem "sb"
	} elseif {$nitem == "xrandr_mode"} {
		set nitem "xrandr"
5726 5727
	} elseif {$nitem == "unixpw_list"} {
		set nitem "unixpw"
5728 5729
	} elseif {$nitem == "unixpw_nis_list"} {
		set nitem "unixpw_nis"
5730 5731
	} elseif {$nitem == "stunnel_pem"} {
		set nitem "stunnel"
5732 5733
	} elseif {$nitem == "ssl_pem"} {
		set nitem "ssl"
5734 5735 5736 5737 5738 5739 5740 5741
	} elseif {$nitem == "wireframe_mode"} {
		set nitem "wireframe"
	} elseif {$nitem == "solid_color"} {
		set nitem "solid"
	}
	return $nitem
}

5742
proc get_start_x11vnc_cmd {{show_rc 0}} {
5743
	global cmd_var menu_var default_var unset_str x11vnc_prog
5744 5745 5746 5747 5748 5749 5750

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

	set cmd [split $xterm_cmd]

	lappend cmd $x11vnc_prog

5751 5752 5753
	lappend cmd "-gui"
	lappend cmd "none"

5754 5755
	set rc_txt ""

5756 5757
	set saw_id 0

5758
	foreach item [lsort [array names menu_var]] {
5759
		if {$item == "gui"} {
5760
			continue
5761
		} elseif {![active_when_starting $item]} {
5762
			continue
5763
		} elseif {[is_action $item]} {
5764
			continue
5765
		} elseif {$item == "debug_gui"} {
5766
			continue
5767
		} elseif {$item == "WindowView"} {
5768 5769
			continue
		}
5770

5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781
		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
5782
		} elseif {$item == "httpport" && $menu_var($item) == "0"} {
5783
			continue
5784
		} elseif {$item == "progressive" && $menu_var($item) == "0"} {
5785
			continue
5786
		} elseif {$item == "dontdisconnect" && $menu_var($item) == "-1"} {
5787
			continue
5788
		} elseif {$item == "alwaysshared" && $menu_var($item) == "-1"} {
5789 5790
			continue
		}
5791 5792 5793

		if {[value_is_bool $item]} {
			if {[info exists menu_var($item)]} {
5794 5795 5796 5797 5798 5799 5800 5801 5802
				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} {
5803
					lappend cmd "-$item"
5804
					append rc_txt "-$item\n"
5805 5806 5807
				}
			}
		} elseif {[value_is_string $item]} {
5808 5809 5810 5811 5812 5813 5814 5815 5816 5817
			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;
5818
					}
5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835
				}
				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]
5836 5837
						}
					}
5838 5839 5840 5841 5842
					
					lappend cmd $mv
					set mt $mv
					regsub -all {#} $mt {\#} mt
					append rc_txt "-$nitem $mt\n"
5843 5844 5845 5846 5847 5848 5849 5850
				}
			}
		}
	}
	lappend cmd "2>"
	lappend cmd "/dev/null"
	lappend cmd "&"
	
5851 5852 5853 5854 5855
	if {$show_rc} {
		return $rc_txt
	} else {
		return $cmd
	}
5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897
}

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
5898 5899 5900 5901 5902 5903 5904 5905 5906
	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"
		}
	}
5907 5908
}

5909 5910 5911 5912
proc run_remote_cmd_via_sock {opts} {
	global client_sock

	set db 0
5913 5914 5915 5916
	if {[file channels $client_sock] == ""} {
		set client_sock ""
		return "fail"
	}
5917
	if {[eof $client_sock]} {
5918
		catch {close $client_sock}
5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955
		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]

5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973
		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]
			}
		}

5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987
		set docmd ""

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

	set result [string trim $result]

	return $result
}

5988 5989
proc run_remote_cmd {opts} {
	global menu_var x11vnc_prog x11vnc_cmdline x11vnc_xdisplay
5990
	global x11vnc_auth_file x11vnc_connect_file
5991
	global client_sock
5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005

	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..."
		}
	}

6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016
	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
		}
	}

6017 6018 6019 6020
	set cmd ""

	lappend cmd $x11vnc_prog;

6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032
	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
		}
6033
	}
6034
	lappend cmd "-sync"
6035 6036 6037 6038 6039 6040
	foreach word $opts {
		lappend cmd $word
	}
	lappend cmd "2>"
	lappend cmd "/dev/null"

6041
	if {0 || $debug} {
6042 6043 6044 6045 6046
		set str [join $cmd]
		puts "running: $str"
		foreach word $cmd {
			puts "   word: $word"
		}
6047 6048 6049
	}

	set output ""
6050
	menus_disable
6051

6052 6053 6054
	stop_watch on
	catch {set output [eval exec $cmd]}
	stop_watch off
6055

6056
	menus_enable
6057
	if {$debug} {
6058 6059 6060 6061 6062 6063
		if {[string length $output] > 100} {
			set str [string range $output 0 100]
			append_text "output: $str ...\n"
		} else {
			append_text "output: $output\n"
		}
6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084
	}
	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

6085
	set db 0
6086
#dtime c1
6087

6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100
	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]
6101
#dtime c2a
6102

6103 6104
	if {$db} {puts "try_connect: \"$result\""}

6105 6106 6107 6108 6109 6110
	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
6111 6112

		setup_client_channel
6113
#dtime c2b
6114 6115 6116
		setup_client_sock 1
		setup_client_tail

6117
		fetch_displays
6118
#dtime c3a
6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132
		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
	}
}

6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149
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]

6150 6151 6152
	if {![info exists gui_current_state]} {
		set gui_current_state ""
	}
6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182
	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 != ""} {
6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194
		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 ""
		}
6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215
	}
}

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
6216 6217
	global icon_mode_at_startup
	global tray_embed tray_running
6218 6219 6220 6221 6222
	if {$gui_mode == "full"} {
		set env(X11VNC_ICON_MODE) 0
	} elseif {$gui_mode == "icon"} {
		set env(X11VNC_ICON_MODE) 1
	} elseif {$gui_mode == "tray"} {
6223 6224 6225
		if {$tray_running} {
			set env(X11VNC_ICON_MODE) "RUNNING"
		} else {
6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287
			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
}

6288 6289 6290
############################################################################
# main:

6291 6292 6293 6294
if [info exists env(X11VNC_GUI_TIME)] {
	dtime M
}

6295 6296
wm withdraw .

6297
global env x11vnc_prog x11vnc_cmdline x11vnc_xdisplay x11vnc_connect;
6298
global x11vnc_xdisplay0
6299
global x11vnc_client_file x11vnc_gui_geom x11vnc_started vnc_url
6300
global x11vnc_gui_params
6301
global x11vnc_auth_file x11vnc_connect_file beginner_mode simple_gui_created
6302
global helpall helptext helpremote helplabel hostname osname
6303 6304
global all_settings reply_xdisplay always_update
global max_text_height max_text_width
6305
global text_height
6306
global menu_var unset_str menus_disabled
6307
global bfont ffont sfont snfont old_labels have_labelframes
6308
global connected_to_x11vnc
6309
global cache_all_query_vars
6310
global last_query_all_time query_all_freq client_tail client_sock client_info_read
6311 6312
global icon_mode icon_mode_at_startup
global tray_embed tray_running icon_setpasswd icon_embed_id
6313 6314 6315
global icon_noadvanced icon_minimal
global make_gui_count text_area_str
global gui_argv0 gui_start_mode
6316
global screen_height screen_width
6317 6318

set unset_str "(unset)"
6319
set vnc_url $unset_str
6320
set connected_to_x11vnc 0
6321
set menus_disabled 0
6322 6323
set max_text_height 40
set max_text_width 90
6324
set text_height 14
6325
set bfont "-adobe-helvetica-bold-r-*-*-*-120-*-*-*-*-*-*"
6326 6327
set sfont "-adobe-helvetica-bold-r-*-*-*-100-*-*-*-*-*-*"
set snfont "-adobe-helvetica-medium-r-*-*-*-100-*-*-*-*-*-*"
6328
set ffont "fixed"
6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339

set ls ""
catch {set ls [font metrics $bfont -linespace]}
if {$ls != ""} {
    if {$ls > 14} {
	# some recent setups have BIG rendering for the above fonts:
	set bfont "-adobe-helvetica-bold-r-*-*-*-90-*-*-*-*-*-*"
	set sfont "-adobe-helvetica-bold-r-*-*-*-75-*-*-*-*-*-*"
	set snfont "-adobe-helvetica-medium-r-*-*-*-75-*-*-*-*-*-*"
    }
}
6340 6341 6342 6343
set help_indent 24;
set reply_xdisplay ""
set all_settings "None so far."
set always_update 1
6344
set cache_all_query_vars ""
6345 6346
set query_all_freq 120
set last_query_all_time [clock seconds]
6347
set client_tail ""
6348 6349
set client_sock ""
set client_info_read 0
6350 6351 6352 6353
set make_gui_count 0
set text_area_str ""
set gui_argv0 $argv0
set gui_start_mode ""
6354

6355 6356 6357 6358 6359 6360
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 ""
}
6361 6362 6363 6364 6365
if {[regexp {^[34]} $tk_version] || $tk_version == "8.0"} {
	set old_labels 1
} else {
	set old_labels 0
}
6366 6367 6368 6369
set have_labelframes 1
if {$tk_version < 8.4} {
	set have_labelframes 0
}
6370

6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383
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
	}
}
6384 6385 6386 6387 6388 6389 6390
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)
}

6391 6392
if {"$argv" == "-spit"} {
	set fh [open $argv0 r]
runge's avatar
runge committed
6393 6394 6395
	puts "#ifndef _TKX11VNC_H"
	puts "#define _TKX11VNC_H"
	puts "#ifdef NOGUI"
6396
	puts "char gui_code\[\] = \"\";"
runge's avatar
runge committed
6397
	puts "#else"
6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408
	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
6409 6410 6411 6412
	puts "#endif"
	puts "/* ifdef NOGUI */"
	puts "#endif"
	puts "/* ifndef _TKX11VNC_H */"
6413 6414 6415 6416 6417
	close $fh
	puts ";"
	exit 0
}

6418 6419 6420 6421 6422

set_view_variable "full"

#puts [exec env | grep X11VNC]

6423
# Read environment for clues:
6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438

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] {
6439
#puts "eof $client_tail"
6440 6441 6442 6443 6444 6445 6446
			clean_client_tail
			set client_tail ""
		}
	}
	catch {file delete -force $x11vnc_client_file}
}

6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464
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;
}

6465 6466 6467 6468 6469
if {[info exists env(X11VNC_GUI_GEOM)]} {
	set x11vnc_gui_geom $env(X11VNC_GUI_GEOM);
} else {
	set x11vnc_gui_geom ""
}
6470 6471 6472 6473 6474
if {[info exists env(X11VNC_GUI_PARAMS)]} {
	set x11vnc_gui_params $env(X11VNC_GUI_PARAMS);
} else {
	set x11vnc_gui_params ""
}
6475

6476 6477 6478 6479 6480 6481
if {[info exists env(X11VNC_CONNECT_FILE)]} {
	set x11vnc_connect_file $env(X11VNC_CONNECT_FILE);
} else {
	set x11vnc_connect_file "";
}

6482 6483 6484
set x11vnc_started 0
if {[info exists env(X11VNC_STARTED)]} {
	set x11vnc_started 1
6485 6486
}

6487
set x11vnc_xdisplay ""
6488 6489 6490 6491 6492
if {[info exists env(X11VNC_XDISPLAY)]} {
	set x11vnc_xdisplay $env(X11VNC_XDISPLAY);
	set x11vnc_connect 1

} elseif {$argv != "" && [regexp {:[0-9]} $argv]} {
6493
	set env(X11VNC_XDISPLAY) "$argv"
6494 6495 6496 6497 6498 6499 6500 6501
	set x11vnc_xdisplay "$argv"
	set x11vnc_connect 1

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

6504 6505 6506 6507 6508 6509
if {[info exists env(X11VNC_AUTH_FILE)]} {
	set x11vnc_auth_file $env(X11VNC_AUTH_FILE)
} else {
	set x11vnc_auth_file ""
}

6510 6511 6512 6513 6514 6515 6516
set simple_gui_created 0
if {[info exists env(X11VNC_SIMPLE_GUI)]} {
	set beginner_mode 1
} else {
	set beginner_mode 0
}

6517 6518 6519
set icon_mode 0
set tray_embed 0
set tray_running 0
6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533

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)

6534 6535 6536 6537
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
6538
} else {
6539 6540 6541 6542 6543 6544 6545 6546 6547
	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
	}
}
6548

6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563
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
6564 6565
}

6566 6567
if {[info exists env(X11VNC_ICON_EMBED_ID)]} {
	set icon_embed_id $env(X11VNC_ICON_EMBED_ID)
6568
} else {
6569
	set icon_embed_id ""
6570
}
6571

6572

6573
set hostname [exec uname -n]
6574 6575 6576 6577 6578 6579
set osname [exec uname]

if {[regexp -nocase {IRIX} $osname]} {
	# IRIX "fixed" font is huge and doublespaced... 
	set ffont $snfont
}
runge's avatar
runge committed
6580 6581 6582 6583
if {[regexp -nocase {Darwin} $osname]} {
	set ffont {Monaco 10}
	set bfont {system}
}
6584

6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605
#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

6606
set_name "tkx11vnc"
6607 6608 6609

key_bindings;

6610 6611
get_default_vars

6612 6613
dtime D

6614 6615 6616 6617 6618 6619
if {$icon_mode} {
	if {$tray_embed} {
		make_gui "tray"
	} else {
		make_gui "icon"
	}
6620
	dtime G
6621 6622
	old_balloon
	if {$icon_setpasswd} {
6623 6624 6625 6626 6627
		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" 
6628
		do_props $m
6629
		#push_new_value "unlock" "unlock" 1 0
6630 6631 6632
	}
} else {
	make_gui "full"
6633
	dtime G
6634 6635
}

6636

6637
# main loop.