tkx11vnc 157 KB
Newer Older
1 2 3 4 5
#!/bin/sh
# the next line restarts using wish. \
exec wish "$0" "$@"
catch {rename send {}}
#
6
# Copyright (c) 2004-2006 Karl J. Runge <runge@karlrunge.com>
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
# All rights reserved.
#
#  This is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either version 2 of the License, or
#  (at your option) any later version.
#
#  This software is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this software; if not, write to the Free Software
#  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
#  USA.

#
25
# tkx11vnc v0.2
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
# This is a simple frontend to x11vnc.  It uses the remote control
# and query features (-remote/-query aka -R/-Q) to interact with it. 
# It is just a quick-n-dirty hack (it parses -help output, etc), but
# it could be of use playing with or learning about the (way too) many
# parameters x11vnc has.
# 
# It can be used to interact with a running x11vnc (see the x11vnc
# -gui option), or to set the parameters and then start up x11vnc.  
# 

#
# Below is a simple picture of how the gui should be laid out and how
# the menus should be organized.  Most menu items correspond to remote
# control commands. A trailing ":" after the item name means it is a string
# to be set rather than a boolean that can be toggled (e.g. the entry
# box must be used).
#
# Some tweak options may be set in the prefix "=" string.
#	A means it is an "Action" (not a true variable)
#	R means it is an action only valid in remote mode.
#	S means it is an action only valid in startup mode.
#	Q means it is an action worth querying after running.
#	P means the string can be +/- appended/deleted (string may not
#         be the same after the remote command)
#	G means gui internal item
#	F means can be set via file browse
runge's avatar
runge committed
52
#	D means for simple gui
53 54 55 56 57
#	-C:val1,... means it will be a checkbox (radio button)
#	   the "-" means no other options follow
#	0 means to skip the item.
#	-- means add a separator
#
58 59
#       The =GAL ... =GAL LOFF stuff is to provide submenus.
#
60

61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
global env started time_count
set started ""
proc dtime {{msg ""}} {
	global started time_count
	if {$started == ""} {
		return
	}
	set diff [expr "[exec gtod.bin] - $started"]
	set diff [format "%.2f" $diff]
	incr time_count
	if {$msg == ""} {
		set msg $time_count
	}
	puts -nonewline stderr "$msg $diff " 
	puts stderr [clock format [clock seconds]]
}

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

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

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

Help
114
	=DGA gui
115
	=DGA all
116 117

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	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\"  
562 563 564 565
"

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

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

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

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

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

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

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

	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.

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

Alternatively, you can fine tune the VNC client's input permissions
604 605 606
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.
607

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

	set helptext(solid_color) "
Set the -solid color value.
613 614 615 616
"

	set helptext(xrandr_mode) "
Set the -xrandr mode value.
617 618 619
"

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

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

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

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

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

	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.
643 644
"

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

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

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

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

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

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

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

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

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

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

713 714
Termination:

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

	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.

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

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).
773 774 775 776 777 778 779

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.

780 781 782 783
 - 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.
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 814 815 816


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

818 819
	set helptext(all) $helpall

820
	set helptext(Misc-Tuning:) "
821
x11vnc has what seems like hundreds of tuning parameters!  In this
822
sub-menu we place some lesser used ones.  Most likely you'll want to
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 848 849 850
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.
851 852 853 854 855 856 857 858 859 860 861
"

	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.

862 863 864 865
"

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

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

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

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

	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.
1054 1055 1056 1057 1058 1059
"

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

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

	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.
1095 1096 1097 1098 1099 1100
"

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

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

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

1145 1146 1147 1148 1149
	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.

1150 1151 1152 1153 1154 1155
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)

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

There are two states tkx11vnc can be in:

	1) Available to control a running x11vnc process.
1162

1163 1164
	2) Getting ready to start a x11vnc process.

1165 1166
Most people will just use state 1).

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

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

1185

1186 1187 1188
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.
1189

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


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

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

1204 1205 1206 1207 1208
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).
1209

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

1214 1215 1216
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.
1217

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

1224 1225 1226 1227
   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.
1228

1229 1230

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

1236 1237 1238 1239 1240 1241 1242 1243

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\"
1244
"
1245

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

1261
"
1262 1263 1264 1265 1266 1267

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

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

1280 1281 1282 1283 1284
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).
1285

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

1290 1291 1292
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.
1293 1294

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

1300 1301 1302 1303
   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.
1304

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

"
}

1314 1315 1316 1317 1318 1319
}

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

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

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

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

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

	$w.f.t insert 1.0 $text;

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

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

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

	center_win $w
1441 1442

	return $w
1443 1444 1445 1446
}

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

	if {$icon_mode} {
		if {$item == "passwd"} {
			return 1
		}
		if {$item == "viewpasswd"} {
			return 1
		}
	}
1457 1458 1459

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

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

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

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

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

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

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

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

	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;
		}
1634
		if {[regexp {^-([0-9A-z_][0-9A-z_]*)} $line match name]} {
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 1710 1711 1712
			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;
		}
1713
		if {[regexp {^([0-9A-z_][0-9A-z_:]*)} $line match name]} {
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 1813 1814 1815
			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)
1816 1817 1818
		if {![winfo exists $menu_button]} {
			continue
		}
1819 1820 1821 1822 1823
		$menu_button configure -state $state
	}
}

proc menus_enable {} {
1824 1825
	global menus_disabled

1826
	menus_state "normal"
1827
	set menus_disabled 0
1828 1829 1830
}

proc menus_disable {} {
1831 1832 1833
	global menus_disabled

	set menus_disabled 1
1834 1835 1836 1837 1838 1839
	menus_state "disabled"
}

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

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

	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]
1993 1994 1995

		global last_query_all_time
		set last_query_all_time [clock seconds]
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 2031 2032 2033
	}

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

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

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

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

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

	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
2129
	set vl_bc 0
2130 2131
	set vl_bf 0

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

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

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

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

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

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

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

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

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

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

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

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

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

	entry_enable
	menus_disable

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

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

2318 2319 2320 2321 2322 2323 2324
	set clean_text_window 0;

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

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

	if {$clean_text_window} {
		cleanup_text_window;
	}

2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357
	update

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

	$entry_box configure -show ""

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 2389 2390 2391
	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} {
2392 2393
	global query_result_list

2394 2395
	set ok 0
	set found ""
2396 2397 2398 2399

	set query_result_list [split_query $query]

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

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

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

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 2607 2608 2609
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)
			}
		}
	}
}

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

2626
proc update_menu_vars {{query ""}} {
2627
	global all_settings menu_var query_result_list
2628 2629 2630

	set debug [in_debug_mode]

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

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

2663 2664
proc load_settings {{file ""}} {
	global menu_var default_var env
2665

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

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

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

2708 2709 2710
	set count 0
	set parms ""

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

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
		}
2806
		set file [tilde_expand $file]
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 2839 2840 2841
		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
		}
	}
}

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

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

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

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

2894 2895 2896 2897 2898
	return $qry
}

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

	set qry [all_query_vars]

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

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

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

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

proc show_all_settings {} {
	global all_settings
2958 2959 2960 2961
	global client_sock client_tail
	global x11vnc_client_file

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

2987 2988
proc show_logfile {} {
	global menu_var unset_str
2989 2990

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

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 3064 3065 3066
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
}

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

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

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

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

	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
	}

3148 3149 3150 3151 3152
	if {$item == "load-settings"} {
		load_settings
		return
	}

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

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

3174 3175 3176
proc do_var {item} {
	global connected_to_x11vnc item_cascade menu_var

3177 3178
	set debug [in_debug_mode]

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

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

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

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

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

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

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

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 3333 3334 3335
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
}

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

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

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

3380 3381 3382 3383 3384 3385 3386
proc fetch_displays {} {

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

	set got_x11 0
	set got_vnc 0
3387
	set got_url 0
3388 3389 3390 3391 3392 3393 3394 3395

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

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

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

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

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

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

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

proc set_widgets {} {
3641
	global connected_to_x11vnc item_case item_menu item_entry menu_m
3642 3643

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

3677 3678
proc toggle_simple_gui {} {
	global beginner_mode simple_gui_created
3679
	global connected_to_x11vnc make_gui_count
3680

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

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

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

	if {$tk_version < 8.0} {
		return
	}
runge's avatar
runge committed
3705 3706 3707
	if {$osname == "Darwin"} {
		return
	}
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 3745 3746 3747

	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
}

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

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

3761
	set case "";
3762 3763 3764 3765 3766
	set L_casc ""
	set L_casc_count 0
	set L_menus [list]

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

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

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

3806 3807 3808 3809 3810
		if {$item == "LOFF"} {
			set L_casc ""
			continue
		}

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

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

		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
		}
3831 3832 3833

		set mvar 0 

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

3839 3840 3841 3842
		set item_menu($item) $m

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

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

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

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

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

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

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

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

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

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

3964
proc check_update_vars {} {
3965
	global last_query_all_time query_all_freq icon_mode
3966
	global connected_to_x11vnc client_tail client_sock
3967

3968 3969
	set now [clock seconds]

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

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

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

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

3992 3993 3994 3995
proc menu_posted {} {
	check_update_vars
}

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

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

4012 4013
	props_widgets disabled

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

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

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

4150
	props_widgets normal
4151 4152 4153
}

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

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

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

4185 4186
	check_update_vars

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

4192 4193 4194 4195 4196 4197 4198 4199
	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
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 4251 4252 4253
		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

4254 4255 4256 4257 4258
	if [info exists props_buttons] {
		catch {unset props_buttons}
	}
	set props_buttons [list]

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

4269 4270
	bind $w <KeyPress-Escape> "destroy $w"

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

	set b2 "$w.buttons2"
	frame $b2

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

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

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

4300

4301 4302
	lappend props_buttons $vp.e

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

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

4326 4327
	lappend props_buttons $pw.e

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

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

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

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

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

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

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

4396 4397
	wm title $w "New Client"

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

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

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

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

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

proc set_client_balloon {str} {
	global client_balloon vnc_display
4467 4468 4469
	global client_id_list

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

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

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

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

proc show_client_balloon {} {
4591
	global icon_mode icon_win props_win full_win
4592
	global client_balloon ffont connected_to_x11vnc
4593

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

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

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

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

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

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

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

	set db 0
4702
#dtime t1
4703 4704 4705 4706
	set start 13037
	set tries 100
	set socket_got_callback 0

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

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

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

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
}

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

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
	}
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 4945 4946 4947
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\"\]"
		}
	}
}

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

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

4979 4980 4981 4982 4983
	if {$tray_embed && $tray_running} {
		wm withdraw .
	}

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

4995

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

	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

5014 5015
	$menu add separator

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

5028
	$menu add command -font $mfont -label "Stop x11vnc" -command clean_icon_exit
5029

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

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

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

5073 5074 5075 5076 5077 5078 5079 5080
	old_balloon
}

proc setup_client_channel {} {
	global client_sock client_tail

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

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

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

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 5158 5159 5160
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

5161 5162
	set gui_current_state ""

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 5208 5209 5210
	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


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

5219

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

	setup_client_tail

5233 5234
	set_widgets

5235 5236
	if {$mode == "tray"} {
		setup_tray_embed
5237 5238 5239 5240 5241
	}
}

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

5255 5256

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

5266 5267
	set top_widget_names(info) $info_label

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

	make_menu_items
5337 5338

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

	set df_x11 "$df.xdisplay"
5344

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

	set df_vnc "$df.vdisplay"
5353 5354 5355 5356

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

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

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


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

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

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

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

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

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

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

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

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

}

5454 5455 5456 5457 5458
proc menu_bindings {m} {
	set db 0
	if {$db} {puts "menu_bindings $m"}

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

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

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

proc stop_watch {onoff} {
	global orig_cursor text_area entry_box

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

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

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

5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586
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
5587
		} elseif {$item == "WindowView"} {
5588
			continue
5589
		} elseif {$item == "rc" || $item == "norc"} {
5590 5591
			continue
		}
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 5620 5621 5622
		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]} {
5623
			set nitem [get_nitem $item]
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 5689 5690 5691

			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
}

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

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

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

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

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

	set cmd [split $xterm_cmd]

	lappend cmd $x11vnc_prog

5749 5750 5751
	lappend cmd "-gui"
	lappend cmd "none"

5752 5753
	set rc_txt ""

5754 5755
	set saw_id 0

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

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

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

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

5907 5908 5909 5910
proc run_remote_cmd_via_sock {opts} {
	global client_sock

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

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

5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985
		set docmd ""

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

	set result [string trim $result]

	return $result
}

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

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

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

6015 6016 6017 6018
	set cmd ""

	lappend cmd $x11vnc_prog;

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

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

	set output ""
6048
	menus_disable
6049

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

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

6083
	set db 0
6084
#dtime c1
6085

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

6101 6102
	if {$db} {puts "try_connect: \"$result\""}

6103 6104 6105 6106 6107 6108
	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
6109 6110

		setup_client_channel
6111
#dtime c2b
6112 6113 6114
		setup_client_sock 1
		setup_client_tail

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

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

6148 6149 6150
	if {![info exists gui_current_state]} {
		set gui_current_state ""
	}
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 6178 6179 6180
	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 != ""} {
6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192
		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 ""
		}
6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213
	}
}

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

6286 6287 6288
############################################################################
# main:

6289 6290 6291 6292
if [info exists env(X11VNC_GUI_TIME)] {
	dtime M
}

6293 6294
wm withdraw .

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

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

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

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

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

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

6416 6417 6418 6419 6420

set_view_variable "full"

#puts [exec env | grep X11VNC]

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

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

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

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

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

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

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

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

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

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

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

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

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)

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

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

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

6570

6571
set hostname [exec uname -n]
6572 6573 6574 6575 6576 6577
set osname [exec uname]

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

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

6604
set_name "tkx11vnc"
6605 6606 6607

key_bindings;

6608 6609
get_default_vars

6610 6611
dtime D

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

6634

6635
# main loop.