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
	dbg
290
	=GAL LOFF
291 292

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

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

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.
421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436

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
437 438
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.
439 440 441 442 443 444 445 446
"

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

448 449 450 451
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.
452 453 454 455 456 457 458
"

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

	set helptext(detach) "
459 460 461 462 463
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\".
464 465 466
"

	set helptext(attach) "
467 468 469 470 471 472 473 474
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).
475 476 477 478 479 480 481 482 483
"

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

485 486 487 488 489
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).
490 491 492
"

	set helptext(clear-all) "
493 494 495 496 497
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
498 499 500
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\".
501 502 503 504 505 506 507 508
"

	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
509 510 511
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\".
512 513 514 515 516 517 518 519 520 521 522 523 524
"

	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
525 526 527
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\".
528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
"

	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. 
545 546 547 548 549 550 551 552 553 554 555 556 557 558
"

	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\"  
559 560 561 562
"

	set helptext(stop+quit) "
Send the stop command to the x11vnc server, then terminate the tkx11vnc gui.
563 564 565 566 567 568 569 570 571
"

	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.
572
(if it exists and is accessible by the gui process).
573 574 575
"

	set helptext(Quit) "
576
Terminate the tkx11vnc gui.  Any x11vnc server will be left running.
577 578 579 580 581
"

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

582 583 584
Allows you to find more information about them, change their input
permissions, or disconnect them.

585 586 587
Note that the File transfer permission only applies to UltraVNC
file transfer, not TightVNC file transfer.

588
You will be prompted to confirm any disconnections.
589 590 591 592 593 594 595
"

	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.

596
You can choose to disconnect the client by clicking on the 
597 598 599 600
\"Disconnect\" checkbox and pressing \"OK\".  There will be a
confirmation dialog to doublecheck.

Alternatively, you can fine tune the VNC client's input permissions
601 602 603
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.
604

605
To not change any aspects of the VNC client press \"Cancel\".
606 607 608 609
"

	set helptext(solid_color) "
Set the -solid color value.
610 611 612 613
"

	set helptext(xrandr_mode) "
Set the -xrandr mode value.
614 615 616
"

	set helptext(unixpw_list) "
617 618 619 620 621
Set the -unixpw usernames list value.
"

	set helptext(unixpw_nis_list) "
Set the -unixpw_nis usernames list value.
622 623 624 625
"

	set helptext(stunnel_pem) "
Set the -stunnel pem filename value.
626 627 628 629
"

	set helptext(ssl_pem) "
Set the -ssl pem filename value.
630 631 632 633
"

	set helptext(wireframe_mode) "
Set the -wireframe mode string value.
634 635 636 637 638 639
"

	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.
640 641
"

642
	set helptext(Tray) "
643 644
The tray/icon mode (started with \"x11vnc -gui tray ...\", etc.) presents
a small icon that indicates the status of the running x11vnc server.
645 646

Depending on your environment, this icon may be embedded in a system
647 648 649 650
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.
651 652

When the icon has a light background, that means no VNC viewers are
653
currently connected to the VNC display.
654 655

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

Moving the mouse pointer over the icon will popup a \"status balloon\"
659 660
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.
661

662 663
Clicking the left or right mouse button on the icon displays a menu
of actions:
664

665 666 667 668
    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.
669 670 671 672 673 674 675
    
    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\".
676

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

    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\".
689 690 691 692
    
    Stop x11vnc     - Directs the x11vnc server to disconnect all vncviewers
                      and then exit.  The tray/icon GUI then exits as well.

693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708
    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
709

710 711
Termination:

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

	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.

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

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).
770 771 772 773 774 775 776

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.

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


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

815 816
	set helptext(all) $helpall

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

	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.

859 860 861 862
"

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

864 865 866 867 868
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).
"
869
#'
870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891

	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.
"
892
#'
893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917
	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
918
   actual recipe.  This may sound wasteful (i.e. not using some of the
919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937
   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
938
immediately reexposed without having the application redraw it.
939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973

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)
974
for this mode to be usable.
975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008
"
	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).
1009 1010 1011 1012 1013 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
"
#'"

	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.
1051 1052 1053 1054 1055 1056
"

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

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

	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.
1092 1093 1094 1095 1096 1097
"

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

	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.
1113
You can adjust that behavior with these options.
1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138
"

	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
1139
window both the gui *and* the x11vnc server terminate.
1140 1141
"

1142 1143 1144 1145 1146
	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.

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

1153
All menu items have a (?) button one can click on to get more information
1154
about the option or command.
1155 1156 1157 1158

There are two states tkx11vnc can be in:

	1) Available to control a running x11vnc process.
1159

1160 1161
	2) Getting ready to start a x11vnc process.

1162 1163
Most people will just use state 1).

1164 1165 1166 1167
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,
1168
thereby changing to state 2).  There are other actions available too.
1169

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

1182

1183 1184 1185
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.
1186

1187
For example, one might use ssh to access the remote machine where the
1188 1189 1190 1191
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.
1192 1193 1194 1195 1196


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

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

1201 1202 1203 1204 1205
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).
1206

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

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

1215
5) At the bottom is an entry area.  When one selects a menu item that
1216 1217 1218 1219
   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.
1220

1221 1222 1223 1224
   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.
1225

1226 1227

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

1233 1234 1235 1236 1237 1238 1239 1240

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\"
1241
"
1242

1243
set under_wally "
1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257
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.

1258
"
1259 1260 1261 1262 1263 1264

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
1265
mode by toggling \"Misc -> simple_gui\".
1266 1267 1268 1269 1270 1271 1272 1273

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

1277 1278 1279 1280 1281
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).
1282

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

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

5) At the bottom is an entry area.  When one selects a menu item that
1292 1293 1294 1295
   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.
1296

1297 1298 1299 1300
   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.
1301

1302
CASCADES BUG: There is a bug not yet worked around for the cascade menus
1303 1304 1305 1306 1307 1308 1309 1310
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!).

"
}

1311 1312 1313 1314 1315 1316
}

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];
1317
	wm geometry $w +$x+$y
1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340
	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
}

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

1366 1367 1368 1369 1370
proc make_toplevel {w {title ""}} {
	catch {destroy $w}
	toplevel  $w;
	bind $w <Escape> "destroy $w"
	if {$title != ""} {
1371 1372
		wm title    $w $title
		wm iconname $w $title
1373 1374 1375
	}
}

1376
proc textwin {name title text {entry ""}} {
1377
	global max_text_height max_text_width
1378
	global bfont ffont
1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395

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

	$w.f.t insert 1.0 $text;

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

1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423
	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
	}

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

	center_win $w
1438 1439

	return $w
1440 1441 1442 1443
}

proc active_when_connected {item} {
	global helpremote helptext
1444 1445 1446 1447 1448 1449 1450 1451 1452 1453
	global icon_mode

	if {$icon_mode} {
		if {$item == "passwd"} {
			return 1
		}
		if {$item == "viewpasswd"} {
			return 1
		}
	}
1454 1455 1456

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

	if {$beginner_mode} {
		if {[opt_match G $item]} {
			return 1
		}
		if {$item == "display"} {
			return 1
		}
1484 1485 1486
		if {$item == "attach"} {
			return 1
		}
1487 1488 1489 1490 1491
		if {$item == "debug_gui"} {
			return 1
		}
		return 0
	}
1492 1493 1494

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

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

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

1568 1569 1570 1571 1572
	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"
1573 1574 1575 1576

		if {$item == "passwd" || $item == "viewpasswd"} {
			;
		} elseif {$menu_var($item) == ""} {
1577 1578 1579 1580
			append text "$unset_str\n"
		} else {
			append text "$menu_var($item)\n"
		}
1581 1582 1583 1584
		if {$item == "http" || $item == "httpdir" || $item == "httpport"} {
			global vnc_url;
			append text "\nURL: $vnc_url\n"
		}
1585 1586
	}

1587 1588 1589
	if {$item == "start"} {
		set str [get_start_x11vnc_txt]
		append_text "$str\n"
1590 1591 1592
#		append text "\nPossible \$HOME/.x11vncrc settings for this command:\n\n"
#		set rctxt [get_start_x11vnc_cmd 1]
#		append text "$rctxt\n"
1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630
	}

	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;
		}
1631
		if {[regexp {^-([0-9A-z_][0-9A-z_]*)} $line match name]} {
1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 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
			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;
		}
1710
		if {[regexp {^([0-9A-z_][0-9A-z_:]*)} $line match name]} {
1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 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
			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)
1813 1814 1815
		if {![winfo exists $menu_button]} {
			continue
		}
1816 1817 1818 1819 1820
		$menu_button configure -state $state
	}
}

proc menus_enable {} {
1821 1822
	global menus_disabled

1823
	menus_state "normal"
1824
	set menus_disabled 0
1825 1826 1827
}

proc menus_disable {} {
1828 1829 1830
	global menus_disabled

	set menus_disabled 1
1831 1832 1833 1834 1835 1836
	menus_state "disabled"
}

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

1906 1907 1908 1909 1910 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
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} {
1971 1972 1973 1974 1975
		if [regexp {passwd} $rargs] {
			append_text "x11vnc ..."
		} else {
			append_text "x11vnc $rargs ..."
		}
1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989
	}

	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]
1990 1991 1992

		global last_query_all_time
		set last_query_all_time [clock seconds]
1993 1994 1995 1996 1997 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
	}

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

2031
proc set_kmbc_str {} {
2032
	global vl_bk vl_bm vl_bb vl_bc vl_bf vr_bk vr_bm vr_bb vr_bc vr_bf
2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043

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

proc insert_input_window {} {
	global text_area cleanup_window
	global ffont menu_var
2074
	global vl_bk vl_bm vl_bb vl_bc vl_bf vr_bk vr_bm vr_bb vr_bc vr_bf
2075 2076

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

	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
2126
	set vl_bc 0
2127 2128
	set vl_bf 0

2129 2130 2131
	set vr_bk 0
	set vr_bm 0
	set vr_bb 0
2132
	set vr_bc 0
2133
	set vr_bf 0
2134 2135 2136 2137 2138 2139 2140 2141 2142 2143

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

2166 2167
	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
2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179
	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} {
2180
	global ca_bk ca_bm ca_bb ca_bc ca_bf ca_di
2181 2182 2183 2184 2185 2186

	if {$ca_di} {
		entry_insert "disconnect"
		$w.bk configure -state disabled
		$w.bm configure -state disabled
		$w.bb configure -state disabled
2187
		$w.bc configure -state disabled
2188
		$w.bf configure -state disabled
2189 2190 2191 2192 2193 2194
		return
	}

	$w.bk configure -state normal
	$w.bm configure -state normal
	$w.bb configure -state normal
2195
	$w.bc configure -state normal
2196
	$w.bf configure -state normal
2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207

	set str ""
	if {$ca_bk} {
		append str "K"
	}
	if {$ca_bm} {
		append str "M"
	}
	if {$ca_bb} {
		append str "B"
	}
2208 2209 2210
	if {$ca_bc} {
		append str "C"
	}
2211 2212 2213
	if {$ca_bf} {
		append str "F"
	}
2214 2215 2216 2217 2218 2219
	entry_insert $str
}

proc insert_client_action_window {input} {
	global text_area cleanup_window
	global ffont menu_var
2220
	global ca_bk ca_bm ca_bb ca_bc ca_bf ca_di
2221 2222

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

	set ca_di 0
	set ca_bk 0
	set ca_bm 0
	set ca_bb 0
2245
	set ca_bf 0
2246
	set ca_bc 0
2247 2248 2249 2250 2251 2252 2253 2254 2255 2256

	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
	}
2257 2258 2259
	if {[regexp -nocase {C} $input]} {
		set ca_bc 1
	}
2260 2261 2262
	if {[regexp -nocase {F} $input]} {
		set ca_bf 1
	}
2263

2264
	pack $w.di $w.bk $w.bm $w.bb $w.bc $w.bf -side left
2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280
	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}
	}
}

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

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

	entry_enable
	menus_disable

2294 2295 2296 2297
	if {$item == "passwd" || $item == "viewpasswd"} {
		$entry_box configure -show "*"
	}

2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314
	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
	}

2315 2316 2317 2318 2319 2320 2321
	set clean_text_window 0;

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

2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338
	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
2339 2340 2341 2342 2343

	if {$clean_text_window} {
		cleanup_text_window;
	}

2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354
	update

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

	$entry_box configure -show ""

2358 2359 2360 2361 2362 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
	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} {
2389 2390
	global query_result_list

2391 2392
	set ok 0
	set found ""
2393 2394 2395 2396

	set query_result_list [split_query $query]

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

2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498
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 ""
2499 2500
			} elseif {$item == "gui"} {
				continue
2501 2502 2503 2504 2505 2506 2507 2508
			} 
			# 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"
2509 2510
#			} elseif {$item == "overlay_nocursor" && $val == 0} {
#				set val 1
2511 2512 2513 2514 2515 2516 2517 2518
			}

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

2519 2520 2521 2522 2523 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
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)
			}
		}
	}
}

2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622
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)
		}
	}
}

2623
proc update_menu_vars {{query ""}} {
2624
	global all_settings menu_var query_result_list
2625 2626 2627

	set debug [in_debug_mode]

2628 2629 2630 2631
	if {$query == "USE_LIST"} {
		;
	} elseif {$query == ""} {
		set query_result_list [split_query $all_settings]
2632
	} else {
2633
		set query_result_list [split_query $query]
2634
	}
2635 2636

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

2660 2661
proc load_settings {{file ""}} {
	global menu_var default_var env
2662

2663 2664 2665 2666 2667
	if {$file == ""} {
		if {![info exists menu_var(load-settings)]} {
			return
		}
		set file $menu_var(load-settings)
2668 2669 2670 2671 2672 2673
	}
	if {$file == ""} {
		return
	}

	set fh ""
2674 2675
	set filex [tilde_expand $file]
	catch {set fh [open $filex "r"]}
2676 2677

	if {$fh == ""} {
2678
		append_text "load_settings: *** failed to open $filex ***\n"
2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704
		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

2705 2706 2707
	set count 0
	set parms ""

2708 2709 2710 2711 2712 2713 2714 2715 2716 2717
	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
		}
2718 2719 2720
		if {$item == "gui"} {
			continue
		}
2721 2722 2723
		if {[info exists menu_var($item)]} {
			if {[value_is_bool $item]} {
				set menu_var($item) 1
2724 2725
				incr count
				append parms "  -$item\n"
2726 2727 2728
			} elseif {[value_is_string $item]} {
				if {$value != ""} {
					set menu_var($item) $value
2729 2730 2731
					set nitem [get_nitem $item]
					append parms "  -$nitem $value\n"
					incr count
2732 2733 2734 2735
				}
			}
		}
	}
2736 2737 2738 2739 2740 2741 2742
	append_text "loaded $count parameter settings from $filex"
	if {$count > 0} {
		append_text ":\n"
		append_text $parms
	} else {
		append_text ".\n"
	}
2743 2744 2745 2746 2747 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
}

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
		}
2803
		set file [tilde_expand $file]
2804 2805 2806 2807 2808 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
		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
		}
	}
}

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

2861 2862 2863 2864 2865
proc defaults_all {} {
	copy_default_vars
	append_text "Reset all variables to default values.\n"
}

2866 2867
proc all_query_vars {} {
	global query_ans_list query_aro_list all_settings
2868
	global cache_all_query_vars
2869
	
2870 2871 2872 2873
	if {$cache_all_query_vars != ""} {
		return $cache_all_query_vars
	}

2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888
	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"
		}
	}
2889 2890
	set cache_all_query_vars $qry

2891 2892 2893 2894 2895
	return $qry
}

proc query_all {{quiet 0}} {
	global query_ans_list query_aro_list all_settings
2896
	global last_query_all_time
2897 2898 2899 2900 2901 2902 2903 2904

	set qry [all_query_vars]

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

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

proc set_info {str} {
2919 2920 2921 2922 2923
	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"
2924 2925 2926 2927 2928
	set info_str "$str"
	update
}

proc append_text {str} {
2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948
	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
	}
	
2949 2950 2951 2952 2953 2954
	$text_area insert end $str
	$text_area see end
}

proc show_all_settings {} {
	global all_settings
2955 2956 2957 2958
	global client_sock client_tail
	global x11vnc_client_file

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

2984 2985
proc show_logfile {} {
	global menu_var unset_str
2986 2987

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

3034 3035 3036 3037 3038 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
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
}

3064 3065 3066 3067 3068 3069 3070 3071
proc do_stop_quit {} {
	push_new_value "stop" "stop" 1 0
	set_connected no
	update
	after 250
	destroy .
}

3072 3073
# Menu item is an action:
proc do_action {item} {
3074
	global menu_var connected_to_x11vnc beginner_mode
3075 3076 3077 3078

	if {[in_debug_mode]} {
		append_text "action: \"$item\"\n"
	}
3079
#puts "action: \"$item\"\n"
3080 3081

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

	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
	}

3145 3146 3147 3148 3149
	if {$item == "load-settings"} {
		load_settings
		return
	}

3150 3151 3152 3153 3154 3155 3156 3157
	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
		
3158
	} elseif {[opt_match Q $item]} {
3159 3160 3161 3162 3163 3164
		push_new_value $item $name $new 1
	} else {
		push_new_value $item $name $new 0
	}
}

3165 3166 3167 3168 3169 3170
proc ptime {time} {
	set usec [lindex [split $time] 0]
	set sec [format "%.3f" [expr "$usec / 1000000.0"]]
	puts "time: $sec secs."
}

3171 3172 3173
proc do_var {item} {
	global connected_to_x11vnc item_cascade menu_var

3174 3175
	set debug [in_debug_mode]

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

		if {$item == "http"} {
			global vnc_url
			append_text "  URL: $vnc_url\n"
		}
3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242
	}
}

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} {
3243 3244 3245 3246 3247 3248
	if {$item == "Properties"} {
		return 1
	}
	if {$item == "Tray"} {
		return 1
	}
3249 3250 3251 3252 3253 3254 3255 3256 3257
	return [opt_match G $item]
}

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

proc value_is_string {item} {
	global item_bool
3258 3259 3260
	if {![info exists item_bool($item)]} {
		return 0
	}
3261 3262 3263 3264 3265 3266 3267 3268 3269
	if {! $item_bool($item)} {
		return 1
	} else {
		return 0
	}
}

proc value_is_bool {item} {
	global item_bool
3270 3271 3272
	if {![info exists item_bool($item)]} {
		return 0
	}
3273 3274 3275 3276 3277 3278 3279
	if {$item_bool($item)} {
		return 1
	} else {
		return 0
	}
}

3280 3281
proc split_query0 {query} {
	# original slower way with regexp/regsub
3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300
	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
}

3301 3302 3303 3304 3305 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
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
}

3333 3334 3335
proc set_x11_display {name} {
	global x11_display
	set x11_display "x11vnc X display: $name"
3336
	set_name "tkx11vnc - $name"
3337 3338
}
proc set_vnc_display {name} {
3339
	global vnc_display icon_mode
3340
	set vnc_display "VNC display: $name"
3341 3342 3343 3344

	if {$icon_mode} {
		set_icon_label
	}
3345
}
3346 3347 3348 3349
proc set_vnc_url {name} {
	global vnc_url
	set vnc_url $name
}
3350 3351
proc no_x11_display {} {
	set_x11_display "(*none*)"
3352
	set_name "tkx11vnc"
3353 3354 3355 3356
}
proc no_vnc_display {} {
	set_vnc_display "(*none*)"
}
3357 3358 3359
proc no_vnc_url {} {
	set_vnc_url "(*none*)"
}
3360

3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376
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"
}

3377 3378 3379 3380 3381 3382 3383
proc fetch_displays {} {

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

	set got_x11 0
	set got_vnc 0
3384
	set got_url 0
3385 3386 3387 3388 3389 3390 3391 3392

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

3409 3410 3411 3412 3413 3414
proc client_dialog {client} {
	set cid ""
	set host ""
	set ip ""
	global menu_var text_area cleanup_window item_bool

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

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

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

3584
proc update_clients_menu {list} {
3585
	global item_cascade ffont
3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596
	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
	}

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

proc set_widgets {} {
3638
	global connected_to_x11vnc item_case item_menu item_entry menu_m
3639 3640

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

3674 3675
proc toggle_simple_gui {} {
	global beginner_mode simple_gui_created
3676
	global connected_to_x11vnc make_gui_count
3677

3678 3679 3680 3681
	if {$beginner_mode} {
		append_text "\nSwitching to simple-gui mode.\n"
	} else {
		append_text "\nSwitching to power-user gui mode.\n"
3682 3683
	}

3684 3685 3686
	if {$make_gui_count == 1} {
		incr make_gui_count
	}
3687 3688 3689 3690 3691 3692 3693
	set simple_gui_created 1
	make_menu_items
	set_widgets
	set_internal_help
	append_text "\n"
}

3694 3695 3696
proc little_qs {m} {
	global bfont ffont beginner_mode
	global helpremote helptext helplabel
runge's avatar
runge committed
3697
	global tk_version osname
3698 3699 3700 3701

	if {$tk_version < 8.0} {
		return
	}
runge's avatar
runge committed
3702 3703 3704
	if {$osname == "Darwin"} {
		return
	}
3705 3706 3707 3708 3709 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

	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
}

3745 3746 3747
proc make_menu_items {} {
	global template 
	global menu_b menu_m menu_count
3748
	global item_opts item_bool item_case item_menu item_entry menu_var unset_str
3749 3750 3751
	global item_cascade
	global bfont ffont beginner_mode simple_gui_created
	global helptext helpremote helplabel
3752

3753 3754 3755 3756 3757
	# some tweaks...
	if {![info exists menu_var(deny)]} {
		set menu_var(deny) 0
	}

3758
	set case "";
3759 3760 3761 3762 3763
	set L_casc ""
	set L_casc_count 0
	set L_menus [list]

	# Extract the menu items:
3764 3765 3766 3767 3768 3769
	foreach line [split $template "\n"] {
		if {[regexp {^Row:} $line]} {
			continue
		}
		if {[regexp {^[A-z]} $line]} {
			set case [string trim $line]
3770 3771 3772

			if {$simple_gui_created} {
				set i0 0
3773 3774 3775
				#if {$case == "Misc"} { # kludge for simple_gui
				#	set i0 1
				#}
3776 3777 3778
				catch {$menu_m($case) delete $i0 end}
			}
			set menu_count($case) 0
3779 3780
			continue;
		}
3781

3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802
		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

3803 3804 3805 3806 3807
		if {$item == "LOFF"} {
			set L_casc ""
			continue
		}

3808 3809 3810 3811 3812 3813 3814
		if {$item == "-- D"} {
			set beginner_sep 1
			set item "--"
		} else {
			set beginner_sep 0
		}

3815 3816 3817 3818
		set item_opts($item) $opts
		set item_case($item) $case
		set item_bool($item) $bool
		set item_cascade($item) ""
3819 3820 3821 3822 3823 3824 3825 3826 3827

		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
		}
3828 3829 3830

		set mvar 0 

3831 3832 3833 3834 3835
		if {$beginner_mode && ! $beginner_sep && ![opt_match D $item]} {
			set item_entry($item) "-1"
			continue;
		}

3836 3837 3838 3839
		set item_menu($item) $m

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

3841 3842 3843 3844 3845 3846 3847 3848
		# 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 \
3849
				-font $ffont \
3850 3851 3852 3853 3854
				-command {destroy .; exit 0}

		} elseif {$case == "Help"} {
			# Help is simple help:
			$m add command -label "$item" \
3855
				-font $ffont \
3856 3857
				-command "menu_help $item"

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

		} elseif {[is_action $item]} {
			# Action
			$m add command -label "$item" \
3884
				-font $ffont \
3885
				-command "do_var $item"
3886 3887 3888
			if {![info exists menu_var($item)]} {
				set menu_var($item) "";	# for convenience
			}
3889 3890 3891 3892 3893

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

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

3932 3933 3934 3935 3936 3937 3938 3939
		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)
		}
3940

3941
		if {$mvar} {
3942 3943 3944
			if {![info exists menu_var($item)]} {
				set menu_var($item) $unset_str
			}
3945 3946 3947
		}
	}

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

3961
proc check_update_vars {} {
3962
	global last_query_all_time query_all_freq icon_mode
3963
	global connected_to_x11vnc client_tail client_sock
3964

3965 3966
	set now [clock seconds]

3967 3968
	set delay $query_all_freq
	if {$client_tail != "" && $client_sock == ""} {
3969 3970
		set delay [expr 2 * $query_all_freq]
	}
3971 3972 3973

	if {$connected_to_x11vnc} {
		set quiet 0
3974
		set refresh [expr "$last_query_all_time + $delay"]
3975 3976 3977 3978 3979

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

		if {$now > $refresh} {
3980
			append_text "Refreshing current settings... "
3981 3982 3983 3984 3985 3986 3987 3988
			query_all $quiet
			if {$quiet} {
				append_text "done\n"
			}
		}
	}
}

3989 3990 3991 3992
proc menu_posted {} {
	check_update_vars
}

3993 3994 3995 3996 3997 3998 3999 4000
proc props_widgets {state} {
	global props_buttons
	foreach w $props_buttons {
		$w configure -state $state	
	}
	update
}

4001 4002 4003 4004 4005 4006
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
4007
	global client_sock
4008

4009 4010
	props_widgets disabled

4011 4012 4013 4014 4015 4016 4017 4018
	set aft 500
	if {[info exists client_sock]} {
		if {$client_sock != ""} {
			set aft 150
		}
	}
	set did 0

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

4074
	set fpw 0
4075
	if {$props_passwd != $prop0_passwd} {
4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088
		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
4089
		if {$props_passwd == ""} {
4090 4091 4092 4093 4094 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
			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"} {
4136
			if {$did > 0} {after $aft}; incr did
4137 4138 4139 4140
			push_new_value "passwd" "passwd" "$props_passwd" 1
			set prop0_passwd $props_passwd
		}
		if {$case == "vpw"} {
4141
			if {$did > 0} {after $aft}; incr did
4142 4143
			push_new_value "viewpasswd" "viewpasswd" "$props_viewpasswd" 1
			set prop0_viewpasswd $props_viewpasswd
4144 4145 4146
		}
	}

4147
	props_widgets normal
4148 4149 4150
}

proc props_advanced {} {
4151
	global icon_mode icon_win props_win full_win
4152 4153 4154 4155 4156 4157 4158 4159 4160
	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
	}
4161
	update
4162 4163 4164 4165 4166 4167 4168 4169 4170
	wm deiconify $full_win
	update

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

4171
proc do_props {{msg ""}} {
4172 4173 4174 4175 4176 4177
	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
4178
	global props_buttons icon_noadvanced
4179
	global icon_mode icon_mode_at_startup
4180
	global screen_height screen_width
4181

4182 4183
	check_update_vars

4184 4185 4186 4187 4188
	set pady 1m
	if {$screen_height <= 360} {
		set pady 0m
	}

4189 4190 4191 4192 4193 4194 4195 4196
	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
4197 4198 4199 4200 4201 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
		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

4251 4252 4253 4254 4255
	if [info exists props_buttons] {
		catch {unset props_buttons}
	}
	set props_buttons [list]

4256 4257 4258
	set w .props
	catch {destroy $w}
	toplevel $w
4259
	wm title $w "x11vnc Properties"
4260 4261 4262 4263 4264 4265
	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

4266 4267
	bind $w <KeyPress-Escape> "destroy $w"

4268
	pack $b1.apply $b1.cancel $b1.ok -side right -expand 1
4269
	lappend props_buttons $b1.apply $b1.cancel $b1.ok
4270 4271 4272 4273 4274 4275

	set b2 "$w.buttons2"
	frame $b2

	button $b2.advanced -text "Advanced ..." \
		-command "destroy $w; props_advanced" -font $bfont
4276 4277 4278 4279 4280
	if {! $icon_noadvanced} {
		lappend props_buttons $b2.advanced
		pack $b2.advanced -side right -expand 1
	}

4281
	button $b2.help -text "Help ..." -command "menu_help Properties" -font $bfont
4282 4283
	lappend props_buttons $b2.help
	pack $b2.help -side right -expand 1
4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294

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

4297

4298 4299
	lappend props_buttons $vp.e

4300 4301 4302 4303 4304 4305 4306 4307 4308 4309
	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
4310
	pack $pw.e -fill x -expand 1 -padx 1m -pady $pady -side top
4311

4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322
	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}
	}

4323 4324
	lappend props_buttons $pw.e

4325 4326 4327 4328
	set sh "$w.shared"
	frame $sh
	checkbutton $sh.button -text "Shared" \
		-variable props_shared -anchor w -font $bfont
4329
	pack $sh.button -fill x -expand 1 -padx 1m -pady $pady
4330 4331 4332 4333 4334

	set vo "$w.viewonly"
	frame $vo
	checkbutton $vo.button -text "All Clients ViewOnly" \
		-variable props_viewonly -anchor w -font $bfont
4335
	pack $vo.button -fill x -expand 1 -padx 1m -pady $pady
4336 4337 4338 4339 4340

	set cf "$w.confirm"
	frame $cf
	checkbutton $cf.button -text "Ask for Confirmation" \
		-variable props_confirm -anchor w -font $bfont
4341
	pack $cf.button -fill x -expand 1 -padx 1m -pady $pady
4342 4343 4344 4345 4346

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

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

	lappend props_buttons $ac.button $cf.button $vo.button $sh.button
4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389

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

4393 4394
	wm title $w "New Client"

4395
	pack $w.l $w.e $w.h $w.b -side left -pady 1m -padx 0.5m
4396 4397 4398 4399 4400 4401
	focus $w.e
	center_win $w
	update 
	
	tkwait window $w

4402 4403
	regsub -all {[{}()~!$&*|;'"`{}<>\[\]]} $newclient "" newclient
	#'
4404 4405 4406 4407 4408 4409 4410 4411 4412
	if {$newclient != ""} {
		push_new_value "connect" "connect" "$newclient" 1
	}
}

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

4413 4414 4415 4416 4417 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
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]} {
4444 4445
			set nid [expr "$id + 0"]
			$wd add command -label "$nid $lab" \
4446 4447 4448 4449 4450
				-command "do_disconnect_client $id"
		}
	}
}

4451
proc pmenu {m x y} {
4452 4453 4454
	if {![winfo exists $m]} {
		return
	}
4455 4456 4457
	set x [expr $x-10]
	set y [expr $y-10]
	$m post $x $y
4458 4459
	# XXX more care needed
	grab set -global $m
4460 4461 4462 4463
}

proc set_client_balloon {str} {
	global client_balloon vnc_display
4464 4465 4466
	global client_id_list

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

4523 4524 4525
proc read_client_info {channel} {
	global x11vnc_client_file client_str client_info_read
	global read_client_info_lock
4526 4527
	set db 0

4528 4529 4530 4531 4532 4533 4534 4535 4536 4537
	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
4538 4539
		after 100
		set str ""
4540 4541
		set count [gets $channel str]
		if {$db} {puts stderr "read_client_info-$channel: $str"}
4542

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

proc show_client_balloon {} {
4588
	global icon_mode icon_win props_win full_win
4589
	global client_balloon ffont connected_to_x11vnc
4590

4591 4592
	set noinfo "tkx11vnc: no client information"
	set noinfo "$noinfo\navailable from x11vnc ..."
4593
	if ![info exists client_balloon] {
4594
		set client_balloon $noinfo
4595 4596
	}
	if {$client_balloon == ""} {
4597
		set client_balloon $noinfo
4598 4599 4600 4601 4602
	}

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

4603 4604 4605 4606 4607
	set infotext $client_balloon
	if {!$connected_to_x11vnc} {
		set infotext "Not currently attached to x11vnc\nLast available info:\n$infotext"
	}

4608 4609 4610 4611
	set w .client_balloon
	catch {destroy $w}
	toplevel $w -bg black -screen [winfo screen $icon_win]
	wm overrideredirect $w 1
4612
	label $w.l -text "$infotext" -relief flat -bg "#ffffaa" -fg black \
4613 4614 4615 4616 4617 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
		-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} {
4645 4646 4647 4648 4649 4650 4651 4652
	global icon_win client_tail client_sock client_info_read

	if {![info exists icon_win]} {
		return
	}
	if {$icon_win == ""} {
		return
	}
4653 4654 4655 4656 4657
	if {$clients > 0} {
		$icon_win configure -bg black -fg white
	} else {
		$icon_win configure -bg white -fg black
	}
4658 4659 4660 4661 4662

	if {$client_tail == "" || !$client_info_read} {
		if {$client_sock == ""} {
			$icon_win configure -fg red
		}
4663 4664 4665 4666 4667
	}
}

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

	set db 0
4699
#dtime t1
4700 4701 4702 4703
	set start 13037
	set tries 100
	set socket_got_callback 0

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

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

	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 {
4801
		setup_client_sock 1
4802
	}
4803
#dtime t4
4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831
}

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
}

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

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

4873 4874 4875 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
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\"\]"
		}
	}
}

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

4959 4960
	if {$tray_embed} {
		set font $sfont
4961
		set mfont $snfont
4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974
	}
	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
4975

4976 4977 4978 4979 4980
	if {$tray_embed && $tray_running} {
		wm withdraw .
	}

	set l .icon
4981
	set icon_win $l
4982 4983 4984 4985 4986 4987 4988 4989
	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
4990 4991
	icon_win_cfg 0

4992

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

	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

5011 5012
	$menu add separator

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

5025
	$menu add command -font $mfont -label "Stop x11vnc" -command clean_icon_exit
5026

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

	bind . <Control-KeyPress-c> {destroy .; exit 0}
5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063

	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
			}
		}
	}
5064 5065
	wm iconname . "tkx11vnc"
	wm title . "tkx11vnc"
5066
	update
5067
	wm deiconify .
5068
	update
5069

5070 5071 5072 5073 5074 5075 5076 5077
	old_balloon
}

proc setup_client_channel {} {
	global client_sock client_tail

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

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

proc clean_icon_exit {} {
	clean_client_tail
5121 5122 5123 5124 5125 5126 5127
	push_new_value "stop" "stop" 1 0
	set_connected no
	update
	destroy .
	exit
}

5128 5129 5130 5131 5132 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
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

5158 5159
	set gui_current_state ""

5160 5161 5162 5163 5164 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
	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


5208
	update
5209 5210 5211 5212 5213 5214 5215
	wm deiconify .
	update idletasks
	wm minsize $w [winfo width $w] [winfo height $w]
	if {$mode == "full" && $make_gui_count > 1} {
		center_win .
	}

5216

5217
	if {$make_gui_count == 1} {
5218
		copy_default_vars
5219 5220
		if {$x11vnc_connect} {
			try_connect_and_query_all
5221 5222
		} else {
			insert_cmdline_vars
5223 5224 5225 5226
		}
	} else {
		set_name "RESTORE"
	}
5227 5228 5229

	setup_client_tail

5230 5231
	set_widgets

5232 5233
	if {$mode == "tray"} {
		setup_tray_embed
5234 5235 5236 5237 5238
	}
}

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

5252 5253

	# Make the top label
5254
	set label_width 84
5255 5256 5257
	if {$screen_width <= 400} {
		set label_width 64
	}
5258
	set info_label "$top.info"
5259 5260 5261 5262
	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

5263 5264
	set top_widget_names(info) $info_label

5265 5266 5267 5268 5269 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
	# 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.
5297
	set f "$top.menuframe"
5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317
	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
5318 5319 5320 5321 5322 5323
			global osname
			set tstr "$case"
			if {$osname == "Darwin"} {
				#set tstr " $case   "
			}
			menubutton $menub -text "$tstr" -underline $ul \
5324 5325 5326
				-anchor w -menu $menu -background $fbg \
				-font $bfont
			pack $menub -side top -fill x
5327
			menu $menu -tearoff 0 -postcommand menu_posted
5328 5329 5330
		}
	}
	pack $f -side top -fill x
5331
	set top_widget_names(menuframe) $f
5332 5333

	make_menu_items
5334 5335

	# Make the x11 and vnc display label bar:
5336
	set df "$top.displayframe"
5337
	frame $df -bd 1 -relief groove
5338
	set top_widget_names(displayframe) $df
5339 5340

	set df_x11 "$df.xdisplay"
5341

5342 5343 5344
	if {$make_gui_count == 1} {
		no_x11_display
	}
5345
	set lw [expr {$label_width / 2}]
5346 5347
	label $df_x11 -textvariable x11_display -width $lw -anchor w \
		-font $ffont
5348 5349

	set df_vnc "$df.vdisplay"
5350 5351 5352 5353

	if {$make_gui_count == 1} {
		no_vnc_display
	}
5354 5355
	label $df_vnc -textvariable vnc_display -width $lw -anchor w \
		-font $ffont
5356 5357 5358 5359 5360

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

	# text area
5361
	global text_height
5362
	set text_area "$top.text"
5363 5364 5365 5366 5367 5368
	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
	}
5369
	pack $text_area -side top -fill both -expand 1
5370
	set top_widget_names(text) $text_area
5371 5372


5373 5374 5375 5376 5377 5378
	if {$text_area_str == ""} {
		set str "Click Help -> gui for overview."
		append_text "\n$str\n\n"
	} else {
		append_text $text_area_str
	}
5379 5380

	# Make entry box stuff
5381
	set ef "$top.entryframe"
5382
	frame $ef -bd 1 -relief groove
5383
	set top_widget_names(entryframe) $ef
5384

5385
	# Entry Label
5386 5387 5388 5389 5390
	set ef_label "$ef.label"
	label $ef_label -textvariable entry_str -anchor w -font $bfont

	set entry_str "Set... : "
	set ef_entry "$ef.entry"
5391
	entry $ef_entry -relief sunken -font $ffont
5392 5393 5394
	bind $ef_entry <KeyPress-Return> {set entry_set 1}
	bind $ef_entry <KeyPress-Escape> {set entry_set 0}

runge's avatar
runge committed
5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406
	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...   "
	}

5407
	# Entry OK button
5408 5409 5410
	set bpx "1m"
	set bpy "1"
	set hlt "0"
5411
	set ef_ok "$ef.ok"
runge's avatar
runge committed
5412
	button $ef_ok -text $ok_s -pady $bpy -padx $bpx -command {set entry_set 1} \
5413
		-highlightthickness $hlt \
5414 5415
		-font $bfont

5416
	# Entry Skip button
5417
	set ef_skip "$ef.skip"
runge's avatar
runge committed
5418
	button $ef_skip -text $cancel_s -pady $bpy -padx $bpx -command {set entry_set 0} \
5419
		-highlightthickness $hlt \
5420 5421
		-font $bfont

5422
	# Entry Help button
5423
	set ef_help "$ef.help"
runge's avatar
runge committed
5424
	button $ef_help -text $help_s -pady $bpy -padx $bpx -command \
5425 5426
		{menu_help $entry_dialog_item} -font $bfont \
		-highlightthickness $hlt
5427

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

}

5451 5452 5453 5454 5455
proc menu_bindings {m} {
	set db 0
	if {$db} {puts "menu_bindings $m"}

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

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

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

proc stop_watch {onoff} {
	global orig_cursor text_area entry_box

5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536
	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
		}
	}
5537 5538 5539

	if {$onoff == "on"} {
		foreach item $widgets {
5540 5541 5542
			if {![winfo exists $item]} {
				continue
			}
5543 5544 5545 5546
			$item config -cursor {watch}
		}
	} else {
		foreach item $widgets {
5547 5548 5549
			if {![winfo exists $item]} {
				continue
			}
5550 5551 5552 5553 5554 5555 5556 5557
			$item config -cursor {}
		}
	}
	update
}

proc double_check_noremote {} {
	set msg "\n\n"
5558 5559
	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"
5560
	append msg "*** WARNING: If so, press \"OK\", otherwise press \"Cancel\"\n"
5561 5562 5563 5564 5565
	append msg "\n"
	bell
	return [warning_dialog $msg "noremote"]
}

5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583
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
5584
		} elseif {$item == "WindowView"} {
5585
			continue
5586
		} elseif {$item == "rc" || $item == "norc"} {
5587 5588
			continue
		}
5589

5590 5591 5592 5593 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
		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]} {
5620
			set nitem [get_nitem $item]
5621 5622 5623 5624 5625 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

			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
}

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

5710 5711 5712 5713 5714
proc show_start_cmd {} {
	set msg [get_start_x11vnc_txt]
	append_text "$msg\n"
}

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

5737
proc get_start_x11vnc_cmd {{show_rc 0}} {
5738
	global cmd_var menu_var default_var unset_str x11vnc_prog
5739 5740 5741 5742 5743 5744 5745

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

	set cmd [split $xterm_cmd]

	lappend cmd $x11vnc_prog

5746 5747 5748
	lappend cmd "-gui"
	lappend cmd "none"

5749 5750
	set rc_txt ""

5751 5752
	set saw_id 0

5753
	foreach item [lsort [array names menu_var]] {
5754
		if {$item == "gui"} {
5755
			continue
5756
		} elseif {![active_when_starting $item]} {
5757
			continue
5758
		} elseif {[is_action $item]} {
5759
			continue
5760
		} elseif {$item == "debug_gui"} {
5761
			continue
5762
		} elseif {$item == "WindowView"} {
5763 5764
			continue
		}
5765

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

		if {[value_is_bool $item]} {
			if {[info exists menu_var($item)]} {
5789 5790 5791 5792 5793 5794 5795 5796 5797
				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} {
5798
					lappend cmd "-$item"
5799
					append rc_txt "-$item\n"
5800 5801 5802
				}
			}
		} elseif {[value_is_string $item]} {
5803 5804 5805 5806 5807 5808 5809 5810 5811 5812
			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;
5813
					}
5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830
				}
				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]
5831 5832
						}
					}
5833 5834 5835 5836 5837
					
					lappend cmd $mv
					set mt $mv
					regsub -all {#} $mt {\#} mt
					append rc_txt "-$nitem $mt\n"
5838 5839 5840 5841 5842 5843 5844 5845
				}
			}
		}
	}
	lappend cmd "2>"
	lappend cmd "/dev/null"
	lappend cmd "&"
	
5846 5847 5848 5849 5850
	if {$show_rc} {
		return $rc_txt
	} else {
		return $cmd
	}
5851 5852 5853 5854 5855 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
}

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
5893 5894 5895 5896 5897 5898 5899 5900 5901
	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"
		}
	}
5902 5903
}

5904 5905 5906 5907
proc run_remote_cmd_via_sock {opts} {
	global client_sock

	set db 0
5908 5909 5910 5911
	if {[file channels $client_sock] == ""} {
		set client_sock ""
		return "fail"
	}
5912
	if {[eof $client_sock]} {
5913
		catch {close $client_sock}
5914 5915 5916 5917 5918 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
		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]

5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968
		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]
			}
		}

5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982
		set docmd ""

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

	set result [string trim $result]

	return $result
}

5983 5984
proc run_remote_cmd {opts} {
	global menu_var x11vnc_prog x11vnc_cmdline x11vnc_xdisplay
5985
	global x11vnc_auth_file x11vnc_connect_file
5986
	global client_sock
5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000

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

6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011
	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
		}
	}

6012 6013 6014 6015
	set cmd ""

	lappend cmd $x11vnc_prog;

6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027
	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
		}
6028
	}
6029
	lappend cmd "-sync"
6030 6031 6032 6033 6034 6035
	foreach word $opts {
		lappend cmd $word
	}
	lappend cmd "2>"
	lappend cmd "/dev/null"

6036
	if {0 || $debug} {
6037 6038 6039 6040 6041
		set str [join $cmd]
		puts "running: $str"
		foreach word $cmd {
			puts "   word: $word"
		}
6042 6043 6044
	}

	set output ""
6045
	menus_disable
6046

6047 6048 6049
	stop_watch on
	catch {set output [eval exec $cmd]}
	stop_watch off
6050

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

6080
	set db 0
6081
#dtime c1
6082

6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095
	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]
6096
#dtime c2a
6097

6098 6099
	if {$db} {puts "try_connect: \"$result\""}

6100 6101 6102 6103 6104 6105
	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
6106 6107

		setup_client_channel
6108
#dtime c2b
6109 6110 6111
		setup_client_sock 1
		setup_client_tail

6112
		fetch_displays
6113
#dtime c3a
6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127
		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
	}
}

6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144
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]

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

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
6211 6212
	global icon_mode_at_startup
	global tray_embed tray_running
6213 6214 6215 6216 6217
	if {$gui_mode == "full"} {
		set env(X11VNC_ICON_MODE) 0
	} elseif {$gui_mode == "icon"} {
		set env(X11VNC_ICON_MODE) 1
	} elseif {$gui_mode == "tray"} {
6218 6219 6220
		if {$tray_running} {
			set env(X11VNC_ICON_MODE) "RUNNING"
		} else {
6221 6222 6223 6224 6225 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
			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
}

6283 6284 6285
############################################################################
# main:

6286 6287 6288 6289
if [info exists env(X11VNC_GUI_TIME)] {
	dtime M
}

6290 6291
wm withdraw .

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

set unset_str "(unset)"
6314
set vnc_url $unset_str
6315
set connected_to_x11vnc 0
6316
set menus_disabled 0
6317 6318
set max_text_height 40
set max_text_width 90
6319
set text_height 14
6320
set bfont "-adobe-helvetica-bold-r-*-*-*-120-*-*-*-*-*-*"
6321 6322
set sfont "-adobe-helvetica-bold-r-*-*-*-100-*-*-*-*-*-*"
set snfont "-adobe-helvetica-medium-r-*-*-*-100-*-*-*-*-*-*"
6323
set ffont "fixed"
6324 6325 6326 6327
set help_indent 24;
set reply_xdisplay ""
set all_settings "None so far."
set always_update 1
6328
set cache_all_query_vars ""
6329 6330
set query_all_freq 120
set last_query_all_time [clock seconds]
6331
set client_tail ""
6332 6333
set client_sock ""
set client_info_read 0
6334 6335 6336 6337
set make_gui_count 0
set text_area_str ""
set gui_argv0 $argv0
set gui_start_mode ""
6338

6339 6340 6341 6342 6343 6344
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 ""
}
6345 6346 6347 6348 6349
if {[regexp {^[34]} $tk_version] || $tk_version == "8.0"} {
	set old_labels 1
} else {
	set old_labels 0
}
6350 6351 6352 6353
set have_labelframes 1
if {$tk_version < 8.4} {
	set have_labelframes 0
}
6354

6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367
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
	}
}
6368 6369 6370 6371 6372 6373 6374
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)
}

6375 6376
if {"$argv" == "-spit"} {
	set fh [open $argv0 r]
runge's avatar
runge committed
6377 6378 6379
	puts "#ifndef _TKX11VNC_H"
	puts "#define _TKX11VNC_H"
	puts "#ifdef NOGUI"
6380
	puts "char gui_code\[\] = \"\";"
runge's avatar
runge committed
6381
	puts "#else"
6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392
	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
6393 6394 6395 6396
	puts "#endif"
	puts "/* ifdef NOGUI */"
	puts "#endif"
	puts "/* ifndef _TKX11VNC_H */"
6397 6398 6399 6400 6401
	close $fh
	puts ";"
	exit 0
}

6402 6403 6404 6405 6406

set_view_variable "full"

#puts [exec env | grep X11VNC]

6407
# Read environment for clues:
6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422

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] {
6423
#puts "eof $client_tail"
6424 6425 6426 6427 6428 6429 6430
			clean_client_tail
			set client_tail ""
		}
	}
	catch {file delete -force $x11vnc_client_file}
}

6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448
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;
}

6449 6450 6451 6452 6453
if {[info exists env(X11VNC_GUI_GEOM)]} {
	set x11vnc_gui_geom $env(X11VNC_GUI_GEOM);
} else {
	set x11vnc_gui_geom ""
}
6454 6455 6456 6457 6458
if {[info exists env(X11VNC_GUI_PARAMS)]} {
	set x11vnc_gui_params $env(X11VNC_GUI_PARAMS);
} else {
	set x11vnc_gui_params ""
}
6459

6460 6461 6462 6463 6464 6465
if {[info exists env(X11VNC_CONNECT_FILE)]} {
	set x11vnc_connect_file $env(X11VNC_CONNECT_FILE);
} else {
	set x11vnc_connect_file "";
}

6466 6467 6468
set x11vnc_started 0
if {[info exists env(X11VNC_STARTED)]} {
	set x11vnc_started 1
6469 6470
}

6471
set x11vnc_xdisplay ""
6472 6473 6474 6475 6476
if {[info exists env(X11VNC_XDISPLAY)]} {
	set x11vnc_xdisplay $env(X11VNC_XDISPLAY);
	set x11vnc_connect 1

} elseif {$argv != "" && [regexp {:[0-9]} $argv]} {
6477
	set env(X11VNC_XDISPLAY) "$argv"
6478 6479 6480 6481 6482 6483 6484 6485
	set x11vnc_xdisplay "$argv"
	set x11vnc_connect 1

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

6488 6489 6490 6491 6492 6493
if {[info exists env(X11VNC_AUTH_FILE)]} {
	set x11vnc_auth_file $env(X11VNC_AUTH_FILE)
} else {
	set x11vnc_auth_file ""
}

6494 6495 6496 6497 6498 6499 6500
set simple_gui_created 0
if {[info exists env(X11VNC_SIMPLE_GUI)]} {
	set beginner_mode 1
} else {
	set beginner_mode 0
}

6501 6502 6503
set icon_mode 0
set tray_embed 0
set tray_running 0
6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517

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)

6518 6519 6520 6521
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
6522
} else {
6523 6524 6525 6526 6527 6528 6529 6530 6531
	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
	}
}
6532

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

6550 6551
if {[info exists env(X11VNC_ICON_EMBED_ID)]} {
	set icon_embed_id $env(X11VNC_ICON_EMBED_ID)
6552
} else {
6553
	set icon_embed_id ""
6554
}
6555

6556

6557
set hostname [exec uname -n]
6558 6559 6560 6561 6562 6563
set osname [exec uname]

if {[regexp -nocase {IRIX} $osname]} {
	# IRIX "fixed" font is huge and doublespaced... 
	set ffont $snfont
}
runge's avatar
runge committed
6564 6565 6566 6567
if {[regexp -nocase {Darwin} $osname]} {
	set ffont {Monaco 10}
	set bfont {system}
}
6568

6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589
#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

6590
set_name "tkx11vnc"
6591 6592 6593

key_bindings;

6594 6595
get_default_vars

6596 6597
dtime D

6598 6599 6600 6601 6602 6603
if {$icon_mode} {
	if {$tray_embed} {
		make_gui "tray"
	} else {
		make_gui "icon"
	}
6604
	dtime G
6605 6606
	old_balloon
	if {$icon_setpasswd} {
6607 6608 6609 6610 6611
		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" 
6612
		do_props $m
6613
		#push_new_value "unlock" "unlock" 1 0
6614 6615 6616
	}
} else {
	make_gui "full"
6617
	dtime G
6618 6619
}

6620

6621
# main loop.