- merge v0.01 --> Añadido fileselector - Añadidas fuentes de Gem y Pure Data - pix2jpg incluído en Gem. Archivos de construcción de Gem modificados. - Añadido fichero ompiling.txt con instrucciones de compilación
732 lines
27 KiB
Tcl
Executable file
732 lines
27 KiB
Tcl
Executable file
#!/bin/sh
|
|
# This line continues for Tcl, but is a single line for 'sh' \
|
|
exec wish "$0" -- ${1+"$@"}
|
|
# For information on usage and redistribution, and for a DISCLAIMER OF ALL
|
|
# WARRANTIES, see the file, "LICENSE.txt," in this distribution.
|
|
# Copyright (c) 1997-2009 Miller Puckette.
|
|
|
|
# "." automatically gets a window, we don't want it. Withdraw it before doing
|
|
# anything else, so that we don't get the automatic window flashing for a
|
|
# second while pd loads.
|
|
if { [catch {wm withdraw .} fid] } { exit 2 }
|
|
|
|
package require Tcl 8.3
|
|
package require Tk
|
|
#package require tile
|
|
## replace Tk widgets with Ttk widgets on 8.5
|
|
#namespace import -force ttk::*
|
|
|
|
package require msgcat
|
|
# TODO create a constructor in each package to create things at startup, that
|
|
# way they can be easily be modified by startup scripts
|
|
# TODO create alt-Enter/Cmd-I binding to bring up Properties panels
|
|
|
|
# Pd's packages are stored in the same directory as the main script (pd-gui.tcl)
|
|
set auto_path [linsert $auto_path 0 [file dirname [info script]]]
|
|
package require pd_connect
|
|
package require pd_menus
|
|
package require pd_bindings
|
|
package require pdwindow
|
|
package require dialog_array
|
|
package require dialog_audio
|
|
package require dialog_canvas
|
|
package require dialog_data
|
|
package require dialog_font
|
|
package require dialog_gatom
|
|
package require dialog_iemgui
|
|
package require dialog_message
|
|
package require dialog_midi
|
|
package require dialog_path
|
|
package require dialog_startup
|
|
package require helpbrowser
|
|
package require pd_menucommands
|
|
package require opt_parser
|
|
package require pdtk_canvas
|
|
package require pdtk_text
|
|
package require pdtk_textwindow
|
|
# TODO eliminate this kludge:
|
|
package require wheredoesthisgo
|
|
package require pd_guiprefs
|
|
|
|
#------------------------------------------------------------------------------#
|
|
# import functions into the global namespace
|
|
|
|
# gui preferences
|
|
namespace import ::pd_guiprefs::init
|
|
namespace import ::pd_guiprefs::update_recentfiles
|
|
namespace import ::pd_guiprefs::write_recentfiles
|
|
# make global since they are used throughout
|
|
namespace import ::pd_menucommands::*
|
|
|
|
# import into the global namespace for backwards compatibility
|
|
namespace import ::pd_connect::pdsend
|
|
namespace import ::pdwindow::pdtk_post
|
|
namespace import ::pdwindow::pdtk_pd_dio
|
|
namespace import ::pdwindow::pdtk_pd_dsp
|
|
namespace import ::pdwindow::pdtk_pd_meters
|
|
namespace import ::pdtk_canvas::pdtk_canvas_popup
|
|
namespace import ::pdtk_canvas::pdtk_canvas_editmode
|
|
namespace import ::pdtk_canvas::pdtk_canvas_getscroll
|
|
namespace import ::pdtk_canvas::pdtk_canvas_setparents
|
|
namespace import ::pdtk_canvas::pdtk_canvas_reflecttitle
|
|
namespace import ::pdtk_canvas::pdtk_canvas_menuclose
|
|
namespace import ::dialog_array::pdtk_array_dialog
|
|
namespace import ::dialog_audio::pdtk_audio_dialog
|
|
namespace import ::dialog_canvas::pdtk_canvas_dialog
|
|
namespace import ::dialog_data::pdtk_data_dialog
|
|
namespace import ::dialog_find::pdtk_couldnotfind
|
|
namespace import ::dialog_font::pdtk_canvas_dofont
|
|
namespace import ::dialog_gatom::pdtk_gatom_dialog
|
|
namespace import ::dialog_iemgui::pdtk_iemgui_dialog
|
|
namespace import ::dialog_midi::pdtk_midi_dialog
|
|
namespace import ::dialog_midi::pdtk_alsa_midi_dialog
|
|
namespace import ::dialog_path::pdtk_path_dialog
|
|
namespace import ::dialog_startup::pdtk_startup_dialog
|
|
|
|
# hack - these should be better handled in the C code
|
|
namespace import ::dialog_array::pdtk_array_listview_new
|
|
namespace import ::dialog_array::pdtk_array_listview_fillpage
|
|
namespace import ::dialog_array::pdtk_array_listview_setpage
|
|
namespace import ::dialog_array::pdtk_array_listview_closeWindow
|
|
|
|
#------------------------------------------------------------------------------#
|
|
# global variables
|
|
|
|
# this is a wide array of global variables that are used throughout the GUI.
|
|
# they can be used in plugins to check the status of various things since they
|
|
# should all have been properly initialized by the time startup plugins are
|
|
# loaded.
|
|
|
|
set PD_MAJOR_VERSION 0
|
|
set PD_MINOR_VERSION 0
|
|
set PD_BUGFIX_VERSION 0
|
|
set PD_TEST_VERSION ""
|
|
set done_init 0
|
|
|
|
set TCL_MAJOR_VERSION 0
|
|
set TCL_MINOR_VERSION 0
|
|
set TCL_BUGFIX_VERSION 0
|
|
|
|
# for testing which platform we are running on ("aqua", "win32", or "x11")
|
|
set windowingsystem ""
|
|
|
|
# args about how much and where to log
|
|
set loglevel 2
|
|
set stderr 0
|
|
|
|
# connection between 'pd' and 'pd-gui'
|
|
set host ""
|
|
set port 0
|
|
|
|
# canvas font, received from pd in pdtk_pd_startup, set in s_main.c
|
|
set font_family "courier"
|
|
set font_weight "normal"
|
|
# sizes of chars for each of the Pd fixed font sizes:
|
|
# fontsize width(pixels) height(pixels)
|
|
set font_fixed_metrics {
|
|
8 6 11
|
|
9 6 12
|
|
10 7 13
|
|
12 9 16
|
|
14 8 17
|
|
16 10 20
|
|
18 11 22
|
|
24 15 25
|
|
30 18 37
|
|
36 25 45
|
|
}
|
|
set font_measured_metrics {}
|
|
|
|
# root path to lib of Pd's files, see s_main.c for more info
|
|
set sys_libdir {}
|
|
# root path where the pd-gui.tcl GUI script is located
|
|
set sys_guidir {}
|
|
# user-specified search path for objects, help, fonts, etc.
|
|
set sys_searchpath {}
|
|
# hard-coded search patch for objects, help, plugins, etc.
|
|
set sys_staticpath {}
|
|
# the path to the folder where the current plugin is being loaded from
|
|
set current_plugin_loadpath {}
|
|
# a list of plugins that were loaded
|
|
set loaded_plugins {}
|
|
# list of command line flags set at startup
|
|
set startup_flags {}
|
|
# list of libraries loaded on startup
|
|
set startup_libraries {}
|
|
# start dirs for new files and open panels
|
|
set filenewdir [pwd]
|
|
set fileopendir [pwd]
|
|
|
|
|
|
# lists of audio/midi devices and APIs for prefs dialogs
|
|
set audio_apilist {}
|
|
set audio_indevlist {}
|
|
set audio_outdevlist {}
|
|
set midi_apilist {}
|
|
set midi_indevlist {}
|
|
set midi_outdevlist {}
|
|
set pd_whichapi 0
|
|
set pd_whichmidiapi 0
|
|
|
|
# current state of the DSP
|
|
set dsp 0
|
|
# state of the peak meters in the Pd window
|
|
set meters 0
|
|
# the toplevel window that currently is on top and has focus
|
|
set focused_window .
|
|
# store that last 5 files that were opened
|
|
set recentfiles_list {}
|
|
set total_recentfiles 5
|
|
# keep track of the location of popup menu for PatchWindows, in canvas coords
|
|
set popup_xcanvas 0
|
|
set popup_ycanvas 0
|
|
# modifier for key commands (Ctrl/Control on most platforms, Cmd/Mod1 on MacOSX)
|
|
set modifier ""
|
|
# current state of the Edit Mode menu item
|
|
set editmode_button 0
|
|
|
|
|
|
## per toplevel/patch data
|
|
# window location modifiers
|
|
set menubarsize 0 ;# Mac OS X and other platforms have a menubar on top
|
|
set windowframex 0 ;# different platforms have different window frames
|
|
set windowframey 0 ;# different platforms have different window frames
|
|
# patch properties
|
|
array set editmode {} ;# store editmode for each open patch canvas
|
|
array set editingtext {};# if an obj, msg, or comment is being edited, per patch
|
|
array set loaded {} ;# store whether a patch has completed loading
|
|
array set xscrollable {};# keep track of whether the scrollbars are present
|
|
array set yscrollable {}
|
|
# patch window tree, these might contain patch IDs without a mapped toplevel
|
|
array set windowname {} ;# window names based on mytoplevel IDs
|
|
array set childwindows {} ;# all child windows based on mytoplevel IDs
|
|
array set parentwindows {} ;# topmost parent window ID based on mytoplevel IDs
|
|
|
|
# variables for holding the menubar to allow for configuration by plugins
|
|
set ::pdwindow_menubar ".menubar"
|
|
set ::patch_menubar ".menubar"
|
|
set ::dialog_menubar ""
|
|
|
|
# minimum size of the canvas window of a patch
|
|
set canvas_minwidth 50
|
|
set canvas_minheight 20
|
|
|
|
# undo states
|
|
set ::undo_action "no"
|
|
set ::redo_action "no"
|
|
set ::undo_toplevel "."
|
|
|
|
|
|
namespace eval ::pdgui:: {
|
|
variable scriptname [ file normalize [ info script ] ]
|
|
}
|
|
|
|
|
|
#------------------------------------------------------------------------------#
|
|
# coding style
|
|
#
|
|
# these are preliminary ideas, we'll change them as we work things out:
|
|
# - when possible use "" doublequotes to delimit messages
|
|
# - use '$::myvar' instead of 'global myvar'
|
|
# - for the sake of clarity, there should not be any inline code, everything
|
|
# should be in a proc that is ultimately triggered from main()
|
|
# - if a menu_* proc opens a dialog panel, that proc is called menu_*_dialog
|
|
# - use "eq/ne" for string comparison, NOT "==/!=" (http://wiki.tcl.tk/15323)
|
|
#
|
|
#
|
|
## Names for Common Variables
|
|
#----------------------------
|
|
# variables named after the Tk widgets they represent
|
|
# $window = any kind of Tk widget that can be a Tk 'window'
|
|
# $mytoplevel = a window id made by a 'toplevel' command
|
|
# $gfxstub = a 'toplevel' window id for dialogs made in gfxstub/x_gui.c
|
|
# $menubar = the 'menu' attached to each 'toplevel'
|
|
# $mymenu = 'menu' attached to the menubar, like the File menu
|
|
# $tkcanvas = a Tk 'canvas', which is the root of each patch
|
|
#
|
|
#
|
|
## Dialog Panel Types
|
|
#----------------------------
|
|
# global (only one): find, sendmessage, prefs, helpbrowser
|
|
# per-canvas: font, canvas properties (created with a message from pd)
|
|
# per object: gatom, iemgui, array, data structures (created with a message from pd)
|
|
#
|
|
#
|
|
## Prefix Names for procs
|
|
#----------------------------
|
|
# pdtk_ pd -> pd-gui API (i.e. called from 'pd')
|
|
# pdsend pd-gui -> pd API (sends a message to 'pd' using pdsend)
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# init functions
|
|
|
|
# root paths to find Pd's files where they are installed
|
|
proc set_pd_paths {} {
|
|
set ::sys_guidir [file normalize [file dirname [info script]]]
|
|
set ::sys_libdir [file normalize [file join $::sys_guidir ".."]]
|
|
}
|
|
|
|
proc init_for_platform {} {
|
|
# we are not using Tk scaling, so fix it to 1 on all platforms. This
|
|
# guarantees that patches will be pixel-exact on every platform
|
|
tk scaling 1
|
|
|
|
switch -- $::windowingsystem {
|
|
"x11" {
|
|
set ::modifier "Control"
|
|
option add *PatchWindow*Canvas.background "white" startupFile
|
|
# add control to show/hide hidden files in the open panel (load
|
|
# the tk_getOpenFile dialog once, otherwise it will not work)
|
|
catch {tk_getOpenFile -with-invalid-argument}
|
|
set ::tk::dialog::file::showHiddenBtn 1
|
|
set ::tk::dialog::file::showHiddenVar 0
|
|
# set file types that open/save recognize
|
|
set ::filetypes \
|
|
[list \
|
|
[list [_ "Associated Files"] {.pd .pat .mxt} ] \
|
|
[list [_ "Pd Files"] {.pd} ] \
|
|
[list [_ "Max Patch Files"] {.pat} ] \
|
|
[list [_ "Max Text Files"] {.mxt} ] \
|
|
]
|
|
# some platforms have a menubar on the top, so place below them
|
|
set ::menubarsize 0
|
|
# Tk handles the window placement differently on each
|
|
# platform. With X11, the x,y placement refers to the window
|
|
# frame's upper left corner. http://wiki.tcl.tk/11502
|
|
set ::windowframex 3
|
|
set ::windowframey 53
|
|
# TODO add wm iconphoto/iconbitmap here if it makes sense
|
|
# mouse cursors for all the different modes
|
|
set ::cursor_runmode_nothing "left_ptr"
|
|
set ::cursor_runmode_clickme "arrow"
|
|
set ::cursor_runmode_thicken "sb_v_double_arrow"
|
|
set ::cursor_runmode_addpoint "plus"
|
|
set ::cursor_editmode_nothing "hand2"
|
|
set ::cursor_editmode_connect "circle"
|
|
set ::cursor_editmode_disconnect "X_cursor"
|
|
}
|
|
"aqua" {
|
|
set ::modifier "Mod1"
|
|
option add *DialogWindow*background "#E8E8E8" startupFile
|
|
option add *DialogWindow*Entry.highlightBackground "#E8E8E8" startupFile
|
|
option add *DialogWindow*Button.highlightBackground "#E8E8E8" startupFile
|
|
option add *DialogWindow*Entry.background "white" startupFile
|
|
# Mac OS X needs a menubar all the time
|
|
set ::dialog_menubar ".menubar"
|
|
# set file types that open/save recognize
|
|
set ::filetypes \
|
|
[list \
|
|
[list [_ "Associated Files"] {.pd .pat .mxt} ] \
|
|
[list [_ "Pd Files"] {.pd} ] \
|
|
[list [_ "Max Patch Files (.pat)"] {.pat} ] \
|
|
[list [_ "Max Text Files (.mxt)"] {.mxt} ] \
|
|
]
|
|
# some platforms have a menubar on the top, so place below them
|
|
set ::menubarsize 22
|
|
# Tk handles the window placement differently on each platform, on
|
|
# Mac OS X, the x,y placement refers to the content window's upper
|
|
# left corner (not of the window frame) http://wiki.tcl.tk/11502
|
|
set ::windowframex 0
|
|
set ::windowframey 0
|
|
# mouse cursors for all the different modes
|
|
set ::cursor_runmode_nothing "arrow"
|
|
set ::cursor_runmode_clickme "center_ptr"
|
|
set ::cursor_runmode_thicken "sb_v_double_arrow"
|
|
set ::cursor_runmode_addpoint "plus"
|
|
set ::cursor_editmode_nothing "hand2"
|
|
set ::cursor_editmode_connect "circle"
|
|
set ::cursor_editmode_disconnect "X_cursor"
|
|
}
|
|
"win32" {
|
|
set ::modifier "Control"
|
|
option add *PatchWindow*Canvas.background "white" startupFile
|
|
# fix menu font size on Windows with tk scaling = 1
|
|
font create menufont -family Tahoma -size -11
|
|
option add *Menu.font menufont startupFile
|
|
option add *HelpBrowser*font menufont startupFile
|
|
option add *DialogWindow*font menufont startupFile
|
|
option add *PdWindow*font menufont startupFile
|
|
option add *ErrorDialog*font menufont startupFile
|
|
# set file types that open/save recognize
|
|
set ::filetypes \
|
|
[list \
|
|
[list [_ "Associated Files"] {.pd .pat .mxt} ] \
|
|
[list [_ "Pd Files"] {.pd} ] \
|
|
[list [_ "Max Patch Files"] {.pat} ] \
|
|
[list [_ "Max Text Files"] {.mxt} ] \
|
|
]
|
|
# some platforms have a menubar on the top, so place below them
|
|
set ::menubarsize 0
|
|
# Tk handles the window placement differently on each platform, on
|
|
# Mac OS X, the x,y placement refers to the content window's upper
|
|
# left corner. http://wiki.tcl.tk/11502
|
|
# TODO this probably needs a script layer: http://wiki.tcl.tk/11291
|
|
set ::windowframex 0
|
|
set ::windowframey 0
|
|
# TODO use 'winico' package for full, hicolor icon support
|
|
wm iconbitmap . -default [file join $::sys_guidir pd.ico]
|
|
# mouse cursors for all the different modes
|
|
set ::cursor_runmode_nothing "right_ptr"
|
|
set ::cursor_runmode_clickme "arrow"
|
|
set ::cursor_runmode_thicken "sb_v_double_arrow"
|
|
set ::cursor_runmode_addpoint "plus"
|
|
set ::cursor_editmode_nothing "hand2"
|
|
set ::cursor_editmode_connect "circle"
|
|
set ::cursor_editmode_disconnect "X_cursor"
|
|
}
|
|
}
|
|
}
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# locale handling
|
|
|
|
# official GNU gettext msgcat shortcut
|
|
proc _ {s} {return [::msgcat::mc $s]}
|
|
|
|
proc load_locale {} {
|
|
# on any UNIX-like environment, Tcl should automatically use LANG, LC_ALL,
|
|
# etc. otherwise we need to dig it up. Mac OS X only uses LANG, etc. from
|
|
# the Terminal, and Windows doesn't have LANG, etc unless you manually set
|
|
# it up yourself. Windows apps don't use the locale env vars usually.
|
|
if {$::tcl_platform(os) eq "Darwin" && ! [info exists ::env(LANG)]} {
|
|
# http://thread.gmane.org/gmane.comp.lang.tcl.mac/5215
|
|
# http://thread.gmane.org/gmane.comp.lang.tcl.mac/6433
|
|
if {![catch "exec defaults read com.apple.dock loc" lang]} {
|
|
::msgcat::mclocale $lang
|
|
} elseif {![catch "exec defaults read NSGlobalDomain AppleLocale" lang]} {
|
|
::msgcat::mclocale $lang
|
|
}
|
|
} elseif {$::tcl_platform(platform) eq "windows"} {
|
|
# using LANG on Windows is useful for easy debugging
|
|
if {[info exists ::env(LANG)] && $::env(LANG) ne "C" && $::env(LANG) ne ""} {
|
|
::msgcat::mclocale $::env(LANG)
|
|
} elseif {![catch {package require registry}]} {
|
|
::msgcat::mclocale [string tolower \
|
|
[string range \
|
|
[registry get {HKEY_CURRENT_USER\Control Panel\International} sLanguage] 0 1] ]
|
|
}
|
|
}
|
|
::msgcat::mcload [file join [file dirname [info script]] .. po]
|
|
|
|
##--moo: force default system and stdio encoding to UTF-8
|
|
encoding system utf-8
|
|
fconfigure stderr -encoding utf-8
|
|
fconfigure stdout -encoding utf-8
|
|
##--/moo
|
|
}
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# font handling
|
|
|
|
# this proc gets the internal font name associated with each size
|
|
proc get_font_for_size {size} {
|
|
return "::pd_font_${size}"
|
|
}
|
|
|
|
# searches for a font to use as the default. Tk automatically assigns a
|
|
# monospace font to the name "Courier" (see Tk 'font' docs), but it doesn't
|
|
# always do a good job of choosing in respect to Pd's needs. So this chooses
|
|
# from a list of fonts that are known to work well with Pd.
|
|
proc find_default_font {} {
|
|
set testfonts {"DejaVu Sans Mono" "Bitstream Vera Sans Mono" \
|
|
"Inconsolata" "Courier 10 Pitch" "Andale Mono" "Droid Sans Mono"}
|
|
foreach family $testfonts {
|
|
if {[lsearch -exact -nocase [font families] $family] > -1} {
|
|
set ::font_family $family
|
|
break
|
|
}
|
|
}
|
|
::pdwindow::verbose 0 "Default font: $::font_family\n"
|
|
}
|
|
|
|
proc set_base_font {family weight} {
|
|
if {[lsearch -exact [font families] $family] > -1} {
|
|
set ::font_family $family
|
|
} else {
|
|
::pdwindow::post [format \
|
|
[_ "WARNING: Font family '%s' not found, using default (%s)\n"] \
|
|
$family $::font_family]
|
|
}
|
|
if {[lsearch -exact {bold normal} $weight] > -1} {
|
|
set ::font_weight $weight
|
|
set using_defaults 0
|
|
} else {
|
|
::pdwindow::post [format \
|
|
[_ "WARNING: Font weight '%s' not found, using default (%s)\n"] \
|
|
$weight $::font_weight]
|
|
}
|
|
}
|
|
|
|
# creates all the base fonts (i.e. pd_font_8 thru pd_font_36) so that they fit
|
|
# into the metrics given by $::font_fixed_metrics for any given font/weight
|
|
proc fit_font_into_metrics {} {
|
|
# TODO the fonts picked seem too small, probably on fixed width
|
|
foreach {size width height} $::font_fixed_metrics {
|
|
set myfont [get_font_for_size $size]
|
|
font create $myfont -family $::font_family -weight $::font_weight \
|
|
-size [expr {-$height}]
|
|
set height2 $height
|
|
set giveup 0
|
|
while {[font measure $myfont M] > $width || \
|
|
[font metrics $myfont -linespace] > $height} {
|
|
incr height2 -1
|
|
font configure $myfont -size [expr {-$height2}]
|
|
if {$height2 * 2 <= $height} {
|
|
set giveup 1
|
|
set ::font_measured_metrics $::font_fixed_metrics
|
|
break
|
|
}
|
|
}
|
|
set ::font_measured_metrics \
|
|
"$::font_measured_metrics $size\
|
|
[font measure $myfont M] [font metrics $myfont -linespace]"
|
|
if {$giveup} {
|
|
::pdwindow::post [format \
|
|
[_ "WARNING: %s failed to find font size (%s) that fits into %sx%s!\n"]\
|
|
[lindex [info level 0] 0] $size $width $height]
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# procs called directly by pd
|
|
|
|
proc pdtk_pd_startup {major minor bugfix test
|
|
audio_apis midi_apis sys_font sys_fontweight} {
|
|
set ::PD_MAJOR_VERSION $major
|
|
set ::PD_MINOR_VERSION $minor
|
|
set ::PD_BUGFIX_VERSION $bugfix
|
|
set ::PD_TEST_VERSION $test
|
|
set oldtclversion 0
|
|
set ::audio_apilist $audio_apis
|
|
set ::midi_apilist $midi_apis
|
|
if {$::tcl_version >= 8.5} {find_default_font}
|
|
set_base_font $sys_font $sys_fontweight
|
|
fit_font_into_metrics
|
|
::pd_guiprefs::init
|
|
pdsend "pd init [enquote_path [pwd]] $oldtclversion $::font_measured_metrics"
|
|
::pd_bindings::class_bindings
|
|
::pd_bindings::global_bindings
|
|
::pd_menus::create_menubar
|
|
::pdtk_canvas::create_popup
|
|
::pdwindow::create_window
|
|
::pd_menus::configure_for_pdwindow
|
|
load_startup_plugins
|
|
open_filestoopen
|
|
set ::done_init 1
|
|
}
|
|
|
|
##### routine to ask user if OK and, if so, send a message on to Pd ######
|
|
proc pdtk_check {mytoplevel message reply_to_pd default} {
|
|
wm deiconify $mytoplevel
|
|
raise $mytoplevel
|
|
if {$::windowingsystem eq "win32"} {
|
|
set answer [tk_messageBox -message [_ $message] -type yesno -default $default \
|
|
-icon question -title [wm title $mytoplevel]]
|
|
} else {
|
|
set answer [tk_messageBox -message [_ $message] -type yesno \
|
|
-default $default -parent $mytoplevel -icon question]
|
|
}
|
|
if {$answer eq "yes"} {
|
|
pdsend $reply_to_pd
|
|
}
|
|
}
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# parse command line args when Wish/pd-gui.tcl is started first
|
|
|
|
proc parse_args {argc argv} {
|
|
opt_parser::init {
|
|
{-stderr set {::stderr}}
|
|
{-open lappend {- ::filestoopen_list}}
|
|
}
|
|
set unflagged_files [opt_parser::get_options $argv]
|
|
# if we have a single arg that is not a file, its a port or host:port combo
|
|
if {$argc == 1 && ! [file exists $argv]} {
|
|
if { [string is int $argv] && $argv > 0} {
|
|
# 'pd-gui' got the port number from 'pd'
|
|
set ::host "localhost"
|
|
set ::port $argv
|
|
} else {
|
|
set hostport [split $argv ":"]
|
|
set ::port [lindex $hostport 1]
|
|
if { [string is int $::port] && $::port > 0} {
|
|
set ::host [lindex $hostport 0]
|
|
} else {
|
|
set ::port 0
|
|
}
|
|
|
|
}
|
|
} elseif {$unflagged_files ne ""} {
|
|
foreach filename $unflagged_files {
|
|
lappend ::filestoopen_list $filename
|
|
}
|
|
}
|
|
}
|
|
|
|
proc open_filestoopen {} {
|
|
foreach filename $::filestoopen_list {
|
|
open_file $filename
|
|
}
|
|
}
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# X11 procs for handling singleton state and getting args from other instances
|
|
|
|
# first instance
|
|
proc singleton {key} {
|
|
if {![catch { selection get -selection $key }]} {
|
|
return 0
|
|
}
|
|
selection handle -selection $key . "singleton_request"
|
|
selection own -command first_lost -selection $key .
|
|
return 1
|
|
}
|
|
|
|
proc singleton_request {offset maxbytes} {
|
|
## the next 2 lines raise the focus to the given window (and change desktop)
|
|
# wm deiconify .pdwindow
|
|
# raise .pdwindow
|
|
return [tk appname]
|
|
}
|
|
|
|
proc first_lost {} {
|
|
receive_args [selection get -selection ${::pdgui::scriptname} ]
|
|
selection own -command first_lost -selection ${::pdgui::scriptname} .
|
|
}
|
|
|
|
proc others_lost {} {
|
|
set ::singleton_state "exit"
|
|
destroy .
|
|
exit
|
|
}
|
|
|
|
# all other instances
|
|
proc send_args {offset maxChars} {
|
|
set sendargs {}
|
|
foreach filename $::filestoopen_list {
|
|
lappend sendargs [file normalize $filename]
|
|
}
|
|
return [string range $sendargs $offset [expr {$offset+$maxChars}]]
|
|
}
|
|
|
|
# this command will open files received from a 2nd instance of Pd
|
|
proc receive_args {filelist} {
|
|
raise .
|
|
wm deiconify .pdwindow
|
|
raise .pdwindow
|
|
foreach filename $filelist {
|
|
open_file $filename
|
|
}
|
|
}
|
|
|
|
proc dde_open_handler {cmd} {
|
|
open_file [file normalize $cmd]
|
|
}
|
|
|
|
proc check_for_running_instances { } {
|
|
switch -- $::windowingsystem {
|
|
"aqua" {
|
|
# handled by ::tk::mac::OpenDocument in apple_events.tcl
|
|
} "x11" {
|
|
# http://wiki.tcl.tk/1558
|
|
# TODO replace PUREDATA name with path so this code is a singleton
|
|
# based on install location rather than this hard-coded name
|
|
if {![singleton ${::pdgui::scriptname}_MANAGER ]} {
|
|
# if pd-gui gets called from pd ('pd-gui 5400') or is told otherwise
|
|
# to connect to a running instance of Pd (by providing [<host>:]<port>)
|
|
# then we don't want to connect to a running instance
|
|
if { $::port > 0 && $::host ne "" } { return }
|
|
selection handle -selection ${::pdgui::scriptname} . "send_args"
|
|
selection own -command others_lost -selection ${::pdgui::scriptname} .
|
|
after 5000 set ::singleton_state "timeout"
|
|
vwait ::singleton_state
|
|
exit
|
|
} else {
|
|
# first instance
|
|
selection own -command first_lost -selection ${::pdgui::scriptname} .
|
|
}
|
|
} "win32" {
|
|
## http://wiki.tcl.tk/8940
|
|
package require dde ;# 1.4 or later needed for full unicode support
|
|
set topic "Pure_Data_DDE_Open"
|
|
# if no DDE service is running, start one and claim the name
|
|
if { [dde services TclEval $topic] == {} } {
|
|
dde servername -handler dde_open_handler $topic
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# load plugins on startup
|
|
|
|
proc load_plugin_script {filename} {
|
|
global errorInfo
|
|
|
|
set basename [file tail $filename]
|
|
if {[lsearch $::loaded_plugins $basename] > -1} {
|
|
::pdwindow::post [_ "'$basename' already loaded, ignoring: '$filename'\n"]
|
|
return
|
|
}
|
|
|
|
::pdwindow::debug [_ "Loading plugin: $filename\n"]
|
|
set tclfile [open $filename]
|
|
set tclcode [read $tclfile]
|
|
close $tclfile
|
|
if {[catch {uplevel #0 $tclcode} errorname]} {
|
|
::pdwindow::error "-----------\n"
|
|
::pdwindow::error [_ "UNHANDLED ERROR: $errorInfo\n"]
|
|
::pdwindow::error [_ "FAILED TO LOAD $filename\n"]
|
|
::pdwindow::error "-----------\n"
|
|
} else {
|
|
lappend ::loaded_plugins $basename
|
|
}
|
|
}
|
|
|
|
proc load_startup_plugins {} {
|
|
foreach pathdir [concat $::sys_searchpath $::sys_staticpath] {
|
|
set dir [file normalize $pathdir]
|
|
if { ! [file isdirectory $dir]} {continue}
|
|
foreach filename [glob -directory $dir -nocomplain -types {f} -- \
|
|
*-plugin/*-plugin.tcl *-plugin.tcl] {
|
|
set ::current_plugin_loadpath [file dirname $filename]
|
|
load_plugin_script $filename
|
|
}
|
|
}
|
|
}
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# main
|
|
proc main {argc argv} {
|
|
# TODO Tcl/Tk 8.3 doesn't have [tk windowingsystem]
|
|
set ::windowingsystem [tk windowingsystem]
|
|
tk appname pd-gui
|
|
load_locale
|
|
parse_args $argc $argv
|
|
check_for_running_instances
|
|
set_pd_paths
|
|
init_for_platform
|
|
|
|
# ::host and ::port are parsed from argv by parse_args
|
|
if { $::port > 0 && $::host ne "" } {
|
|
# 'pd' started first and launched us, so get the port to connect to
|
|
::pd_connect::to_pd $::port $::host
|
|
} else {
|
|
# the GUI is starting first, so create socket and exec 'pd'
|
|
set ::port [::pd_connect::create_socket]
|
|
set pd_exec [file join [file dirname [info script]] ../bin/pd]
|
|
exec -- $pd_exec -guiport $::port &
|
|
if {$::windowingsystem eq "aqua"} {
|
|
# on Aqua, if 'pd-gui' first, then initial dir is home
|
|
set ::filenewdir $::env(HOME)
|
|
set ::fileopendir $::env(HOME)
|
|
}
|
|
}
|
|
::pdwindow::verbose 0 "------------------ done with main ----------------------\n"
|
|
}
|
|
|
|
main $::argc $::argv
|